OSDN Git Service

Initial Import
[nethackexpress/trunk.git] / sys / winnt / win32api.h
1 /*      SCCS Id: @(#)win32api.h  3.4     $Date: 2002/07/24 08:25:21 $             */
2 /* Copyright (c) NetHack PC Development Team 1996                 */
3 /* NetHack may be freely redistributed.  See license for details. */
4
5 /*
6  * This header file is used to clear up some discrepencies with Visual C
7  * header files & NetHack before including windows.h, so all NetHack
8  * files should include "win32api.h" rather than <windows.h>.
9  */
10 # if defined(_MSC_VER)
11 # undef strcmpi
12 # undef min
13 # undef max
14 # pragma warning(disable:4142)  /* Warning, Benign redefinition of type */
15 # pragma pack(8)
16 # endif
17
18 #define WIN32_LEAN_AND_MEAN
19
20 #include <windows.h>
21 #include <commctrl.h>
22
23 # if defined(_MSC_VER)
24 # pragma pack()
25 # endif
26
27 /*win32api.h*/