Merging r37048, r37051, r37052, r37055 from the-real-msvc branch
[reactos.git] / reactos / include / reactos / 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
26 #if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)))
27 #define __WINE_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))
28 #else
29 #define __WINE_ALLOC_SIZE(x)
30 #endif
31
32 /* non standard; keep the number high enough (but < 0xff) */
33 #define LANG_ESPERANTO 0x8f
34 #define LANG_WALON 0x90
35 #define LANG_CORNISH 0x91
36 #define LANG_WELSH 0x92
37 #define LANG_BRETON 0x93
38
39 /* FIXME: these are not in the Windows header */
40 #define LANG_GAELIC 0x94
41 #define LANG_MALTESE 0x3a
42 #define LANG_ROMANSH 0x17
43 #define LANG_SAAMI 0x3b
44 #define LANG_LOWER_SORBIAN 0x2e
45 #define LANG_UPPER_SORBIAN 0x2e
46 #define LANG_SUTU 0x30
47 #define LANG_TAJIK 0x28
48 #define LANG_TSONGA 0x31
49 #define LANG_TSWANA 0x32
50 #define LANG_VENDA 0x33
51 #define LANG_XHOSA 0x34
52 #define LANG_ZULU 0x35
53
54 #define WINE_UNUSED __attribute__((unused))
55
56 #endif /* __WINE_WINNT_H */