1
0
forked from aniani/vim

patch 7.4.1364

Problem:    The Win 16 code is not maintained and unused.
Solution:   Remove the Win 16 support.
This commit is contained in:
Bram Moolenaar
2016-02-20 13:55:06 +01:00
parent 065bbac8ad
commit cf7164a088
25 changed files with 4122 additions and 6867 deletions

View File

@@ -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