annotate src/s/windowsnt.h @ 169:15872534500d r20-3b11

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