summaryrefslogtreecommitdiff
path: root/src/GvimExt/gvimext.h
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-01-24 11:24:08 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-24 11:24:08 +0000
commitc351dc1e0ca959084ba36bb350291334bf74b9f8 (patch)
tree2f8979a19950eadb42d7d3cc61f725bd90ad33d6 /src/GvimExt/gvimext.h
parent058ee7c5699ef551be5aa04c66b3cffc436e9b08 (diff)
downloadvim-git-8.2.4199.tar.gz
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not usefulv8.2.4199
Problem: MS-Windows: Support for MSVC 2003 is not useful. Solution: Remove the exceptions for MSVC 2003. (Ken Takata, closes #9616)
Diffstat (limited to 'src/GvimExt/gvimext.h')
-rw-r--r--src/GvimExt/gvimext.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/GvimExt/gvimext.h b/src/GvimExt/gvimext.h
index b6be3a797..b85f32e20 100644
--- a/src/GvimExt/gvimext.h
+++ b/src/GvimExt/gvimext.h
@@ -44,12 +44,6 @@
#include <shlobj.h>
#include <wchar.h>
-/* Accommodate old versions of VC that don't have a modern Platform SDK */
-#if (defined(_MSC_VER) && _MSC_VER < 1300) || !defined(MAXULONG_PTR)
-# undef UINT_PTR
-# define UINT_PTR UINT
-#endif
-
#define ResultFromShort(i) ResultFromScode(MAKE_SCODE(SEVERITY_SUCCESS, 0, (USHORT)(i)))
// Initialize GUIDs (should be done only and at-least once per DLL/EXE)