blob: 10ad90d80aa1b55f02a6f878dac020cda0612342 [file] [log] [blame]
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00001/*
2 * Copyright (C) the Wine project
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000019#ifndef __WINE_WINDOWS_H
20#define __WINE_WINDOWS_H
21
Patrik Stridvall1ed55772000-11-30 01:31:28 +000022#ifdef __WINE__
23#error Wine should not include windows.h internally
24#endif
25
Francois Gougetfcba6012001-05-07 18:18:33 +000026#if defined(RC_INVOKED) && !defined(NOWINRES)
27#include "winresrc.h"
28#else /* RC_INVOKED && !NOWINRES */
29
Francois Gouget5e4b7de2000-10-13 23:13:01 +000030/* All the basic includes */
Peter Hunnisett73ab6492002-02-25 20:10:35 +000031#include "msvcrt/excpt.h"
Jeremy Whited3e22d92000-02-10 19:03:02 +000032#include "windef.h"
Francois Gougetf324e5e1998-12-26 11:56:22 +000033#include "winbase.h"
Veksler Michael1346a3c1998-12-15 11:15:35 +000034#include "wingdi.h"
35#include "winuser.h"
Francois Gouget5e4b7de2000-10-13 23:13:01 +000036#include "winnls.h"
37#include "wincon.h"
38#include "winver.h"
Michael Veksler17822f41999-02-09 15:46:25 +000039#include "winreg.h"
40#include "winnetwk.h"
Francois Gouget5e4b7de2000-10-13 23:13:01 +000041
42/* Not so essential ones */
43#ifndef WIN32_LEAN_AND_MEAN
44
45#include "cderr.h"
46#include "dde.h"
47#include "ddeml.h"
48#include "dlgs.h"
Michael Veksler17822f41999-02-09 15:46:25 +000049#include "lzexpand.h"
Joshua Thielen24314881999-05-22 16:19:20 +000050#include "mmsystem.h"
Francois Gouget5e4b7de2000-10-13 23:13:01 +000051/* #include "nb30.h" */
52#include "rpc.h"
53#include "shellapi.h"
54/* #include "winperf.h" */
55
Francois Gouget27202312001-11-14 21:26:23 +000056#ifndef WINE_NOWINSOCK
Francois Gouget5e4b7de2000-10-13 23:13:01 +000057#include "winsock2.h"
58/* #include "mswsock.h" */
Francois Gouget27202312001-11-14 21:26:23 +000059#endif /* WINE_NOWINSOCK */
Francois Gouget5e4b7de2000-10-13 23:13:01 +000060
61#ifndef NOCRYPT
62#include "wincrypt.h"
63#endif /* !NOCRYPT */
64
65#ifndef NOGDI
Francois Gouget1789f242000-05-23 04:07:53 +000066#include "commdlg.h"
Francois Gougeta4af44a2000-03-19 12:45:06 +000067#include "winspool.h"
Francois Gouget5e4b7de2000-10-13 23:13:01 +000068#ifdef INC_OLE1
69#include "ole.h"
70#else
71#include "ole2.h"
72#endif
73#endif /* !NOGDI */
74
75#endif /* !WIN32_LEAN_AND_MEAN */
76
77#ifdef INC_OLE2
78#include "ole2.h"
79#endif /* INC_OLE2 */
80
81#ifndef NOSERVICE
82#include "winsvc.h"
83#endif /* !NOSERVICE */
84
85#ifndef NOMCX
86#include "mcx.h"
87#endif /* !NOMCX */
88
89#ifndef NOIMM
90#include "imm.h"
91#endif /* !NOIMM */
92
Veksler Michael1346a3c1998-12-15 11:15:35 +000093
Michael Veksler17822f41999-02-09 15:46:25 +000094#if 0
95 Where does this belong? Nobody uses this stuff anyway.
Alexandre Julliard121bd981993-07-08 17:37:25 +000096typedef struct {
97 BYTE i; /* much more .... */
98} KANJISTRUCT;
99typedef KANJISTRUCT *LPKANJISTRUCT;
100typedef KANJISTRUCT *NPKANJISTRUCT;
101typedef KANJISTRUCT *PKANJISTRUCT;
102
Alexandre Julliarda0b2b1d1997-11-16 17:38:29 +0000103BOOL16 WINAPI CheckMenuRadioButton16(HMENU16,UINT16,UINT16,UINT16,BOOL16);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000104BOOL WINAPI CheckMenuRadioButton(HMENU,UINT,UINT,UINT,BOOL);
105WORD WINAPI WOWHandle16(HANDLE,WOW_HANDLE_TYPE);
Alexandre Julliardd90840e1996-06-11 16:02:08 +0000106
Michael Veksler17822f41999-02-09 15:46:25 +0000107#endif /* 0 */
Alexandre Julliardca22b331996-07-12 19:02:39 +0000108
Francois Gougetfcba6012001-05-07 18:18:33 +0000109#endif /* RC_INVOKED && !NOWINRES */
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000110#endif /* __WINE_WINDOWS_H */