comparison src/os_win32.h @ 16451:7ae2396cef62 v8.1.1230

patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe commit https://github.com/vim/vim/commit/afde13b62b8fa25dac4635d5caee8d088b937ee0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 28 19:46:49 2019 +0200 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe Problem: A lot of code is shared between vim.exe and gvim.exe. Solution: Optionally put the shared code in vim.dll. (Ken Takata, closes #4287)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Apr 2019 20:00:10 +0200
parents 7fad90423bd2
children 7e733046db1d
comparison
equal deleted inserted replaced
16450:bf74bce807e8 16451:7ae2396cef62
76 76
77 #define HAVE_TOTAL_MEM 77 #define HAVE_TOTAL_MEM
78 78
79 #define HAVE_PUTENV /* at least Bcc 5.2 and MSC have it */ 79 #define HAVE_PUTENV /* at least Bcc 5.2 and MSC have it */
80 80
81 #ifdef FEAT_GUI_MSWIN 81 #if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
82 # define NO_CONSOLE /* don't included console-only code */ 82 # define NO_CONSOLE /* don't included console-only code */
83 #endif 83 #endif
84 84
85 /* toupper() is not really broken, but it's very slow. Probably because of 85 /* toupper() is not really broken, but it's very slow. Probably because of
86 * using Unicode characters on Windows NT */ 86 * using Unicode characters on Windows NT */