Merge from trunk.
[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))
cb11bd95
EZ
70# ifndef HAVE___BUILTIN_UNWIND_INIT
71# define HAVE___BUILTIN_UNWIND_INIT 1
72# endif
ef099b57
JB
73#endif
74
343a2aef
EZ
75/* This isn't perfect, as some systems might have the page file in
76 another place. Also, I suspect that the time stamp of that file
77 might also change when Windows enlarges the file due to
78 insufficient VM. Still, this seems to be the most reliable way;
79 the alternative (of using GetSystemTimes) won't work on laptops
80 that hibernate, because the system clock is stopped then. Other
81 possibility would be to run "net statistics workstation" and parse
82 the output, but that's gross. So this should do; if the file is
83 not there, the boot time will be returned as zero, and filelock.c
84 already handles that. */
85#define BOOT_TIME_FILE "C:/pagefile.sys"
86
95ed0025
RS
87/* ============================================================ */
88
e05aebe9
GM
89/* Here, add any special hacks needed to make Emacs work on this
90 system. For example, you might define certain system call names
91 that don't exist on your system, or that do different things on
92 your system and must be used only through an encapsulation (which
93 you should place, by convention, in sysdep.c). */
95ed0025 94
f247498e
JB
95#ifdef __GNUC__
96#ifndef __cplusplus
97#undef inline
98#endif
99#else /* MSVC */
100#define inline __inline
101#endif
102
103#ifdef __GNUC__
5d611e04
EZ
104/* config.h may have defined already. */
105# ifndef restrict
106# define restrict __restrict__
107# endif
f247498e 108#else
5d611e04 109 /* FIXME: should we define to __restrict, which MSVC supports? */
f247498e
JB
110# define restrict
111#endif
112
113/* `mode_t' is not defined for MSVC. Define. */
114#ifdef _MSC_VER
115typedef unsigned short mode_t;
116#endif
117
118/* A va_copy replacement for MSVC. */
119#ifdef _MSC_VER
120# ifdef _WIN64
121# ifndef va_copy /* Need to be checked (?) */
122# define va_copy(d,s) ((d) = (s))
123# endif
124# else /* not _WIN64 */
125# define va_copy(d,s) ((d) = (s))
126# endif /* not _WIN64 */
127#endif /* _MSC_VER */
128
129#ifndef WINDOWSNT
130/* Some of the files of Emacs which are intended for use with other
131 programs assume that if you have a config.h file, you must declare
132 the type of getenv. */
133extern char *getenv ();
134#endif
135
553fabe7
EZ
136/* Prevent accidental use of features unavailable in older Windows
137 versions we still support. MinGW64 defines this to a higher value
a18d7de6
EZ
138 in its system headers, and is not really compatible with values
139 lower than 0x0500, so leave it alone. */
140#ifndef _W64
141# define _WIN32_WINNT 0x0400
142#endif
553fabe7
EZ
143
144/* Make a leaner executable. */
145#define WIN32_LEAN_AND_MEAN 1
146
f247498e
JB
147#ifdef HAVE_STRINGS_H
148#include "strings.h"
149#endif
d6dae14b 150#include <sys/types.h>
a6fc3b5c 151
95ed0025
RS
152#ifndef MAXPATHLEN
153#define MAXPATHLEN _MAX_PATH
154#endif
155
4a1ba222 156#ifdef HAVE_NTGUI
cb11bd95
EZ
157# ifndef HAVE_WINDOW_SYSTEM
158# define HAVE_WINDOW_SYSTEM 1
159# endif
160# ifndef HAVE_MENUS
161# define HAVE_MENUS 1
162# endif
4a1ba222
GV
163#endif
164
e05aebe9 165/* Get some redefinitions in place. */
4e36126c 166
124abc74
AI
167#ifdef emacs
168
b88b62de
EZ
169#ifdef _W64
170/* MinGW64 specific stuff. */
b88b62de
EZ
171/* Make sure 'struct timespec' and 'struct timezone' are defined. */
172#include <sys/types.h>
173#include <time.h>
e0c3eb89
EZ
174/* This prototype avoids MinGW64 compiler warnings due to the fact
175 that time.h is included before localtime is redirected to
176 sys_localtime below. */
177extern struct tm * sys_localtime (const time_t *);
ee0fb40e
EZ
178/* MinGW64 uses a 2-argument _setjmp, and setjmp is a macro defined to
179 supply the 2nd arg correctly, so don't use _setjmp directly in that
180 case. */
181#undef HAVE__SETJMP
b88b62de
EZ
182#endif
183
a6fc3b5c
EZ
184#ifdef _MSC_VER
185#include <sys/timeb.h>
186#include <sys/stat.h>
187#include <signal.h>
3ad924ba
EZ
188
189/* MSVC gets link-time errors without these redirections. */
190#define fstat(a, b) sys_fstat(a, b)
191#define stat(a, b) sys_stat(a, b)
192#define utime sys_utime
a6fc3b5c
EZ
193#endif
194
e05aebe9 195/* Calls that are emulated or shadowed. */
7f470eff 196#undef chdir
4e36126c 197#define chdir sys_chdir
7f470eff 198#undef chmod
4e36126c 199#define chmod sys_chmod
7f470eff 200#undef close
4e36126c 201#define close sys_close
7f470eff 202#undef creat
4e36126c
GV
203#define creat sys_creat
204#define ctime sys_ctime
7f470eff 205#undef dup
4e36126c 206#define dup sys_dup
7f470eff 207#undef dup2
4e36126c
GV
208#define dup2 sys_dup2
209#define fopen sys_fopen
210#define link sys_link
97a93095 211#define localtime sys_localtime
4e36126c 212#define mkdir sys_mkdir
7f470eff 213#undef mktemp
4e36126c 214#define mktemp sys_mktemp
7f470eff 215#undef open
4e36126c
GV
216#define open sys_open
217#define pipe sys_pipe
7f470eff 218#undef read
4e36126c
GV
219#define read sys_read
220#define rename sys_rename
221#define rmdir sys_rmdir
222#define select sys_select
c9240d7a 223#define pselect sys_select
4e36126c 224#define sleep sys_sleep
a14724c8 225#define strerror sys_strerror
7f470eff 226#undef unlink
4e36126c 227#define unlink sys_unlink
b0728617
EZ
228/* This prototype is needed because some files include config.h
229 _after_ the standard headers, so sys_unlink gets no prototype from
230 stdio.h or io.h. */
231extern int sys_unlink (const char *);
7f470eff 232#undef write
4e36126c
GV
233#define write sys_write
234
e05aebe9 235/* Subprocess calls that are emulated. */
4e36126c 236#define spawnve sys_spawnve
4e36126c
GV
237#define kill sys_kill
238#define signal sys_signal
239
4d7e6e51 240/* Internal signals. */
5101529e 241#define emacs_raise(sig) emacs_abort()
4d7e6e51 242
e05aebe9 243/* termcap.c calls that are emulated. */
91eac4bb
JB
244#define tputs sys_tputs
245#define tgetstr sys_tgetstr
246
e05aebe9 247/* cm.c calls that are emulated. */
91eac4bb
JB
248#define chcheckmagic sys_chcheckmagic
249#define cmcostinit sys_cmcostinit
250#define cmgoto sys_cmgoto
251#define cmputc sys_cmputc
252#define Wcm_clear sys_Wcm_clear
253
124abc74
AI
254#endif /* emacs */
255
e05aebe9 256/* Map to MSVC names. */
4e36126c
GV
257#define execlp _execlp
258#define execvp _execvp
47d7532e 259#define fdatasync _commit
4e36126c 260#define fdopen _fdopen
23bf9efb 261#ifndef fileno
4e36126c 262#define fileno _fileno
23bf9efb 263#endif
a5a7d30f
AI
264#define fsync _commit
265#define ftruncate _chsize
4e36126c 266#define getpid _getpid
9b67f3aa
EZ
267#ifdef _MSC_VER
268typedef int pid_t;
8c9afb46
EZ
269#define snprintf _snprintf
270#define strtoll _strtoi64
66828436 271#define copysign _copysign
9b67f3aa 272#endif
4e36126c 273#define isatty _isatty
4e36126c
GV
274#define _longjmp longjmp
275#define lseek _lseek
276#define popen _popen
277#define pclose _pclose
4e36126c 278#define umask _umask
8c9afb46 279#ifndef _MSC_VER
719072f5 280#define utimbuf _utimbuf
8c9afb46 281#endif
bfba227f
AI
282#define strdup _strdup
283#define strupr _strupr
284#define strnicmp _strnicmp
285#define stricmp _stricmp
286#define tzset _tzset
e37b3faf 287
a68089e4
EZ
288/* We cannot include system header process.h, since there's src/process.h. */
289int _getpid (void);
290
8a0c01dd
EZ
291/* Include time.h before redirecting tzname, since MSVC's time.h
292 defines _tzname to call a function, but also declares tzname a
293 2-element array. Having the redirection before including the
294 header thus has the effect of declaring a function that returns an
295 array, and triggers an error message. */
296#include <time.h>
bfba227f 297#define tzname _tzname
8c9afb46 298#if !defined (_MSC_VER) || (_MSC_VER < 1400)
3ad924ba 299#undef utime
bc5f466c 300#define utime _utime
e37b3faf 301#endif
95ed0025 302
696056c2
EZ
303/* 'struct timespec' is used by time-related functions in lib/ and
304 elsewhere, but we don't use lib/time.h where the structure is
305 defined. */
553fabe7
EZ
306/* MinGW64 defines 'struct timespec' and _TIMESPEC_DEFINED in sys/types.h. */
307#ifndef _TIMESPEC_DEFINED
696056c2
EZ
308struct timespec
309{
310 time_t tv_sec; /* seconds */
311 long int tv_nsec; /* nanoseconds */
312};
553fabe7 313#endif
696056c2 314
a68089e4
EZ
315/* Required for functions in lib/time_r.c, since we don't use lib/time.h. */
316extern struct tm *gmtime_r (time_t const * restrict, struct tm * restrict);
317extern struct tm *localtime_r (time_t const * restrict, struct tm * restrict);
318
cd91fb4b 319#ifdef _MSC_VER
e05aebe9 320/* This is hacky, but is necessary to avoid warnings about macro
cd91fb4b
EZ
321 redefinitions using the MSVC compilers, since, when __STDC__ is
322 undefined or zero, those compilers declare functions like fileno,
323 lseek, and chdir, for which we defined macros above. */
7f470eff
GV
324#ifndef __STDC__
325#define __STDC__ 1
326#define MUST_UNDEF__STDC__
327#endif
328#include <direct.h>
329#include <io.h>
330#include <stdio.h>
331#ifdef MUST_UNDEF__STDC__
332#undef __STDC__
333#undef MUST_UNDEF__STDC__
334#endif
cd91fb4b
EZ
335#else /* !_MSC_VER */
336#include <direct.h>
337#include <io.h>
338#include <stdio.h>
339#endif /* !_MSC_VER */
7f470eff 340
e05aebe9 341/* Defines that we need that aren't in the standard signal.h. */
95ed0025
RS
342#define SIGHUP 1 /* Hang up */
343#define SIGQUIT 3 /* Quit process */
344#define SIGTRAP 5 /* Trace trap */
345#define SIGKILL 9 /* Die, die die */
346#define SIGPIPE 13 /* Write on pipe with no readers */
347#define SIGALRM 14 /* Alarm */
348#define SIGCHLD 18 /* Death of child */
c06c382a 349#define SIGPROF 19 /* Profiling */
95ed0025 350
bfba227f
AI
351#ifndef NSIG
352#define NSIG 23
353#endif
354
66447e07
EZ
355#ifndef ENOTSUP
356#define ENOTSUP ENOSYS
357#endif
358
a68089e4
EZ
359#ifdef _MSC_VER
360typedef int sigset_t;
361typedef int ssize_t;
362#endif
363
553fabe7
EZ
364#ifndef _POSIX /* MinGW64 */
365typedef _sigset_t sigset_t;
366#endif
367
a68089e4
EZ
368typedef void (_CALLBACK_ *signal_handler) (int);
369extern signal_handler sys_signal (int, signal_handler);
370
371struct sigaction {
372 int sa_flags;
373 void (_CALLBACK_ *sa_handler)(int);
374 sigset_t sa_mask;
375};
376#define SA_RESTART 0
377#define SIG_BLOCK 1
378#define SIG_SETMASK 2
379#define SIG_UNBLOCK 3
380
381extern int sigemptyset (sigset_t *);
382extern int sigaddset (sigset_t *, int);
383extern int sigfillset (sigset_t *);
384extern int sigprocmask (int, const sigset_t *, sigset_t *);
385extern int pthread_sigmask (int, const sigset_t *, sigset_t *);
386extern int sigismember (const sigset_t *, int);
387extern int setpgrp (int, int);
388extern int sigaction (int, const struct sigaction *, struct sigaction *);
389extern int alarm (int);
390
391extern int sys_kill (int, int);
392
393
95ed0025
RS
394/* For integration with MSDOS support. */
395#define getdisk() (_getdrive () - 1)
445f44d2
RS
396#ifdef emacs
397#define getdefdir(_drv, _buf) ((_buf[0] = (_drv + 'A' - 1), _buf[1] = ':', _buf[2] = '/', _buf[3] = 0), 1)
398#else
95ed0025 399#define getdefdir(_drv, _buf) _getdcwd (_drv, _buf, MAXPATHLEN)
445f44d2 400#endif
95ed0025 401
bfba227f
AI
402extern char *get_emacs_configuration (void);
403extern char *get_emacs_configuration_options (void);
3360970a 404#define EMACS_CONFIGURATION get_emacs_configuration ()
bfba227f 405#define EMACS_CONFIG_OPTIONS get_emacs_configuration_options ()
3360970a 406
4e36126c
GV
407/* Define this so that winsock.h definitions don't get included with
408 windows.h. For this to have proper effect, config.h must always be
409 included before windows.h. */
95ed0025 410#define _WINSOCKAPI_ 1
bfba227f 411#define _WINSOCK_H
95ed0025 412
1cd47f14 413/* Defines size_t and alloca (). */
8c9afb46 414#ifdef emacs
bfba227f
AI
415#define malloc e_malloc
416#define free e_free
417#define realloc e_realloc
418#define calloc e_calloc
419#endif
a6fc3b5c
EZ
420#ifdef _MSC_VER
421#define alloca _alloca
422#else
1cd47f14 423#include <malloc.h>
a6fc3b5c 424#endif
1cd47f14 425
f247498e 426#include <stdlib.h>
3360970a 427#include <sys/stat.h>
3360970a 428
e05aebe9 429/* Define for those source files that do not include enough NT system files. */
3360970a
KH
430#ifndef NULL
431#ifdef __cplusplus
432#define NULL 0
433#else
434#define NULL ((void *)0)
435#endif
436#endif
896c0d8b 437
4a1ba222 438/* For proper declaration of environ. */
bfba227f
AI
439#ifndef sys_nerr
440#define sys_nerr _sys_nerr
441#endif
4a1ba222 442
75ceee05
EZ
443/* This must be after including stdlib.h, which defines putenv on MinGW. */
444#ifdef putenv
445# undef putenv
446#endif
447#define putenv sys_putenv
a16e75cd 448extern int sys_putenv (char *);
75ceee05 449
eef5ce6e 450extern int getloadavg (double *, int);
a68089e4 451extern int getpagesize (void);
eef5ce6e 452
8c0905ac
EZ
453extern void * memrchr (void const *, int, size_t);
454
455
62aba0d4 456#if defined (__MINGW32__)
f247498e
JB
457
458/* Define to 1 if the system has the type `long long int'. */
cb11bd95
EZ
459# ifndef HAVE_LONG_LONG_INT
460# define HAVE_LONG_LONG_INT 1
461# endif
f247498e
JB
462
463/* Define to 1 if the system has the type `unsigned long long int'. */
cb11bd95
EZ
464# ifndef HAVE_UNSIGNED_LONG_LONG_INT
465# define HAVE_UNSIGNED_LONG_LONG_INT 1
466# endif
f247498e 467
62aba0d4 468#endif
f247498e 469
62aba0d4
FP
470#ifdef _MSC_VER
471# if defined(_WIN64)
472typedef __int64 EMACS_INT;
473typedef unsigned __int64 EMACS_UINT;
474# define EMACS_INT_MAX LLONG_MAX
475# define PRIuMAX "llu"
476# define pI "ll"
477/* Fix a bug in MSVC headers : stdint.h */
478# define _INTPTR 2
479# elif defined(_WIN32)
f247498e
JB
480/* Temporarily disable wider-than-pointer integers until they're tested more.
481 Build with CFLAGS='-DWIDE_EMACS_INT' to try them out. */
482
62aba0d4 483# ifdef WIDE_EMACS_INT
f247498e
JB
484
485/* Use pre-C99-style 64-bit integers. */
71f88e00
PE
486typedef __int64 EMACS_INT;
487typedef unsigned __int64 EMACS_UINT;
62aba0d4
FP
488# define EMACS_INT_MAX LLONG_MAX
489# define PRIuMAX "llu"
490# define pI "I64"
491# else
492typedef int EMACS_INT;
493typedef unsigned int EMACS_UINT;
494# define EMACS_INT_MAX LONG_MAX
495# define PRIuMAX "lu"
496# define pI "l"
497# endif
f247498e 498# endif
f247498e
JB
499#endif
500
517d7b9f 501/* We need a little extra space, see ../../lisp/loadup.el. */
ff709c3a 502#define SYSTEM_PURESIZE_EXTRA 50000
e3be3bfd 503
34374650
PE
504#define DATA_START get_data_start ()
505
7f470eff
GV
506/* For unexec to work on Alpha systems, we need to put Emacs'
507 initialized data into a separate section from the CRT initialized
508 data (because the Alpha linker freely reorders data variables, even
509 across libraries, so our data and the CRT data get intermingled).
510
511 Starting with MSVC 5.0, we must also place the uninitialized data
512 into its own section. VC5 intermingles uninitialized data from the CRT
513 between Emacs' static uninitialized data and its public uninitialized
514 data. A separate .bss section for Emacs groups both static and
517d7b9f 515 public uninitialized together.
7f470eff 516
517d7b9f 517 Note that unexw32.c relies on this fact, and must be modified
7f470eff
GV
518 accordingly if this section name is changed, or if this pragma is
519 removed. Also, obviously, all files that define initialized data
520 must include config.h to pick up this pragma. */
521
e05aebe9 522/* Names must be < 8 bytes. */
52c7f9ee 523#ifdef _MSC_VER
7f470eff
GV
524#pragma data_seg("EMDATA")
525#pragma bss_seg("EMBSS")
52c7f9ee 526#endif
7f470eff
GV
527
528/* #define FULL_DEBUG */
529/* #define EMACSDEBUG */
530
531#ifdef EMACSDEBUG
532extern void _DebPrint (const char *fmt, ...);
533#define DebPrint(stuff) _DebPrint stuff
534#else
535#define DebPrint(stuff)
536#endif
537
62aba0d4
FP
538#ifdef _MSC_VER
539#if _MSC_VER >= 800 && !defined(__cplusplus)
540/* Unnamed type definition in parentheses.
541 A structure, union, or enumerated type with no name is defined in a
542 parenthetical expression. The type definition is meaningless. */
543#pragma warning(disable:4116)
544/* 'argument' : conversion from 'type1' to 'type2', possible loss of
545 data A floating point type was converted to an integer type. A
546 possible loss of data may have occurred. */
547#pragma warning(disable:4244)
548/* Negative integral constant converted to unsigned type.
549 An expression converts a negative integer constant to an unsigned type.
550 The result of the expression is probably meaningless. */
551#pragma warning(disable:4308)
552#endif
553#endif
17a2cbbd
DC
554#define TERM_HEADER "w32term.h"
555
556
3360970a 557/* ============================================================ */