diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-20 13:55:06 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-20 13:55:06 +0100 |
commit | cf7164a088664961e7d70dd100c5874dc5ceb293 (patch) | |
tree | 93cf8f7643786a9cb9488852b73c1ef480031ee1 /src/vim.h | |
parent | 065bbac8adfe29a09958570237d223457f235c6c (diff) | |
download | vim-cf7164a088664961e7d70dd100c5874dc5ceb293.zip |
patch 7.4.1364
Problem: The Win 16 code is not maintained and unused.
Solution: Remove the Win 16 support.
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -27,7 +27,7 @@ # endif #endif -#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64) \ +#if defined(MSDOS) || defined(WIN32) || defined(_WIN64) \ || defined(__EMX__) # include "vimio.h" #endif @@ -150,7 +150,7 @@ #if defined(FEAT_GUI_W32) || defined(FEAT_GUI_W16) # define FEAT_GUI_MSWIN #endif -#if defined(WIN16) || defined(WIN32) || defined(_WIN64) +#if defined(WIN32) || defined(_WIN64) # define MSWIN #endif /* Practically everything is common to both Win32 and Win64 */ @@ -308,10 +308,6 @@ # include "os_msdos.h" #endif -#ifdef WIN16 -# include "os_win16.h" -#endif - #ifdef WIN3264 # include "os_win32.h" #endif @@ -471,7 +467,7 @@ typedef unsigned long u8char_T; /* long should be 32 bits or more */ # include <sys/stat.h> #endif -#if defined(HAVE_ERRNO_H) || defined(DJGPP) || defined(WIN16) \ +#if defined(HAVE_ERRNO_H) || defined(DJGPP) \ || defined(WIN32) || defined(_WIN64) || defined(__EMX__) # include <errno.h> #endif |