Work around problems on Solaris if config.h is not included.
[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 /* All the basic includes */
9 /* #include "excpt.h" */
10 #include "windef.h"
11 #include "winbase.h"
12 #include "wingdi.h"
13 #include "winuser.h"
14 #include "winnls.h"
15 #include "wincon.h"
16 #include "winver.h"
17 #include "winreg.h"
18 #include "winnetwk.h"
19
20 /* Not so essential ones */
21 #ifndef WIN32_LEAN_AND_MEAN
22
23 #include "cderr.h"
24 #include "dde.h"
25 #include "ddeml.h"
26 #include "dlgs.h"
27 #include "lzexpand.h"
28 #include "mmsystem.h"
29 /* #include "nb30.h" */
30 #include "rpc.h"
31 #include "shellapi.h"
32 /* #include "winperf.h" */
33
34 #include "winsock2.h"
35 /* #include "mswsock.h" */
36
37 #ifndef NOCRYPT
38 #include "wincrypt.h"
39 #endif /* !NOCRYPT */
40
41 #ifndef NOGDI
42 #include "commdlg.h"
43 #include "winspool.h"
44 #ifdef INC_OLE1
45 #include "ole.h"
46 #else
47 #include "ole2.h"
48 #endif
49 #endif /* !NOGDI */
50
51 #endif /* !WIN32_LEAN_AND_MEAN */
52
53 #ifdef INC_OLE2
54 #include "ole2.h"
55 #endif /* INC_OLE2 */
56
57 #ifndef NOSERVICE
58 #include "winsvc.h"
59 #endif /* !NOSERVICE */
60
61 #ifndef NOMCX
62 #include "mcx.h"
63 #endif /* !NOMCX */
64
65 #ifndef NOIMM
66 #include "imm.h"
67 #endif /* !NOIMM */
68
69
70 #if 0
71   Where does this belong? Nobody uses this stuff anyway.
72 typedef struct {
73         BYTE i;  /* much more .... */
74 } KANJISTRUCT;
75 typedef KANJISTRUCT *LPKANJISTRUCT;
76 typedef KANJISTRUCT *NPKANJISTRUCT;
77 typedef KANJISTRUCT *PKANJISTRUCT;
78
79 BOOL16      WINAPI CheckMenuRadioButton16(HMENU16,UINT16,UINT16,UINT16,BOOL16);
80 BOOL      WINAPI CheckMenuRadioButton(HMENU,UINT,UINT,UINT,BOOL);
81 WORD        WINAPI WOWHandle16(HANDLE,WOW_HANDLE_TYPE);
82
83 #endif /* 0 */
84
85 #endif  /* __WINE_WINDOWS_H */