* nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
[bpt/emacs.git] / nt / inc / ms-w32.h
CommitLineData
95ed0025 1/* System description file for Windows NT.
7490175b 2
acaf905b 3Copyright (C) 1993-1995, 2001-2012 Free Software Foundation, Inc.
95ed0025
RS
4
5This file is part of GNU Emacs.
6
4b158629 7GNU Emacs is free software: you can redistribute it and/or modify
95ed0025 8it under the terms of the GNU General Public License as published by
4b158629
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
95ed0025
RS
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
4b158629 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
95ed0025 19
e05aebe9
GM
20/* Define symbols to identify the version of Unix this is.
21 Define all the symbols that apply correctly. */
95ed0025 22
95ed0025
RS
23#ifndef WINDOWSNT
24#define WINDOWSNT
25#endif
95ed0025 26
f247498e
JB
27/* #undef const */
28
a8ab93b0
JB
29/* Number of chars of output in the buffer of a stdio stream. */
30#ifdef __GNU_LIBRARY__
31#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__bufp - (FILE)->__buffer)
32#else
33#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base)
34#endif
35
3360970a 36/* If you are compiling with a non-C calling convention but need to
e05aebe9 37 declare vararg routines differently, put it here. */
3360970a
KH
38#define _VARARGS_ __cdecl
39
40/* If you are providing a function to something that will call the
41 function back (like a signal handler and signal, or main) its calling
e05aebe9 42 convention must be whatever standard the libraries expect. */
3360970a
KH
43#define _CALLBACK_ __cdecl
44
e05aebe9
GM
45/* Define HAVE_TIMEVAL if the system supports the BSD style clock values.
46 Look in <sys/time.h> for a timeval structure. */
124abc74 47#define HAVE_TIMEVAL 1
95ed0025 48
69fd7dbf
KS
49/* But our select implementation doesn't allow us to make non-blocking
50 connects. So until that is fixed, this is necessary: */
69fd7dbf
KS
51#define BROKEN_NON_BLOCKING_CONNECT 1
52
401ea527
KS
53/* And the select implementation does 1-byte read-ahead waiting
54 for received packets, so datagrams are broken too. */
401ea527
KS
55#define BROKEN_DATAGRAM_SOCKETS 1
56
124abc74 57#define MAIL_USE_SYSTEM_LOCK 1
95ed0025 58
ef099b57
JB
59/* Define to 1 if GCC-style __attribute__ ((__aligned__ (expr))) works. */
60#ifdef __GNUC__
61#define HAVE_ATTRIBUTE_ALIGNED 1
62#endif
63
64/* Define to 1 if strtold conforms to C99. */
65#ifdef __GNUC__
66#define HAVE_C99_STRTOLD 1
67#endif
68
69#if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8))
70#define HAVE___BUILTIN_UNWIND_INIT 1
71#endif
72
95ed0025
RS
73/* ============================================================ */
74
e05aebe9
GM
75/* Here, add any special hacks needed to make Emacs work on this
76 system. For example, you might define certain system call names
77 that don't exist on your system, or that do different things on
78 your system and must be used only through an encapsulation (which
79 you should place, by convention, in sysdep.c). */
95ed0025 80
f247498e
JB
81#ifdef __GNUC__
82#ifndef __cplusplus
83#undef inline
84#endif
85#else /* MSVC */
86#define inline __inline
87#endif
88
89#ifdef __GNUC__
90# define restrict __restrict__
91#else
92# define restrict
93#endif
94
95/* `mode_t' is not defined for MSVC. Define. */
96#ifdef _MSC_VER
97typedef unsigned short mode_t;
98#endif
99
100/* A va_copy replacement for MSVC. */
101#ifdef _MSC_VER
102# ifdef _WIN64
103# ifndef va_copy /* Need to be checked (?) */
104# define va_copy(d,s) ((d) = (s))
105# endif
106# else /* not _WIN64 */
107# define va_copy(d,s) ((d) = (s))
108# endif /* not _WIN64 */
109#endif /* _MSC_VER */
110
111#ifndef WINDOWSNT
112/* Some of the files of Emacs which are intended for use with other
113 programs assume that if you have a config.h file, you must declare
114 the type of getenv. */
115extern char *getenv ();
116#endif
117
118#ifdef HAVE_STRINGS_H
119#include "strings.h"
120#endif
d6dae14b 121#include <sys/types.h>
a6fc3b5c
EZ
122
123#ifdef _MSC_VER
124typedef unsigned long sigset_t;
125typedef int ssize_t;
126#endif
127
d6dae14b
EZ
128struct sigaction {
129 int sa_flags;
3e6d6928 130 void (_CALLBACK_ *sa_handler)(int);
d6dae14b
EZ
131 sigset_t sa_mask;
132};
133#define SIG_BLOCK 1
134#define SIG_SETMASK 2
135#define SIG_UNBLOCK 3
136
95ed0025
RS
137#ifndef MAXPATHLEN
138#define MAXPATHLEN _MAX_PATH
139#endif
140
4a1ba222 141#ifdef HAVE_NTGUI
124abc74 142#define HAVE_WINDOW_SYSTEM 1
124abc74 143#define HAVE_MENUS 1
4a1ba222
GV
144#endif
145
e05aebe9 146/* Get some redefinitions in place. */
4e36126c 147
124abc74
AI
148#ifdef emacs
149
a6fc3b5c
EZ
150#ifdef _MSC_VER
151#include <sys/timeb.h>
152#include <sys/stat.h>
153#include <signal.h>
3ad924ba
EZ
154
155/* MSVC gets link-time errors without these redirections. */
156#define fstat(a, b) sys_fstat(a, b)
157#define stat(a, b) sys_stat(a, b)
158#define utime sys_utime
a6fc3b5c
EZ
159#endif
160
e05aebe9 161/* Calls that are emulated or shadowed. */
7f470eff 162#undef access
4e36126c 163#define access sys_access
7f470eff 164#undef chdir
4e36126c 165#define chdir sys_chdir
7f470eff 166#undef chmod
4e36126c 167#define chmod sys_chmod
0e20b3a3 168#define chown sys_chown
7f470eff 169#undef close
4e36126c 170#define close sys_close
7f470eff 171#undef creat
4e36126c
GV
172#define creat sys_creat
173#define ctime sys_ctime
7f470eff 174#undef dup
4e36126c 175#define dup sys_dup
7f470eff 176#undef dup2
4e36126c
GV
177#define dup2 sys_dup2
178#define fopen sys_fopen
179#define link sys_link
97a93095 180#define localtime sys_localtime
4e36126c 181#define mkdir sys_mkdir
7f470eff 182#undef mktemp
4e36126c 183#define mktemp sys_mktemp
7f470eff 184#undef open
4e36126c
GV
185#define open sys_open
186#define pipe sys_pipe
7f470eff 187#undef read
4e36126c
GV
188#define read sys_read
189#define rename sys_rename
190#define rmdir sys_rmdir
191#define select sys_select
c9240d7a 192#define pselect sys_select
4e36126c 193#define sleep sys_sleep
a14724c8 194#define strerror sys_strerror
7f470eff 195#undef unlink
4e36126c 196#define unlink sys_unlink
7f470eff 197#undef write
4e36126c
GV
198#define write sys_write
199
e05aebe9 200/* Subprocess calls that are emulated. */
4e36126c
GV
201#define spawnve sys_spawnve
202#define wait sys_wait
203#define kill sys_kill
204#define signal sys_signal
205
e05aebe9 206/* termcap.c calls that are emulated. */
91eac4bb
JB
207#define tputs sys_tputs
208#define tgetstr sys_tgetstr
209
e05aebe9 210/* cm.c calls that are emulated. */
91eac4bb
JB
211#define chcheckmagic sys_chcheckmagic
212#define cmcostinit sys_cmcostinit
213#define cmgoto sys_cmgoto
214#define cmputc sys_cmputc
215#define Wcm_clear sys_Wcm_clear
216
124abc74
AI
217#endif /* emacs */
218
e05aebe9 219/* Map to MSVC names. */
4e36126c
GV
220#define execlp _execlp
221#define execvp _execvp
4e36126c 222#define fdopen _fdopen
23bf9efb 223#ifndef fileno
4e36126c 224#define fileno _fileno
23bf9efb 225#endif
a5a7d30f
AI
226#define fsync _commit
227#define ftruncate _chsize
4e36126c 228#define getpid _getpid
9b67f3aa
EZ
229#ifdef _MSC_VER
230typedef int pid_t;
8c9afb46
EZ
231#define snprintf _snprintf
232#define strtoll _strtoi64
9b67f3aa 233#endif
4e36126c
GV
234#define isatty _isatty
235#define logb _logb
236#define _longjmp longjmp
237#define lseek _lseek
238#define popen _popen
239#define pclose _pclose
4e36126c 240#define umask _umask
8c9afb46 241#ifndef _MSC_VER
719072f5 242#define utimbuf _utimbuf
8c9afb46 243#endif
bfba227f
AI
244#define strdup _strdup
245#define strupr _strupr
246#define strnicmp _strnicmp
247#define stricmp _stricmp
248#define tzset _tzset
e37b3faf 249
8a0c01dd
EZ
250/* Include time.h before redirecting tzname, since MSVC's time.h
251 defines _tzname to call a function, but also declares tzname a
252 2-element array. Having the redirection before including the
253 header thus has the effect of declaring a function that returns an
254 array, and triggers an error message. */
255#include <time.h>
bfba227f 256#define tzname _tzname
8c9afb46 257#if !defined (_MSC_VER) || (_MSC_VER < 1400)
3ad924ba 258#undef utime
bc5f466c 259#define utime _utime
e37b3faf 260#endif
95ed0025 261
696056c2
EZ
262/* 'struct timespec' is used by time-related functions in lib/ and
263 elsewhere, but we don't use lib/time.h where the structure is
264 defined. */
265struct timespec
266{
267 time_t tv_sec; /* seconds */
268 long int tv_nsec; /* nanoseconds */
269};
270
e05aebe9
GM
271/* This is hacky, but is necessary to avoid warnings about macro
272 redefinitions using the SDK compilers. */
7f470eff
GV
273#ifndef __STDC__
274#define __STDC__ 1
275#define MUST_UNDEF__STDC__
276#endif
277#include <direct.h>
278#include <io.h>
279#include <stdio.h>
280#ifdef MUST_UNDEF__STDC__
281#undef __STDC__
282#undef MUST_UNDEF__STDC__
283#endif
284
e05aebe9 285/* Defines that we need that aren't in the standard signal.h. */
95ed0025
RS
286#define SIGHUP 1 /* Hang up */
287#define SIGQUIT 3 /* Quit process */
288#define SIGTRAP 5 /* Trace trap */
289#define SIGKILL 9 /* Die, die die */
290#define SIGPIPE 13 /* Write on pipe with no readers */
291#define SIGALRM 14 /* Alarm */
292#define SIGCHLD 18 /* Death of child */
293
bfba227f
AI
294#ifndef NSIG
295#define NSIG 23
296#endif
297
95ed0025
RS
298/* For integration with MSDOS support. */
299#define getdisk() (_getdrive () - 1)
445f44d2
RS
300#ifdef emacs
301#define getdefdir(_drv, _buf) ((_buf[0] = (_drv + 'A' - 1), _buf[1] = ':', _buf[2] = '/', _buf[3] = 0), 1)
302#else
95ed0025 303#define getdefdir(_drv, _buf) _getdcwd (_drv, _buf, MAXPATHLEN)
445f44d2 304#endif
95ed0025 305
bfba227f
AI
306extern char *get_emacs_configuration (void);
307extern char *get_emacs_configuration_options (void);
3360970a 308#define EMACS_CONFIGURATION get_emacs_configuration ()
bfba227f 309#define EMACS_CONFIG_OPTIONS get_emacs_configuration_options ()
3360970a 310
4e36126c
GV
311/* Define this so that winsock.h definitions don't get included with
312 windows.h. For this to have proper effect, config.h must always be
313 included before windows.h. */
95ed0025 314#define _WINSOCKAPI_ 1
bfba227f 315#define _WINSOCK_H
95ed0025 316
f247498e
JB
317/* Prevent accidental use of features unavailable in
318 older Windows versions we still support. */
319#define _WIN32_WINNT 0x0400
320
321/* Make a leaner executable. */
322#define WIN32_LEAN_AND_MEAN 1
323
1cd47f14 324/* Defines size_t and alloca (). */
8c9afb46 325#ifdef emacs
bfba227f
AI
326#define malloc e_malloc
327#define free e_free
328#define realloc e_realloc
329#define calloc e_calloc
330#endif
a6fc3b5c
EZ
331#ifdef _MSC_VER
332#define alloca _alloca
333#else
1cd47f14 334#include <malloc.h>
a6fc3b5c 335#endif
1cd47f14 336
f247498e 337#include <stdlib.h>
3360970a 338#include <sys/stat.h>
3360970a 339
e05aebe9 340/* Define for those source files that do not include enough NT system files. */
3360970a
KH
341#ifndef NULL
342#ifdef __cplusplus
343#define NULL 0
344#else
345#define NULL ((void *)0)
346#endif
347#endif
896c0d8b 348
4a1ba222 349/* For proper declaration of environ. */
bfba227f
AI
350#ifndef sys_nerr
351#define sys_nerr _sys_nerr
352#endif
4a1ba222 353
eef5ce6e
EZ
354extern int getloadavg (double *, int);
355
f247498e
JB
356#if defined (__MINGW32__) || _MSC_VER >= 1400
357
358/* Define to 1 if the system has the type `long long int'. */
359# define HAVE_LONG_LONG_INT 1
360
361/* Define to 1 if the system has the type `unsigned long long int'. */
362# define HAVE_UNSIGNED_LONG_LONG_INT 1
363
364#elif _MSC_VER >= 1200
365
366/* Temporarily disable wider-than-pointer integers until they're tested more.
367 Build with CFLAGS='-DWIDE_EMACS_INT' to try them out. */
368
369# ifdef WIDE_EMACS_INT
370
371/* Use pre-C99-style 64-bit integers. */
71f88e00
PE
372typedef __int64 EMACS_INT;
373typedef unsigned __int64 EMACS_UINT;
f247498e
JB
374# define EMACS_INT_MAX _I64_MAX
375# define pI "I64"
376
377# endif
378
379#endif
380
517d7b9f 381/* We need a little extra space, see ../../lisp/loadup.el. */
ff709c3a 382#define SYSTEM_PURESIZE_EXTRA 50000
e3be3bfd 383
34374650
PE
384#define DATA_START get_data_start ()
385
7f470eff
GV
386/* For unexec to work on Alpha systems, we need to put Emacs'
387 initialized data into a separate section from the CRT initialized
388 data (because the Alpha linker freely reorders data variables, even
389 across libraries, so our data and the CRT data get intermingled).
390
391 Starting with MSVC 5.0, we must also place the uninitialized data
392 into its own section. VC5 intermingles uninitialized data from the CRT
393 between Emacs' static uninitialized data and its public uninitialized
394 data. A separate .bss section for Emacs groups both static and
517d7b9f 395 public uninitialized together.
7f470eff 396
517d7b9f 397 Note that unexw32.c relies on this fact, and must be modified
7f470eff
GV
398 accordingly if this section name is changed, or if this pragma is
399 removed. Also, obviously, all files that define initialized data
400 must include config.h to pick up this pragma. */
401
e05aebe9 402/* Names must be < 8 bytes. */
52c7f9ee 403#ifdef _MSC_VER
7f470eff
GV
404#pragma data_seg("EMDATA")
405#pragma bss_seg("EMBSS")
52c7f9ee 406#endif
7f470eff
GV
407
408/* #define FULL_DEBUG */
409/* #define EMACSDEBUG */
410
411#ifdef EMACSDEBUG
412extern void _DebPrint (const char *fmt, ...);
413#define DebPrint(stuff) _DebPrint stuff
414#else
415#define DebPrint(stuff)
416#endif
417
17a2cbbd
DC
418#define TERM_HEADER "w32term.h"
419
420
3360970a 421/* ============================================================ */