Add INVALID_ATOM and MAXINTATOM to winbase.h.
[wine] / include / windows.h
1 #ifndef __WINE_WINDOWS_H
2 #define __WINE_WINDOWS_H
3
4 #ifdef __WINE__
5 #error Wine should not include windows.h internally
6 #endif
7
8 #if defined(RC_INVOKED) && !defined(NOWINRES)
9 #include "winresrc.h"
10 #else /* RC_INVOKED && !NOWINRES */
11
12 /* All the basic includes */
13 /* #include "excpt.h" */
14 #include "windef.h"
15 #include "winbase.h"
16 #include "wingdi.h"
17 #include "winuser.h"
18 #include "winnls.h"
19 #include "wincon.h"
20 #include "winver.h"
21 #include "winreg.h"
22 #include "winnetwk.h"
23
24 /* Not so essential ones */
25 #ifndef WIN32_LEAN_AND_MEAN
26
27 #include "cderr.h"
28 #include "dde.h"
29 #include "ddeml.h"
30 #include "dlgs.h"
31 #include "lzexpand.h"
32 #include "mmsystem.h"
33 /* #include "nb30.h" */
34 #include "rpc.h"
35 #include "shellapi.h"
36 /* #include "winperf.h" */
37
38 #include "winsock2.h"
39 /* #include "mswsock.h" */
40
41 #ifndef NOCRYPT
42 #include "wincrypt.h"
43 #endif /* !NOCRYPT */
44
45 #ifndef NOGDI
46 #include "commdlg.h"
47 #include "winspool.h"
48 #ifdef INC_OLE1
49 #include "ole.h"
50 #else
51 #include "ole2.h"
52 #endif
53 #endif /* !NOGDI */
54
55 #endif /* !WIN32_LEAN_AND_MEAN */
56
57 #ifdef INC_OLE2
58 #include "ole2.h"
59 #endif /* INC_OLE2 */
60
61 #ifndef NOSERVICE
62 #include "winsvc.h"
63 #endif /* !NOSERVICE */
64
65 #ifndef NOMCX
66 #include "mcx.h"
67 #endif /* !NOMCX */
68
69 #ifndef NOIMM
70 #include "imm.h"
71 #endif /* !NOIMM */
72
73
74 #if 0
75   Where does this belong? Nobody uses this stuff anyway.
76 typedef struct {
77         BYTE i;  /* much more .... */
78 } KANJISTRUCT;
79 typedef KANJISTRUCT *LPKANJISTRUCT;
80 typedef KANJISTRUCT *NPKANJISTRUCT;
81 typedef KANJISTRUCT *PKANJISTRUCT;
82
83 BOOL16      WINAPI CheckMenuRadioButton16(HMENU16,UINT16,UINT16,UINT16,BOOL16);
84 BOOL      WINAPI CheckMenuRadioButton(HMENU,UINT,UINT,UINT,BOOL);
85 WORD        WINAPI WOWHandle16(HANDLE,WOW_HANDLE_TYPE);
86
87 #endif /* 0 */
88
89 #endif  /* RC_INVOKED && !NOWINRES */
90 #endif  /* __WINE_WINDOWS_H */