]> code.delx.au - gnu-emacs/blob - src/s/msdos.h
b48177da05247d65e0b2ed6b3a410cda2ab015d2
[gnu-emacs] / src / s / msdos.h
1 /* System description file for MS-DOS
2
3 Copyright (C) 1993, 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006,
4 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21 /* Note: lots of stuff here was taken from s-msdos.h in demacs. */
22
23
24 /* Define symbols to identify the version of Unix this is.
25 Define all the symbols that apply correctly. */
26 #ifndef MSDOS
27 #define MSDOS
28 #endif
29
30 #ifndef __DJGPP__
31 You lose; /* Emacs for DOS must be compiled with DJGPP */
32 #endif
33
34 #define DOS_NT /* MSDOS or WINDOWSNT */
35 #undef BSD_SYSTEM
36
37 /* SYSTEM_TYPE should indicate the kind of system you are using.
38 It sets the Lisp variable system-type. */
39 #define SYSTEM_TYPE "ms-dos"
40
41 /* subprocesses should be defined if you want to have code for
42 asynchronous subprocesses (as used in M-x compile and M-x shell).
43 This is the only system that needs this. */
44 #undef subprocesses
45
46 /* Here, on a separate page, add any special hacks needed to make
47 Emacs work on this system. For example, you might define certain
48 system call names that don't exist on your system, or that do
49 different things on your system and must be used only through an
50 encapsulation (which you should place, by convention, in sysdep.c). */
51 \f
52 /* Avoid incompatibilities between gmalloc.c and system header files
53 in how to declare valloc. */
54 #define GMALLOC_INHIBIT_VALLOC
55
56 /* This overrides the default value on editfns.c, since DJGPP
57 does not have pw->pw_gecos. */
58 #define USER_FULL_NAME (getenv ("NAME"))
59
60 /* setjmp and longjmp can safely replace _setjmp and _longjmp,
61 but they will run slower. */
62 #define _setjmp setjmp
63 #define _longjmp longjmp
64
65 #define DATA_START (&etext + 1)
66
67 #define _NAIVE_DOS_REGS
68
69 /* command.com does not understand `...` so we define this. */
70 #define SEPCHAR ';'
71
72 #define NULL_DEVICE "nul"
73
74 #define HAVE_INVERSE_HYPERBOLIC
75 #define FLOAT_CHECK_DOMAIN
76
77 /* When $TERM is "internal" then this is substituted: */
78 #define INTERNAL_TERMINAL "pc|bios|IBM PC with color display:\
79 :co#80:li#25:Co#16:pa#256:km:ms:cm=<CM>:cl=<CL>:ce=<CE>:\
80 :se=</SO>:so=<SO>:us=<UL>:ue=</UL>:md=<BD>:mh=<DIM>:mb=<BL>:mr=<RV>:me=<NV>:\
81 :AB=<BG %d>:AF=<FG %d>:op=<DefC>:"
82
83 /* Define this to a function (Fdowncase, Fupcase) if your file system
84 likes that. */
85 #define FILE_SYSTEM_CASE Fmsdos_downcase_filename
86
87 /* Define this to be the separator between devices and paths. */
88 #define DEVICE_SEP ':'
89
90 /* We'll support either convention on MSDOG. */
91 #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\')
92 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_))
93
94
95 /* Mode line description of a buffer's type. */
96 #define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B")
97
98 /* We have (the code to control) a mouse. */
99 #define HAVE_MOUSE
100
101 /* We can use mouse menus. */
102 #define HAVE_MENUS
103
104 /* Define one of these for easier conditionals. */
105 #ifdef HAVE_X_WINDOWS
106 /* We need a little extra space, see ../../lisp/loadup.el and the
107 commentary below, in the non-X branch. The 140KB number was
108 measured on GNU/Linux and on MS-WIndows. */
109 #define SYSTEM_PURESIZE_EXTRA (-170000+140000)
110 #else
111 /* We need a little extra space, see ../../lisp/loadup.el.
112 As of 20091024, DOS-specific files use up 62KB of pure space. But
113 overall, we end up wasting 130KB of pure space, because
114 BASE_PURESIZE starts at 1.47MB, while we need only 1.3MB (including
115 non-DOS specific files and load history; the latter is about 55K,
116 but depends on the depth of the top-level Emacs directory in the
117 directory tree). Given the unknown policy of different DPMI
118 hosts regarding loading of untouched pages, I'm not going to risk
119 enlarging Emacs footprint by another 100+ KBytes. */
120 #define SYSTEM_PURESIZE_EXTRA (-170000+65000)
121 #endif
122
123 /* Tell the garbage collector that setjmp is known to save all
124 registers relevant for conservative garbage collection in the jmp_buf. */
125 #define GC_SETJMP_WORKS 1
126 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
127