annotate src/s/windowsnt.h @ 223:2c611d1463a6 r20-4b10

Import from CVS: tag r20-4b10
author cvs
date Mon, 13 Aug 2007 10:10:54 +0200
parents 78478c60bfcd
children 0e522484dd2a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* System description file for Windows NT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #ifndef WINDOWSNT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #define WINDOWSNT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #endif
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
26
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #ifndef DOS_NT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define DOS_NT /* MSDOS or WINDOWSNT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
31 /* In case non-Microsoft compiler is used, we fake _MSC_VER */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
32 #ifndef _MSC_VER
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
33 #define _MSC_VER 1
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
34 #endif
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
35
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
36 typedef unsigned short mode_t;
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
37 typedef long ptrdiff_t;
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
38 typedef int pid_t;
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
39
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 /* If you are compiling with a non-C calling convention but need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 declare vararg routines differently, put it here */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #define _VARARGS_ __cdecl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* If you are providing a function to something that will call the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 function back (like a signal handler and signal, or main) its calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 convention must be whatever standard the libraries expect */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #define _CALLBACK_ __cdecl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 /* SYSTEM_TYPE should indicate the kind of system you are using.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 It sets the Lisp variable system-type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #define SYSTEM_TYPE "windows-nt"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #define NO_MATHERR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
56 #define SIZEOF_LONG 4
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
57 #define SIZEOF_INT 4
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
58 #define SIZEOF_SHORT 4
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
59
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 /* NOMULTIPLEJOBS should be defined if your system's shell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 does not have "job control" (the ability to stop a program,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 run some other program, then continue the first one). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 /* #define NOMULTIPLEJOBS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 /* Letter to use in finding device name of first pty,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 if system supports pty's. 'a' means it is /dev/ptya0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 #define FIRST_PTY_LETTER 'a'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 * Define HAVE_TIMEVAL if the system supports the BSD style clock values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 * Look in <sys/time.h> for a timeval structure.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #define HAVE_TIMEVAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 * Define HAVE_SELECT if the system supports the `select' system call.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 /* #define HAVE_SELECT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 * Define HAVE_PTYS if the system supports pty devices.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 /* #define HAVE_PTYS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 /* If your system uses COFF (Common Object File Format) then define the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 preprocessor symbol "COFF". */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 #define COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 /* NT supports Winsock which is close enough (with some hacks) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #define HAVE_SOCKETS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* define MAIL_USE_FLOCK if the mailer uses flock
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 to interlock access to /usr/spool/mail/$USER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 The alternative is that a lock file named
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 /usr/spool/mail/$USER.lock. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 /* #define MAIL_USE_FLOCK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #define MAIL_USE_POP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 #define MAIL_USE_SYSTEM_LOCK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 /* If the character used to separate elements of the executable path
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 is not ':', #define this to be the appropriate character constant. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #define SEPCHAR ';'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* ============================================================ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 /* Here, add any special hacks needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 to make Emacs work on this system. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 you might define certain system call names that don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 exist on your system, or that do different things on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 your system and must be used only through an encapsulation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (Which you should place, by convention, in sysdep.c). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
121 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 /* Define this to be the separator between path elements */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #define DIRECTORY_SEP XINT (Vdirectory_sep_char)
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
124 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
126 #define DIRECTORY_SEP '\\'
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
127
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 /* Define this to be the separator between devices and paths */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 #define DEVICE_SEP ':'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /* We'll support either convention on NT. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* The null device on Windows NT. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #define NULL_DEVICE "NUL:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 #define EXEC_SUFFIXES ".exe:.com:.bat:.cmd:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 #ifndef MAXPATHLEN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 #define MAXPATHLEN _MAX_PATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 #define LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 #define HAVE_GETTIMEOFDAY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 #define HAVE_GETHOSTNAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 #define HAVE_DUP2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 #define HAVE_RENAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #define HAVE_CLOSEDIR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 #define HAVE_TZNAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 #define HAVE_LONG_FILE_NAMES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 #define HAVE_MKDIR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 #define HAVE_RMDIR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 #define HAVE_RANDOM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 #define HAVE_BCOPY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 #define HAVE_BCMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #define HAVE_LOGB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #define HAVE_FREXP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #define HAVE_FMOD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #define HAVE_FTIME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 #define HAVE_MKTIME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 #define HAVE_MOUSE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #define HAVE_H_ERRNO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 #ifdef HAVE_NTGUI
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #define HAVE_WINDOW_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 #define HAVE_FACES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #define MODE_LINE_BINARY_TEXT(_b_) (NILP ((_b_)->buffer_file_type) ? "T" : "B")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 /* get some redefinitions in place */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
178 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 /* IO calls that are emulated or shadowed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 #define access sys_access
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 #define chdir sys_chdir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #define chmod sys_chmod
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 #define close sys_close
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #define creat sys_creat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 #define ctime sys_ctime
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 #define dup sys_dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 #define dup2 sys_dup2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 #define fopen sys_fopen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 #define link sys_link
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 #define mktemp sys_mktemp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 #define open sys_open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 #define read sys_read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 #define rename sys_rename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 #define unlink sys_unlink
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 #define write sys_write
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
196 #define mkdir sys_mkdir
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
197 #define rmdir sys_rmdir
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
199 #endif
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
200
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
201 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 /* this is hacky, but is necessary to avoid warnings about macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 redefinitions using the SDK compilers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 #ifndef __STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 #define __STDC__ 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 #define MUST_UNDEF__STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 #include <direct.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 #include <io.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #ifdef MUST_UNDEF__STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #undef __STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 #undef MUST_UNDEF__STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #endif
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
215 #endif
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
216
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 169
diff changeset
217 #include <stdio.h>
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 169
diff changeset
218
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
219
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
220 /* IO calls that are emulated or shadowed */
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
221 #define pipe sys_pipe
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
222
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
223 #ifndef HAVE_X_WINDOWS
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
224 #define sleep sys_sleep
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
225 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 /* subprocess calls that are emulated */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #define spawnve sys_spawnve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #define wait sys_wait
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 #define kill sys_kill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
232 #define select sys_select
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
233
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 /* map to MSVC names */
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 169
diff changeset
235 #define chdir _chdir
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 #define execlp _execlp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 #define execvp _execvp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 #define fcloseall _fcloseall
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
239 #define fdopen _fdopen
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 #define fgetchar _fgetchar
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
241 #define fileno _fileno
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 #define flushall _flushall
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 #define fputchar _fputchar
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
244 #define getw _getw
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #define getpid _getpid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #define isatty _isatty
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 #define logb _logb
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 #define _longjmp longjmp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 #define lseek _lseek
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 #define popen _popen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 #define pclose _pclose
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
252 #define putw _putw
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
253 #define umask _umask
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
254 #define utime _utime
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 #define index strchr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 #define rindex strrchr
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
257 #define read _read
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
258 #define write _write
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 100
diff changeset
259 #define getcwd _getcwd
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 #ifdef HAVE_NTGUI
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 #define abort win32_abort
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
265 /* Setitimer is emulated */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
266 #define HAVE_SETITIMER
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
267
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
268 /* We now have emulation for some signals */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
269 #define HAVE_SIGHOLD
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
270 #define sigset(s,h) msw_sigset(s,h)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
271 #define sighold(s) msw_sighold(s)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
272 #define sigrelse(s) msw_sigrelse(s)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
273 #define sigpause(s) msw_sigpause(s)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
274 #define signal sigset
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
275
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 /* Defines that we need that aren't in the standard signal.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 #define SIGHUP 1 /* Hang up */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 #define SIGQUIT 3 /* Quit process */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 #define SIGTRAP 5 /* Trace trap */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 #define SIGKILL 9 /* Die, die die */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 #define SIGPIPE 13 /* Write on pipe with no readers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 #define SIGALRM 14 /* Alarm */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 #define SIGCHLD 18 /* Death of child */
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
284 #define SIGPROF 29 /* Profiling timer exp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 /* For integration with MSDOS support. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 #define getdisk() (_getdrive () - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #define getdefdir(_drv, _buf) _getdcwd (_drv, _buf, MAXPATHLEN)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 #define EMACS_CONFIGURATION get_emacs_configuration ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 #define EMACS_CONFIG_OPTIONS "NT" /* Not very meaningful yet. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 /* Define this so that winsock.h definitions don't get included when windows.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 is... I don't know if they do the right thing for emacs. For this to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 have proper effect, config.h must always be included before windows.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 #define _WINSOCKAPI_ 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 /* Defines size_t and alloca (). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 #include <sys/stat.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 /* Define for those source files that do not include enough NT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 system files. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #ifndef NULL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 #ifdef __cplusplus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #define NULL 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 #define NULL ((void *)0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 /* For proper declaration of environ. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 #include <stdlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 #include <string.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
317 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 /* Emacs takes care of ensuring that these are defined. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 #ifdef max
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 #undef max
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 #undef min
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 #endif
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 0
diff changeset
323 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 /* We need a little extra space, see ../../lisp/loadup.el */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 #define SYSTEM_PURESIZE_EXTRA 15000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 /* ============================================================ */