Avoid using uninitialized variables
[reactos.git] / reactos / include / wine / winnt.h
1 /*
2 * Win32 definitions for Windows NT
3 *
4 * Copyright 1996 Alexandre Julliard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #ifndef __WINE_WINNT_H
22 #define __WINE_WINNT_H
23
24 #include_next <winnt.h>
25 #include <w32api.h>
26 #include <stddef.h>
27
28 /* non standard; keep the number high enough (but < 0xff) */
29 #define LANG_ESPERANTO 0x8f
30 #define LANG_WALON 0x90
31 #define LANG_CORNISH 0x91
32 #define LANG_WELSH 0x92
33 #define LANG_BRETON 0x93
34
35 /* FIXME: these are not in the Windows header */
36 #define LANG_GAELIC 0x3c
37 #define LANG_MALTESE 0x3a
38 #define LANG_MAORI 0x28
39 #define LANG_RHAETO_ROMANCE 0x17
40 #define LANG_SAAMI 0x3b
41 #define LANG_SORBIAN 0x2e
42 #define LANG_SUTU 0x30
43 #define LANG_TSONGA 0x31
44 #define LANG_TSWANA 0x32
45 #define LANG_VENDA 0x33
46 #define LANG_XHOSA 0x34
47 #define LANG_ZULU 0x35
48
49 #define WINE_UNUSED __attribute__((unused))
50
51 #endif /* __WINE_WINNT_H */