Merge from emacs-24; up to 2012-12-22T19:09:52Z!rgm@gnu.org
[bpt/emacs.git] / nt / inc / ms-w32.h
CommitLineData
95ed0025 1/* System description file for Windows NT.
7490175b 2
ab422c4d 3Copyright (C) 1993-1995, 2001-2013 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 122
95ed0025
RS
123#ifndef MAXPATHLEN
124#define MAXPATHLEN _MAX_PATH
125#endif
126
4a1ba222 127#ifdef HAVE_NTGUI
124abc74 128#define HAVE_WINDOW_SYSTEM 1
124abc74 129#define HAVE_MENUS 1
4a1ba222
GV
130#endif
131
e05aebe9 132/* Get some redefinitions in place. */
4e36126c 133
124abc74
AI
134#ifdef emacs
135
a6fc3b5c
EZ
136#ifdef _MSC_VER
137#include <sys/timeb.h>
138#include <sys/stat.h>
139#include <signal.h>
3ad924ba
EZ
140
141/* MSVC gets link-time errors without these redirections. */
142#define fstat(a, b) sys_fstat(a, b)
143#define stat(a, b) sys_stat(a, b)
144#define utime sys_utime
a6fc3b5c
EZ
145#endif
146
e05aebe9 147/* Calls that are emulated or shadowed. */
7f470eff 148#undef chdir
4e36126c 149#define chdir sys_chdir
7f470eff 150#undef chmod
4e36126c 151#define chmod sys_chmod
7f470eff 152#undef close
4e36126c 153#define close sys_close
7f470eff 154#undef creat
4e36126c
GV
155#define creat sys_creat
156#define ctime sys_ctime
7f470eff 157#undef dup
4e36126c 158#define dup sys_dup
7f470eff 159#undef dup2
4e36126c
GV
160#define dup2 sys_dup2
161#define fopen sys_fopen
162#define link sys_link
97a93095 163#define localtime sys_localtime
4e36126c 164#define mkdir sys_mkdir
7f470eff 165#undef mktemp
4e36126c 166#define mktemp sys_mktemp
7f470eff 167#undef open
4e36126c
GV
168#define open sys_open
169#define pipe sys_pipe
7f470eff 170#undef read
4e36126c
GV
171#define read sys_read
172#define rename sys_rename
173#define rmdir sys_rmdir
174#define select sys_select
c9240d7a 175#define pselect sys_select
4e36126c 176#define sleep sys_sleep
a14724c8 177#define strerror sys_strerror
7f470eff 178#undef unlink
4e36126c 179#define unlink sys_unlink
b0728617
EZ
180/* This prototype is needed because some files include config.h
181 _after_ the standard headers, so sys_unlink gets no prototype from
182 stdio.h or io.h. */
183extern int sys_unlink (const char *);
7f470eff 184#undef write
4e36126c
GV
185#define write sys_write
186
e05aebe9 187/* Subprocess calls that are emulated. */
4e36126c 188#define spawnve sys_spawnve
4e36126c
GV
189#define kill sys_kill
190#define signal sys_signal
191
4d7e6e51 192/* Internal signals. */
5101529e 193#define emacs_raise(sig) emacs_abort()
4d7e6e51 194
e05aebe9 195/* termcap.c calls that are emulated. */
91eac4bb
JB
196#define tputs sys_tputs
197#define tgetstr sys_tgetstr
198
e05aebe9 199/* cm.c calls that are emulated. */
91eac4bb
JB
200#define chcheckmagic sys_chcheckmagic
201#define cmcostinit sys_cmcostinit
202#define cmgoto sys_cmgoto
203#define cmputc sys_cmputc
204#define Wcm_clear sys_Wcm_clear
205
124abc74
AI
206#endif /* emacs */
207
e05aebe9 208/* Map to MSVC names. */
4e36126c
GV
209#define execlp _execlp
210#define execvp _execvp
4e36126c 211#define fdopen _fdopen
23bf9efb 212#ifndef fileno
4e36126c 213#define fileno _fileno
23bf9efb 214#endif
a5a7d30f
AI
215#define fsync _commit
216#define ftruncate _chsize
4e36126c 217#define getpid _getpid
9b67f3aa
EZ
218#ifdef _MSC_VER
219typedef int pid_t;
8c9afb46
EZ
220#define snprintf _snprintf
221#define strtoll _strtoi64
9b67f3aa 222#endif
4e36126c 223#define isatty _isatty
4e36126c
GV
224#define _longjmp longjmp
225#define lseek _lseek
226#define popen _popen
227#define pclose _pclose
4e36126c 228#define umask _umask
8c9afb46 229#ifndef _MSC_VER
719072f5 230#define utimbuf _utimbuf
8c9afb46 231#endif
bfba227f
AI
232#define strdup _strdup
233#define strupr _strupr
234#define strnicmp _strnicmp
235#define stricmp _stricmp
236#define tzset _tzset
e37b3faf 237
a68089e4
EZ
238/* We cannot include system header process.h, since there's src/process.h. */
239int _getpid (void);
240
8a0c01dd
EZ
241/* Include time.h before redirecting tzname, since MSVC's time.h
242 defines _tzname to call a function, but also declares tzname a
243 2-element array. Having the redirection before including the
244 header thus has the effect of declaring a function that returns an
245 array, and triggers an error message. */
246#include <time.h>
bfba227f 247#define tzname _tzname
8c9afb46 248#if !defined (_MSC_VER) || (_MSC_VER < 1400)
3ad924ba 249#undef utime
bc5f466c 250#define utime _utime
e37b3faf 251#endif
95ed0025 252
696056c2
EZ
253/* 'struct timespec' is used by time-related functions in lib/ and
254 elsewhere, but we don't use lib/time.h where the structure is
255 defined. */
256struct timespec
257{
258 time_t tv_sec; /* seconds */
259 long int tv_nsec; /* nanoseconds */
260};
261
a68089e4
EZ
262/* Required for functions in lib/time_r.c, since we don't use lib/time.h. */
263extern struct tm *gmtime_r (time_t const * restrict, struct tm * restrict);
264extern struct tm *localtime_r (time_t const * restrict, struct tm * restrict);
265
cd91fb4b 266#ifdef _MSC_VER
e05aebe9 267/* This is hacky, but is necessary to avoid warnings about macro
cd91fb4b
EZ
268 redefinitions using the MSVC compilers, since, when __STDC__ is
269 undefined or zero, those compilers declare functions like fileno,
270 lseek, and chdir, for which we defined macros above. */
7f470eff
GV
271#ifndef __STDC__
272#define __STDC__ 1
273#define MUST_UNDEF__STDC__
274#endif
275#include <direct.h>
276#include <io.h>
277#include <stdio.h>
278#ifdef MUST_UNDEF__STDC__
279#undef __STDC__
280#undef MUST_UNDEF__STDC__
281#endif
cd91fb4b
EZ
282#else /* !_MSC_VER */
283#include <direct.h>
284#include <io.h>
285#include <stdio.h>
286#endif /* !_MSC_VER */
7f470eff 287
e05aebe9 288/* Defines that we need that aren't in the standard signal.h. */
95ed0025
RS
289#define SIGHUP 1 /* Hang up */
290#define SIGQUIT 3 /* Quit process */
291#define SIGTRAP 5 /* Trace trap */
292#define SIGKILL 9 /* Die, die die */
293#define SIGPIPE 13 /* Write on pipe with no readers */
294#define SIGALRM 14 /* Alarm */
295#define SIGCHLD 18 /* Death of child */
c06c382a 296#define SIGPROF 19 /* Profiling */
95ed0025 297
bfba227f
AI
298#ifndef NSIG
299#define NSIG 23
300#endif
301
66447e07
EZ
302#ifndef ENOTSUP
303#define ENOTSUP ENOSYS
304#endif
305
a68089e4
EZ
306#ifdef _MSC_VER
307typedef int sigset_t;
308typedef int ssize_t;
309#endif
310
311typedef void (_CALLBACK_ *signal_handler) (int);
312extern signal_handler sys_signal (int, signal_handler);
313
314struct sigaction {
315 int sa_flags;
316 void (_CALLBACK_ *sa_handler)(int);
317 sigset_t sa_mask;
318};
319#define SA_RESTART 0
320#define SIG_BLOCK 1
321#define SIG_SETMASK 2
322#define SIG_UNBLOCK 3
323
324extern int sigemptyset (sigset_t *);
325extern int sigaddset (sigset_t *, int);
326extern int sigfillset (sigset_t *);
327extern int sigprocmask (int, const sigset_t *, sigset_t *);
328extern int pthread_sigmask (int, const sigset_t *, sigset_t *);
329extern int sigismember (const sigset_t *, int);
330extern int setpgrp (int, int);
331extern int sigaction (int, const struct sigaction *, struct sigaction *);
332extern int alarm (int);
333
334extern int sys_kill (int, int);
335
336
95ed0025
RS
337/* For integration with MSDOS support. */
338#define getdisk() (_getdrive () - 1)
445f44d2
RS
339#ifdef emacs
340#define getdefdir(_drv, _buf) ((_buf[0] = (_drv + 'A' - 1), _buf[1] = ':', _buf[2] = '/', _buf[3] = 0), 1)
341#else
95ed0025 342#define getdefdir(_drv, _buf) _getdcwd (_drv, _buf, MAXPATHLEN)
445f44d2 343#endif
95ed0025 344
bfba227f
AI
345extern char *get_emacs_configuration (void);
346extern char *get_emacs_configuration_options (void);
3360970a 347#define EMACS_CONFIGURATION get_emacs_configuration ()
bfba227f 348#define EMACS_CONFIG_OPTIONS get_emacs_configuration_options ()
3360970a 349
4e36126c
GV
350/* Define this so that winsock.h definitions don't get included with
351 windows.h. For this to have proper effect, config.h must always be
352 included before windows.h. */
95ed0025 353#define _WINSOCKAPI_ 1
bfba227f 354#define _WINSOCK_H
95ed0025 355
f247498e
JB
356/* Prevent accidental use of features unavailable in
357 older Windows versions we still support. */
358#define _WIN32_WINNT 0x0400
359
360/* Make a leaner executable. */
361#define WIN32_LEAN_AND_MEAN 1
362
1cd47f14 363/* Defines size_t and alloca (). */
8c9afb46 364#ifdef emacs
bfba227f
AI
365#define malloc e_malloc
366#define free e_free
367#define realloc e_realloc
368#define calloc e_calloc
369#endif
a6fc3b5c
EZ
370#ifdef _MSC_VER
371#define alloca _alloca
372#else
1cd47f14 373#include <malloc.h>
a6fc3b5c 374#endif
1cd47f14 375
f247498e 376#include <stdlib.h>
3360970a 377#include <sys/stat.h>
3360970a 378
e05aebe9 379/* Define for those source files that do not include enough NT system files. */
3360970a
KH
380#ifndef NULL
381#ifdef __cplusplus
382#define NULL 0
383#else
384#define NULL ((void *)0)
385#endif
386#endif
896c0d8b 387
4a1ba222 388/* For proper declaration of environ. */
bfba227f
AI
389#ifndef sys_nerr
390#define sys_nerr _sys_nerr
391#endif
4a1ba222 392
75ceee05
EZ
393/* This must be after including stdlib.h, which defines putenv on MinGW. */
394#ifdef putenv
395# undef putenv
396#endif
397#define putenv sys_putenv
a16e75cd 398extern int sys_putenv (char *);
75ceee05 399
eef5ce6e 400extern int getloadavg (double *, int);
a68089e4 401extern int getpagesize (void);
eef5ce6e 402
8c0905ac
EZ
403extern void * memrchr (void const *, int, size_t);
404
405
62aba0d4 406#if defined (__MINGW32__)
f247498e
JB
407
408/* Define to 1 if the system has the type `long long int'. */
409# define HAVE_LONG_LONG_INT 1
410
411/* Define to 1 if the system has the type `unsigned long long int'. */
412# define HAVE_UNSIGNED_LONG_LONG_INT 1
413
62aba0d4 414#endif
f247498e 415
62aba0d4
FP
416#ifdef _MSC_VER
417# if defined(_WIN64)
418typedef __int64 EMACS_INT;
419typedef unsigned __int64 EMACS_UINT;
420# define EMACS_INT_MAX LLONG_MAX
421# define PRIuMAX "llu"
422# define pI "ll"
423/* Fix a bug in MSVC headers : stdint.h */
424# define _INTPTR 2
425# elif defined(_WIN32)
f247498e
JB
426/* Temporarily disable wider-than-pointer integers until they're tested more.
427 Build with CFLAGS='-DWIDE_EMACS_INT' to try them out. */
428
62aba0d4 429# ifdef WIDE_EMACS_INT
f247498e
JB
430
431/* Use pre-C99-style 64-bit integers. */
71f88e00
PE
432typedef __int64 EMACS_INT;
433typedef unsigned __int64 EMACS_UINT;
62aba0d4
FP
434# define EMACS_INT_MAX LLONG_MAX
435# define PRIuMAX "llu"
436# define pI "I64"
437# else
438typedef int EMACS_INT;
439typedef unsigned int EMACS_UINT;
440# define EMACS_INT_MAX LONG_MAX
441# define PRIuMAX "lu"
442# define pI "l"
443# endif
f247498e 444# endif
f247498e
JB
445#endif
446
517d7b9f 447/* We need a little extra space, see ../../lisp/loadup.el. */
ff709c3a 448#define SYSTEM_PURESIZE_EXTRA 50000
e3be3bfd 449
34374650
PE
450#define DATA_START get_data_start ()
451
7f470eff
GV
452/* For unexec to work on Alpha systems, we need to put Emacs'
453 initialized data into a separate section from the CRT initialized
454 data (because the Alpha linker freely reorders data variables, even
455 across libraries, so our data and the CRT data get intermingled).
456
457 Starting with MSVC 5.0, we must also place the uninitialized data
458 into its own section. VC5 intermingles uninitialized data from the CRT
459 between Emacs' static uninitialized data and its public uninitialized
460 data. A separate .bss section for Emacs groups both static and
517d7b9f 461 public uninitialized together.
7f470eff 462
517d7b9f 463 Note that unexw32.c relies on this fact, and must be modified
7f470eff
GV
464 accordingly if this section name is changed, or if this pragma is
465 removed. Also, obviously, all files that define initialized data
466 must include config.h to pick up this pragma. */
467
e05aebe9 468/* Names must be < 8 bytes. */
52c7f9ee 469#ifdef _MSC_VER
7f470eff
GV
470#pragma data_seg("EMDATA")
471#pragma bss_seg("EMBSS")
52c7f9ee 472#endif
7f470eff
GV
473
474/* #define FULL_DEBUG */
475/* #define EMACSDEBUG */
476
477#ifdef EMACSDEBUG
478extern void _DebPrint (const char *fmt, ...);
479#define DebPrint(stuff) _DebPrint stuff
480#else
481#define DebPrint(stuff)
482#endif
483
62aba0d4
FP
484#ifdef _MSC_VER
485#if _MSC_VER >= 800 && !defined(__cplusplus)
486/* Unnamed type definition in parentheses.
487 A structure, union, or enumerated type with no name is defined in a
488 parenthetical expression. The type definition is meaningless. */
489#pragma warning(disable:4116)
490/* 'argument' : conversion from 'type1' to 'type2', possible loss of
491 data A floating point type was converted to an integer type. A
492 possible loss of data may have occurred. */
493#pragma warning(disable:4244)
494/* Negative integral constant converted to unsigned type.
495 An expression converts a negative integer constant to an unsigned type.
496 The result of the expression is probably meaningless. */
497#pragma warning(disable:4308)
498#endif
499#endif
17a2cbbd
DC
500#define TERM_HEADER "w32term.h"
501
502
3360970a 503/* ============================================================ */