comparison src/vim.h @ 8140:563c923b1584 v7.4.1364

commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 20 13:55:06 2016 +0100 patch 7.4.1364 Problem: The Win 16 code is not maintained and unused. Solution: Remove the Win 16 support.
author Christian Brabandt <cb@256bit.org>
date Sat, 20 Feb 2016 14:00:06 +0100
parents 19304db153bc
children d8a8e86f39ad
comparison
equal deleted inserted replaced
8139:2b0d471e04f7 8140:563c923b1584
25 # else 25 # else
26 #pragma option -pr 26 #pragma option -pr
27 # endif 27 # endif
28 #endif 28 #endif
29 29
30 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64) \ 30 #if defined(MSDOS) || defined(WIN32) || defined(_WIN64) \
31 || defined(__EMX__) 31 || defined(__EMX__)
32 # include "vimio.h" 32 # include "vimio.h"
33 #endif 33 #endif
34 34
35 /* ============ the header file puzzle (ca. 50-100 pieces) ========= */ 35 /* ============ the header file puzzle (ca. 50-100 pieces) ========= */
148 #endif 148 #endif
149 149
150 #if defined(FEAT_GUI_W32) || defined(FEAT_GUI_W16) 150 #if defined(FEAT_GUI_W32) || defined(FEAT_GUI_W16)
151 # define FEAT_GUI_MSWIN 151 # define FEAT_GUI_MSWIN
152 #endif 152 #endif
153 #if defined(WIN16) || defined(WIN32) || defined(_WIN64) 153 #if defined(WIN32) || defined(_WIN64)
154 # define MSWIN 154 # define MSWIN
155 #endif 155 #endif
156 /* Practically everything is common to both Win32 and Win64 */ 156 /* Practically everything is common to both Win32 and Win64 */
157 #if defined(WIN32) || defined(_WIN64) 157 #if defined(WIN32) || defined(_WIN64)
158 # define WIN3264 158 # define WIN3264
306 306
307 #ifdef MSDOS 307 #ifdef MSDOS
308 # include "os_msdos.h" 308 # include "os_msdos.h"
309 #endif 309 #endif
310 310
311 #ifdef WIN16
312 # include "os_win16.h"
313 #endif
314
315 #ifdef WIN3264 311 #ifdef WIN3264
316 # include "os_win32.h" 312 # include "os_win32.h"
317 #endif 313 #endif
318 314
319 #ifdef __MINT__ 315 #ifdef __MINT__
469 #endif 465 #endif
470 #if defined(MSDOS) || defined(MSWIN) 466 #if defined(MSDOS) || defined(MSWIN)
471 # include <sys/stat.h> 467 # include <sys/stat.h>
472 #endif 468 #endif
473 469
474 #if defined(HAVE_ERRNO_H) || defined(DJGPP) || defined(WIN16) \ 470 #if defined(HAVE_ERRNO_H) || defined(DJGPP) \
475 || defined(WIN32) || defined(_WIN64) || defined(__EMX__) 471 || defined(WIN32) || defined(_WIN64) || defined(__EMX__)
476 # include <errno.h> 472 # include <errno.h>
477 #endif 473 #endif
478 474
479 /* 475 /*