comparison src/os_win32.c @ 27370:584f91cc2508 v8.2.4213

patch 8.2.4213: too much code for supporting old MSVC versions Commit: https://github.com/vim/vim/commit/76687d27173e64d739ea371751697c03ad0821ef Author: K.Takata <kentkt@csc.jp> Date: Tue Jan 25 10:31:37 2022 +0000 patch 8.2.4213: too much code for supporting old MSVC versions Problem: Too much code for supporting old MSVC versions. Solution: Remove MSVC 2003 support. (Ken Takata, closes https://github.com/vim/vim/issues/9623)
author Bram Moolenaar <Bram@vim.org>
date Tue, 25 Jan 2022 11:45:06 +0100
parents 41a940219183
children 6045bf58926d
comparison
equal deleted inserted replaced
27369:914c181ea864 27370:584f91cc2508
2688 static HICON g_hOrigIconSmall = NULL; 2688 static HICON g_hOrigIconSmall = NULL;
2689 static HICON g_hOrigIcon = NULL; 2689 static HICON g_hOrigIcon = NULL;
2690 static HICON g_hVimIcon = NULL; 2690 static HICON g_hVimIcon = NULL;
2691 static BOOL g_fCanChangeIcon = FALSE; 2691 static BOOL g_fCanChangeIcon = FALSE;
2692 2692
2693 // ICON* are not defined in VC++ 4.0
2694 # ifndef ICON_SMALL
2695 # define ICON_SMALL 0
2696 # endif
2697 # ifndef ICON_BIG
2698 # define ICON_BIG 1
2699 # endif
2700 /* 2693 /*
2701 * GetConsoleIcon() 2694 * GetConsoleIcon()
2702 * Description: 2695 * Description:
2703 * Attempts to retrieve the small icon and/or the big icon currently in 2696 * Attempts to retrieve the small icon and/or the big icon currently in
2704 * use by a given window. 2697 * use by a given window.