1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
10 * MSDOS Machine-dependent things.
13 #include "os_dos.h" /* common MS-DOS and Win32 stuff */
15 #define BINARY_FILE_IO
16 #define USE_EXE_NAME /* use argv[0] for $VIM */
17 #define SYNC_DUP_CLOSE /* sync() a file with dup() and close() */
18 #define USE_TERM_CONSOLE
20 # include <fcntl.h> /* defines _USE_LFN */
21 # define USE_LONG_FNAME _USE_LFN /* decide at run time */
22 # define USE_FNAME_CASE
24 # define HAVE_STDARG_H
26 # define SHORT_FNAME /* always 8.3 file name */
33 #define HAVE_STRFTIME /* guessed */
37 #define HAVE_ST_MODE /* have stat.st_mode */
38 #if defined(__DATE__) && defined(__TIME__)
39 # define HAVE_DATE_TIME
41 #define BREAKCHECK_SKIP 1 /* call mch_breakcheck() each time, it's fast */
42 #define HAVE_AVAIL_MEM
45 * Borland C++ 3.1 doesn't have _RTLENTRYF
48 # if __BORLANDC__ < 0x450
53 #define FNAME_ILLEGAL "\"*?><|" /* illegal characters in a file name */
61 # define HAVE_LOCALE_H
62 # define setlocale(c, p) djgpp_setlocale()
70 * Try several directories to put the temp files.
72 #define TEMPDIRNAMES "$TMP", "$TEMP", "c:\\TMP", "c:\\TEMP", ""
73 #define TEMPNAMELEN 128
76 # define DFLT_MAXMEM 256 /* use up to 256Kbyte for buffer */
78 #ifndef DFLT_MAXMEMTOT
79 # define DFLT_MAXMEMTOT 0 /* decide in set_init */
83 # define BASENAMELEN (_USE_LFN?250:8) /* length of base of file name */
85 # define BASENAMELEN 8 /* length of base of file name */
88 /* codes for msdos mouse event */
89 #define MSDOS_MOUSE_LEFT 0x01
90 #define MSDOS_MOUSE_RIGHT 0x02
91 #define MSDOS_MOUSE_MIDDLE 0x04
94 int mch_rename(const char *OldFile
, const char *NewFile
);
96 # define mch_rename(src, dst) rename(src, dst)
100 # define vim_mkdir(x, y) mkdir((char *)(x), y)
102 # define vim_mkdir(x, y) mkdir((char *)(x))
104 #define mch_rmdir(x) rmdir((char *)(x))
106 #define mch_setenv(name, val, x) setenv(name, val, x)