comparison src/GvimExt/gvimext.h @ 15868:7fad90423bd2 v8.1.0941

patch 8.1.0941: macros for MS-Windows are inconsistent commit https://github.com/vim/vim/commit/4f97475d326c2773a78561fb874e4f23c25cbcd9 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 17 17:44:42 2019 +0100 patch 8.1.0941: macros for MS-Windows are inconsistent Problem: Macros for MS-Windows are inconsistent, using "32", "3264 and others. Solution: Use MSWIN for all MS-Windows builds. Use FEAT_GUI_MSWIN for the GUI build. (Hirohito Higashi, closes #3932)
author Bram Moolenaar <Bram@vim.org>
date Sun, 17 Feb 2019 17:45:08 +0100
parents 1e48ffa2d697
children 31546178bc83
comparison
equal deleted inserted replaced
15867:4a3823e692d3 15868:7fad90423bd2
29 29
30 #ifndef STRICT 30 #ifndef STRICT
31 # define STRICT 31 # define STRICT
32 #endif 32 #endif
33 33
34 #define INC_OLE2 // WIN32, get ole2 from windows.h 34 #define INC_OLE2 // MS-Windows, get ole2 from windows.h
35 35
36 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */ 36 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
37 #if defined(_MSC_VER) && _MSC_VER >= 1400 37 #if defined(_MSC_VER) && _MSC_VER >= 1400
38 # define _CRT_SECURE_NO_DEPRECATE 38 # define _CRT_SECURE_NO_DEPRECATE
39 # define _CRT_NONSTDC_NO_DEPRECATE 39 # define _CRT_NONSTDC_NO_DEPRECATE