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