diff options
author | K.Takata <kentkt@csc.jp> | 2022-01-24 11:24:08 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-24 11:24:08 +0000 |
commit | c351dc1e0ca959084ba36bb350291334bf74b9f8 (patch) | |
tree | 2f8979a19950eadb42d7d3cc61f725bd90ad33d6 /src/gui_w32.c | |
parent | 058ee7c5699ef551be5aa04c66b3cffc436e9b08 (diff) | |
download | vim-git-c351dc1e0ca959084ba36bb350291334bf74b9f8.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/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 50ea8f9cd..fae7034cd 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -4031,13 +4031,6 @@ _OnScroll( # define ID_BEVAL_TOOLTIP 200 # define BEVAL_TEXT_LEN MAXPATHL -# if (defined(_MSC_VER) && _MSC_VER < 1300) || !defined(MAXULONG_PTR) -// Work around old versions of basetsd.h which wrongly declares -// UINT_PTR as unsigned long. -# undef UINT_PTR -# define UINT_PTR UINT -# endif - static BalloonEval *cur_beval = NULL; static UINT_PTR BevalTimerId = 0; static DWORD LastActivity = 0; |