- Properly define dummy unions/structs for MSVC too.
[reactos.git] / reactos / include / ddk / ntdef.h
1 #ifndef _NTDEF_H
2 #define _NTDEF_H
3
4 //
5 // Dependencies
6 //
7 #include <ctype.h>
8 #include <basetsd.h>
9 #include <excpt.h>
10 #include <sdkddkver.h>
11
12 // FIXME: Should we include these here?
13 #include <stdarg.h>
14 #include <string.h>
15
16
17 typedef unsigned long POINTER_64; // FIXME! HACK!!!
18
19
20
21 //
22 // Pseudo Modifiers for Input Parameters
23 //
24 #ifndef IN
25 #define IN
26 #endif
27
28 #ifndef OUT
29 #define OUT
30 #endif
31
32 #ifndef OPTIONAL
33 #define OPTIONAL
34 #endif
35
36 #ifndef NOTHING
37 #define NOTHING
38 #endif
39
40 #ifndef CRITICAL
41 #define CRITICAL
42 #endif
43
44 #ifndef FAR
45 #define FAR
46 #endif
47
48
49 //
50 // Defines the "size" of an any-size array
51 //
52 #ifndef ANYSIZE_ARRAY
53 #define ANYSIZE_ARRAY 1
54 #endif
55
56 //
57 // Constant modifier
58 //
59 #ifndef CONST
60 #define CONST const
61 #endif
62
63 //
64 // TRUE/FALSE
65 //
66 #define FALSE 0
67 #define TRUE 1
68
69 //
70 // NULL/NULL64
71 //
72 #ifndef NULL
73 #ifdef __cplusplus
74 #define NULL 0
75 #define NULL64 0
76 #else
77 #define NULL ((void *)0)
78 #define NULL64 ((void * POINTER_64)0)
79 #endif
80 #endif // NULL
81
82
83 //
84 // FIXME
85 // We should use the -fms-extensions compiler flag for gcc,
86 // and clean up the mess.
87 //
88 #ifndef NONAMELESSUNION
89 #ifdef __GNUC__
90 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
91 #define _ANONYMOUS_UNION __extension__
92 #define _ANONYMOUS_STRUCT __extension__
93 #else
94 #if defined(__cplusplus)
95 #define _ANONYMOUS_UNION __extension__
96 #endif /* __cplusplus */
97 #endif /* __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) */
98 #elif defined(__WATCOMC__) || defined(_MSC_VER)
99 #define _ANONYMOUS_UNION
100 #define _ANONYMOUS_STRUCT
101 #endif /* __GNUC__/__WATCOMC__ */
102 #endif /* NONAMELESSUNION */
103
104 #ifndef _ANONYMOUS_UNION
105 #define _ANONYMOUS_UNION
106 #define _UNION_NAME(x) x
107 #define DUMMYUNIONNAME u
108 #define DUMMYUNIONNAME2 u2
109 #define DUMMYUNIONNAME3 u3
110 #define DUMMYUNIONNAME4 u4
111 #define DUMMYUNIONNAME5 u5
112 #define DUMMYUNIONNAME6 u6
113 #define DUMMYUNIONNAME7 u7
114 #define DUMMYUNIONNAME8 u8
115 #else
116 #define _UNION_NAME(x)
117 #define DUMMYUNIONNAME
118 #define DUMMYUNIONNAME2
119 #define DUMMYUNIONNAME3
120 #define DUMMYUNIONNAME4
121 #define DUMMYUNIONNAME5
122 #define DUMMYUNIONNAME6
123 #define DUMMYUNIONNAME7
124 #define DUMMYUNIONNAME8
125 #endif
126
127 #ifndef _ANONYMOUS_STRUCT
128 #define _ANONYMOUS_STRUCT
129 #define _STRUCT_NAME(x) x
130 #define DUMMYSTRUCTNAME s
131 #define DUMMYSTRUCTNAME2 s2
132 #define DUMMYSTRUCTNAME3 s3
133 #else
134 #define _STRUCT_NAME(x)
135 #define DUMMYSTRUCTNAME
136 #define DUMMYSTRUCTNAME2
137 #define DUMMYSTRUCTNAME3
138 #endif
139
140
141
142 // FIXME
143 #undef UNALIGNED
144 #define UNALIGNED
145 #define RESTRICTED_POINTER
146
147 //
148 // Returns the base address of a structure from a structure member
149 //
150 #ifndef CONTAINING_RECORD
151 #define CONTAINING_RECORD(address, type, field) \
152 ((type *)(((ULONG_PTR)address) - (ULONG_PTR)(&(((type *)0)->field))))
153 #endif
154
155 //
156 // Returns the byte offset of the specified structure's member
157 //
158 #ifndef __GNUC__
159 #define FIELD_OFFSET(Type, Field) ((LONG)(LONG_PTR)&(((Type*) 0)->Field))
160 #else
161 #define FIELD_OFFSET(Type, Field) __builtin_offsetof(Type, Field)
162 #endif
163
164 //
165 // Returns the type's alignment
166 //
167 #if defined(_MSC_VER) && (_MSC_VER >= 1300)
168 #define TYPE_ALIGNMENT(t) __alignof(t)
169 #else
170 #define TYPE_ALIGNMENT(t) FIELD_OFFSET( struct { char x; t test; }, test )
171 #endif
172
173 //
174 // Calling Conventions
175 //
176 #if defined(_M_IX86)
177 #define FASTCALL __fastcall
178 #else
179 #define FASTCALL
180 #endif
181
182 #define NTAPI __stdcall
183
184 //
185 // Used by the DDK exclusively , don't put in drivers
186 //
187 #define DDKAPI __stdcall // Use NTAPI instead
188 #define DDKCDECLAPI __cdecl // Just use __cdecl
189
190 //
191 // Import and Export Specifiers
192 //
193
194 // Done the same way as in windef.h for now
195 #define DECLSPEC_IMPORT __declspec(dllimport)
196 #define DECLSPEC_EXPORT __declspec(dllexport)
197 #define DECLSPEC_NORETURN __declspec(noreturn)
198
199
200 #ifndef DECLSPEC_ADDRSAFE
201 #if (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64))
202 #define DECLSPEC_ADDRSAFE __declspec(address_safe)
203 #else
204 #define DECLSPEC_ADDRSAFE
205 #endif
206 #endif
207
208 #if !defined(_NTSYSTEM_)
209 #define NTSYSAPI DECLSPEC_IMPORT
210 #define NTSYSCALLAPI DECLSPEC_IMPORT
211 #else
212 #define NTSYSAPI
213 #if defined(_NTDLLBUILD_)
214 #define NTSYSCALLAPI
215 #else
216 #define NTSYSCALLAPI DECLSPEC_ADDRSAFE
217 #endif
218 #endif
219
220 //
221 // Inlines
222 //
223 #ifndef FORCEINLINE
224 #if (_MSC_VER >= 1200)
225 #define FORCEINLINE __forceinline
226 #elif (_MSC_VER)
227 #define FORCEINLINE __inline
228 #else
229 #define FORCEINLINE static __inline__ __attribute__((always_inline))
230 #endif
231 #endif
232
233 #ifndef DECLSPEC_NOINLINE
234 #if (_MSC_VER >= 1300)
235 #define DECLSPEC_NOINLINE __declspec(noinline)
236 #elif defined(__GNUC__)
237 #define DECLSPEC_NOINLINE __attribute__((noinline))
238 #else
239 #define DECLSPEC_NOINLINE
240 #endif
241 #endif
242
243 #if !defined(_M_CEE_PURE)
244 #define NTAPI_INLINE NTAPI
245 #else
246 #define NTAPI_INLINE
247 #endif
248
249 //
250 // Use to specify structure alignment
251 //
252 #ifndef DECLSPEC_ALIGN
253 #if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
254 #define DECLSPEC_ALIGN(x) __declspec(align(x))
255 #elif defined(__GNUC__)
256 #define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
257 #else
258 #define DECLSPEC_ALIGN(x)
259 #endif
260 #endif
261
262
263
264 //
265 // Use to silence unused variable warnings when it is intentional
266 //
267 #define UNREFERENCED_PARAMETER(P) {(P)=(P);}
268 #define UNREFERENCED_LOCAL_VARIABLE(L) {(L)=(L);}
269 #define DBG_UNREFERENCED_PARAMETER(P)
270 #define DBG_UNREFERENCED_LOCAL_VARIABLE(L)
271
272
273
274 //
275 // min/max helper macros
276 //
277 #ifndef NOMINMAX
278
279 #ifndef min
280 #define min(a,b) (((a) < (b)) ? (a) : (b))
281 #endif
282
283 #ifndef max
284 #define max(a,b) (((a) > (b)) ? (a) : (b))
285 #endif
286
287 #endif // NOMINMAX
288
289
290
291 //
292 // Tell windef.h that we have defined some basic types
293 //
294 #define BASETYPES
295
296 //
297 // Void Pointers
298 //
299 typedef void *PVOID;
300 //typedef void * POINTER_64 PVOID64;
301 typedef PVOID PVOID64; // FIXME!
302
303 //
304 // Handle Type
305 //
306 #ifdef STRICT
307 typedef void *HANDLE;
308 #define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n
309 #else
310 typedef PVOID HANDLE;
311 #define DECLARE_HANDLE(n) typedef HANDLE n
312 #endif
313 typedef HANDLE *PHANDLE;
314
315 //
316 // Upper-Case Versions of Some Standard C Types
317 //
318 #ifndef VOID
319 #define VOID void
320 typedef char CHAR;
321 typedef short SHORT;
322 typedef long LONG;
323 #if !defined(MIDL_PASS)
324 typedef int INT;
325 #endif
326 #endif
327 typedef double DOUBLE;
328
329 //
330 // Used to store a non-float 8 byte aligned structure
331 //
332 typedef struct _QUAD
333 {
334 _ANONYMOUS_UNION union
335 {
336 __int64 UseThisFieldToCopy;
337 double DoNotUseThisField;
338 };
339 } QUAD, *PQUAD, UQUAD, *PUQUAD;
340
341
342 //
343 // Unsigned Types
344 //
345 typedef unsigned char UCHAR, *PUCHAR;
346 typedef unsigned short USHORT, *PUSHORT;
347 typedef unsigned long ULONG, *PULONG;
348 typedef CONST UCHAR *PCUCHAR;
349 typedef CONST USHORT *PCUSHORT;
350 typedef CONST ULONG *PCULONG;
351
352 typedef UCHAR FCHAR;
353 typedef USHORT FSHORT;
354 typedef ULONG FLONG;
355 typedef UCHAR BOOLEAN;
356 typedef BOOLEAN *PBOOLEAN;
357
358 //
359 // Signed Types
360 //
361 typedef SHORT *PSHORT;
362 typedef LONG *PLONG;
363
364 typedef LONG NTSTATUS;
365 typedef NTSTATUS *PNTSTATUS;
366
367 typedef signed char SCHAR;
368 typedef SCHAR *PSCHAR;
369
370 #ifndef _HRESULT_DEFINED
371 #define _HRESULT_DEFINED
372 typedef LONG HRESULT;
373 #endif
374
375 //
376 // 64-bit types
377 //
378 typedef __int64 LONGLONG, *PLONGLONG;
379 typedef unsigned __int64 ULONGLONG, *PULONGLONG;
380 typedef ULONGLONG DWORDLONG, *PDWORDLONG;
381
382 //
383 // Update Sequence Number
384 //
385 typedef LONGLONG USN;
386
387
388 //
389 // ANSI (Multi-byte Character) types
390 //
391 typedef CHAR *PCHAR, *LPCH, *PCH;
392 typedef CONST CHAR *LPCCH, *PCCH;
393 typedef CHAR *NPSTR, *LPSTR, *PSTR;
394 typedef PSTR *PZPSTR;
395 typedef CONST PSTR *PCZPSTR;
396 typedef CONST CHAR *LPCSTR, *PCSTR;
397 typedef PCSTR *PZPCSTR;
398
399 //
400 // Pointer to an Asciiz string
401 //
402 typedef CHAR *PSZ;
403 typedef CONST char *PCSZ;
404
405 //
406 // UNICODE (Wide Character) types
407 //
408 typedef wchar_t WCHAR;
409 typedef WCHAR *PWCHAR, *LPWCH, *PWCH;
410 typedef CONST WCHAR *LPCWCH, *PCWCH;
411 typedef WCHAR *NWPSTR, *LPWSTR, *PWSTR;
412 typedef PWSTR *PZPWSTR;
413 typedef CONST PWSTR *PCZPWSTR;
414 typedef WCHAR UNALIGNED *LPUWSTR, *PUWSTR;
415 typedef CONST WCHAR *LPCWSTR, *PCWSTR;
416 typedef PCWSTR *PZPCWSTR;
417 typedef CONST WCHAR UNALIGNED *LPCUWSTR, *PCUWSTR;
418
419 //
420 // Cardinal Data Types
421 //
422 typedef char CCHAR, *PCCHAR;
423 typedef short CSHORT, *PCSHORT;
424 typedef ULONG CLONG, *PCLONG;
425
426 //
427 // NLS basics (Locale and Language Ids)
428 //
429 typedef ULONG LCID;
430 typedef PULONG PLCID;
431 typedef USHORT LANGID;
432
433
434
435 //
436 // Large Integer Unions
437 //
438 #if defined(MIDL_PASS)
439 typedef struct _LARGE_INTEGER {
440 #else
441 typedef union _LARGE_INTEGER {
442 _ANONYMOUS_STRUCT struct
443 {
444 ULONG LowPart;
445 LONG HighPart;
446 } DUMMYSTRUCTNAME;
447 struct
448 {
449 ULONG LowPart;
450 LONG HighPart;
451 } u;
452 #endif //MIDL_PASS
453 LONGLONG QuadPart;
454 } LARGE_INTEGER, *PLARGE_INTEGER;
455
456 #if defined(MIDL_PASS)
457 typedef struct _ULARGE_INTEGER {
458 #else
459 typedef union _ULARGE_INTEGER {
460 _ANONYMOUS_STRUCT struct
461 {
462 ULONG LowPart;
463 ULONG HighPart;
464 } DUMMYSTRUCTNAME;
465 struct
466 {
467 ULONG LowPart;
468 ULONG HighPart;
469 } u;
470 #endif //MIDL_PASS
471 ULONGLONG QuadPart;
472 } ULARGE_INTEGER, *PULARGE_INTEGER;
473
474 //
475 // Physical Addresses are always treated as 64-bit wide
476 //
477 typedef LARGE_INTEGER PHYSICAL_ADDRESS, *PPHYSICAL_ADDRESS;
478
479
480
481 //
482 // Locally Unique Identifier
483 //
484 typedef struct _LUID {
485 ULONG LowPart;
486 LONG HighPart;
487 } LUID, *PLUID;
488
489
490
491 //
492 // Native API Return Value Macros
493 //
494 #define NT_SUCCESS(Status) (((NTSTATUS)(Status)) >= 0)
495 #define NT_INFORMATION(Status) ((((ULONG)(Status)) >> 30) == 1)
496 #define NT_WARNING(Status) ((((ULONG)(Status)) >> 30) == 2)
497 #define NT_ERROR(Status) ((((ULONG)(Status)) >> 30) == 3)
498
499
500
501 //
502 // String Types
503 //
504 typedef struct _UNICODE_STRING {
505 USHORT Length;
506 USHORT MaximumLength;
507 PWSTR Buffer;
508 } UNICODE_STRING, *PUNICODE_STRING;
509 typedef const UNICODE_STRING* PCUNICODE_STRING;
510 #define UNICODE_NULL ((WCHAR)0)
511
512 typedef struct _CSTRING {
513 USHORT Length;
514 USHORT MaximumLength;
515 CONST CHAR *Buffer;
516 } CSTRING, *PCSTRING;
517 #define ANSI_NULL ((CHAR)0)
518
519 typedef struct _STRING {
520 USHORT Length;
521 USHORT MaximumLength;
522 PCHAR Buffer;
523 } STRING, *PSTRING;
524
525 typedef STRING ANSI_STRING;
526 typedef PSTRING PANSI_STRING;
527 typedef STRING OEM_STRING;
528 typedef PSTRING POEM_STRING;
529 typedef CONST STRING* PCOEM_STRING;
530 typedef STRING CANSI_STRING;
531 typedef PSTRING PCANSI_STRING;
532
533
534
535 //
536 // LangID and NLS
537 //
538 #define MAKELANGID(p, s) ((((USHORT)(s)) << 10) | (USHORT)(p))
539 #define PRIMARYLANGID(lgid) ((USHORT)(lgid) & 0x3ff)
540 #define SUBLANGID(lgid) ((USHORT)(lgid) >> 10)
541
542 #define NLS_VALID_LOCALE_MASK 0x000fffff
543
544 #define MAKELCID(lgid, srtid) ((ULONG)((((ULONG)((USHORT)(srtid))) << 16) | \
545 ((ULONG)((USHORT)(lgid)))))
546 #define MAKESORTLCID(lgid, srtid, ver) \
547 ((ULONG)((MAKELCID(lgid, srtid)) | \
548 (((ULONG)((USHORT)(ver))) << 20)))
549 #define LANGIDFROMLCID(lcid) ((USHORT)(lcid))
550 #define SORTIDFROMLCID(lcid) ((USHORT)((((ULONG)(lcid)) >> 16) & 0xf))
551 #define SORTVERSIONFROMLCID(lcid) ((USHORT)((((ULONG)(lcid)) >> 20) & 0xf))
552
553
554
555 //
556 // Object Attributes
557 //
558 typedef struct _OBJECT_ATTRIBUTES {
559 ULONG Length;
560 HANDLE RootDirectory;
561 PUNICODE_STRING ObjectName;
562 ULONG Attributes;
563 PVOID SecurityDescriptor;
564 PVOID SecurityQualityOfService;
565 } OBJECT_ATTRIBUTES, *POBJECT_ATTRIBUTES;
566 typedef CONST OBJECT_ATTRIBUTES *PCOBJECT_ATTRIBUTES;
567
568 //
569 // Values for the Attributes member
570 //
571 #define OBJ_INHERIT 0x00000002
572 #define OBJ_PERMANENT 0x00000010
573 #define OBJ_EXCLUSIVE 0x00000020
574 #define OBJ_CASE_INSENSITIVE 0x00000040
575 #define OBJ_OPENIF 0x00000080
576 #define OBJ_OPENLINK 0x00000100
577 #define OBJ_KERNEL_HANDLE 0x00000200
578 #define OBJ_FORCE_ACCESS_CHECK 0x00000400
579 #define OBJ_VALID_ATTRIBUTES 0x000007F2
580
581 //
582 // Helper Macro
583 //
584 #define InitializeObjectAttributes(p,n,a,r,s) { \
585 (p)->Length = sizeof(OBJECT_ATTRIBUTES); \
586 (p)->RootDirectory = (r); \
587 (p)->Attributes = (a); \
588 (p)->ObjectName = (n); \
589 (p)->SecurityDescriptor = (s); \
590 (p)->SecurityQualityOfService = NULL; \
591 }
592
593
594
595 //
596 // Product Types
597 //
598 typedef enum _NT_PRODUCT_TYPE {
599 NtProductWinNt = 1,
600 NtProductLanManNt,
601 NtProductServer
602 } NT_PRODUCT_TYPE, *PNT_PRODUCT_TYPE;
603
604
605
606 //
607 // Doubly Linked Lists
608 //
609 typedef struct _LIST_ENTRY {
610 struct _LIST_ENTRY *Flink;
611 struct _LIST_ENTRY *Blink;
612 } LIST_ENTRY, *PLIST_ENTRY, *RESTRICTED_POINTER PRLIST_ENTRY;
613
614 typedef struct LIST_ENTRY32
615 {
616 ULONG Flink;
617 ULONG Blink;
618 } LIST_ENTRY32, *PLIST_ENTRY32;
619
620 typedef struct LIST_ENTRY64
621 {
622 ULONGLONG Flink;
623 ULONGLONG Blink;
624 } LIST_ENTRY64, *PLIST_ENTRY64;
625
626 //
627 // Singly Linked Lists
628 //
629 typedef struct _SINGLE_LIST_ENTRY {
630 struct _SINGLE_LIST_ENTRY *Next;
631 } SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY;
632
633
634
635 //
636 // Helper Macros
637 //
638 #define RTL_CONSTANT_STRING(s) { sizeof(s)-sizeof((s)[0]), sizeof(s), s }
639
640 #define RTL_FIELD_SIZE(type, field) (sizeof(((type *)0)->field))
641
642 #define RTL_NUMBER_OF_V1(A) (sizeof(A)/sizeof((A)[0]))
643 #define RTL_NUMBER_OF_V2(A) RTL_NUMBER_OF_V1(A)
644 #ifdef ENABLE_RTL_NUMBER_OF_V2
645 #define RTL_NUMBER_OF(A) RTL_NUMBER_OF_V2(A)
646 #else
647 #define RTL_NUMBER_OF(A) RTL_NUMBER_OF_V1(A)
648 #endif
649 #define ARRAYSIZE(A) RTL_NUMBER_OF_V2(A)
650
651
652
653 //
654 // Type Limits
655 //
656 #define MINCHAR 0x80
657 #define MAXCHAR 0x7f
658 #define MINSHORT 0x8000
659 #define MAXSHORT 0x7fff
660 #define MINLONG 0x80000000
661 #define MAXLONG 0x7fffffff
662 #define MAXUCHAR 0xff
663 #define MAXUSHORT 0xffff
664 #define MAXULONG 0xffffffff
665 #define MAXLONGLONG (0x7fffffffffffffffLL)
666
667
668
669 //
670 // Multiplication and Shift Operations
671 //
672 #define Int32x32To64(a,b) ((LONGLONG)(a)*(LONGLONG)(b))
673 #define UInt32x32To64(a,b) ((DWORDLONG)(a)*(DWORDLONG)(b))
674 #define Int64ShllMod32(a,b) ((DWORDLONG)(a)<<(b))
675 #define Int64ShraMod32(a,b) ((LONGLONG)(a)>>(b))
676 #define Int64ShrlMod32(a,b) ((DWORDLONG)(a)>>(b))
677
678
679
680 //
681 // C_ASSERT Definition
682 //
683 #define __C_ASSERT_JOIN(X, Y) __C_ASSERT_DO_JOIN(X, Y)
684 #define __C_ASSERT_DO_JOIN(X, Y) __C_ASSERT_DO_JOIN2(X, Y)
685 #define __C_ASSERT_DO_JOIN2(X, Y) X##Y
686 #define C_ASSERT(e) typedef char __C_ASSERT_JOIN(__C_ASSERT__, __LINE__)[(e) ? 1 : -1]
687
688
689
690 //
691 // Primary language IDs.
692 //
693 #define LANG_NEUTRAL 0x00
694 #define LANG_INVARIANT 0x7f
695
696 #define LANG_AFRIKAANS 0x36
697 #define LANG_ALBANIAN 0x1c
698 #define LANG_ALSATIAN 0x84
699 #define LANG_AMHARIC 0x5e
700 #define LANG_ARABIC 0x01
701 #define LANG_ARMENIAN 0x2b
702 #define LANG_ASSAMESE 0x4d
703 #define LANG_AZERI 0x2c
704 #define LANG_BASHKIR 0x6d
705 #define LANG_BASQUE 0x2d
706 #define LANG_BELARUSIAN 0x23
707 #define LANG_BENGALI 0x45
708 #define LANG_BRETON 0x7e
709 #define LANG_BOSNIAN 0x1a
710 #define LANG_BOSNIAN_NEUTRAL 0x781a
711 #define LANG_BULGARIAN 0x02
712 #define LANG_CATALAN 0x03
713 #define LANG_CHINESE 0x04
714 #define LANG_CHINESE_SIMPLIFIED 0x04
715 #define LANG_CHINESE_TRADITIONAL 0x7c04
716 #define LANG_CORSICAN 0x83
717 #define LANG_CROATIAN 0x1a
718 #define LANG_CZECH 0x05
719 #define LANG_DANISH 0x06
720 #define LANG_DARI 0x8c
721 #define LANG_DIVEHI 0x65
722 #define LANG_DUTCH 0x13
723 #define LANG_ENGLISH 0x09
724 #define LANG_ESTONIAN 0x25
725 #define LANG_FAEROESE 0x38
726 #define LANG_FARSI 0x29
727 #define LANG_FILIPINO 0x64
728 #define LANG_FINNISH 0x0b
729 #define LANG_FRENCH 0x0c
730 #define LANG_FRISIAN 0x62
731 #define LANG_GALICIAN 0x56
732 #define LANG_GEORGIAN 0x37
733 #define LANG_GERMAN 0x07
734 #define LANG_GREEK 0x08
735 #define LANG_GREENLANDIC 0x6f
736 #define LANG_GUJARATI 0x47
737 #define LANG_HAUSA 0x68
738 #define LANG_HEBREW 0x0d
739 #define LANG_HINDI 0x39
740 #define LANG_HUNGARIAN 0x0e
741 #define LANG_ICELANDIC 0x0f
742 #define LANG_IGBO 0x70
743 #define LANG_INDONESIAN 0x21
744 #define LANG_INUKTITUT 0x5d
745 #define LANG_IRISH 0x3c
746 #define LANG_ITALIAN 0x10
747 #define LANG_JAPANESE 0x11
748 #define LANG_KANNADA 0x4b
749 #define LANG_KASHMIRI 0x60
750 #define LANG_KAZAK 0x3f
751 #define LANG_KHMER 0x53
752 #define LANG_KICHE 0x86
753 #define LANG_KINYARWANDA 0x87
754 #define LANG_KONKANI 0x57
755 #define LANG_KOREAN 0x12
756 #define LANG_KYRGYZ 0x40
757 #define LANG_LAO 0x54
758 #define LANG_LATVIAN 0x26
759 #define LANG_LITHUANIAN 0x27
760 #define LANG_LOWER_SORBIAN 0x2e
761 #define LANG_LUXEMBOURGISH 0x6e
762 #define LANG_MACEDONIAN 0x2f
763 #define LANG_MALAY 0x3e
764 #define LANG_MALAYALAM 0x4c
765 #define LANG_MALTESE 0x3a
766 #define LANG_MANIPURI 0x58
767 #define LANG_MAORI 0x81
768 #define LANG_MAPUDUNGUN 0x7a
769 #define LANG_MARATHI 0x4e
770 #define LANG_MOHAWK 0x7c
771 #define LANG_MONGOLIAN 0x50
772 #define LANG_NEPALI 0x61
773 #define LANG_NORWEGIAN 0x14
774 #define LANG_OCCITAN 0x82
775 #define LANG_ORIYA 0x48
776 #define LANG_PASHTO 0x63
777 #define LANG_PERSIAN 0x29
778 #define LANG_POLISH 0x15
779 #define LANG_PORTUGUESE 0x16
780 #define LANG_PUNJABI 0x46
781 #define LANG_QUECHUA 0x6b
782 #define LANG_ROMANIAN 0x18
783 #define LANG_ROMANSH 0x17
784 #define LANG_RUSSIAN 0x19
785 #define LANG_SAMI 0x3b
786 #define LANG_SANSKRIT 0x4f
787 #define LANG_SERBIAN 0x1a
788 #define LANG_SERBIAN_NEUTRAL 0x7c1a
789 #define LANG_SINDHI 0x59
790 #define LANG_SINHALESE 0x5b
791 #define LANG_SLOVAK 0x1b
792 #define LANG_SLOVENIAN 0x24
793 #define LANG_SOTHO 0x6c
794 #define LANG_SPANISH 0x0a
795 #define LANG_SWAHILI 0x41
796 #define LANG_SWEDISH 0x1d
797 #define LANG_SYRIAC 0x5a
798 #define LANG_TAJIK 0x28
799 #define LANG_TAMAZIGHT 0x5f
800 #define LANG_TAMIL 0x49
801 #define LANG_TATAR 0x44
802 #define LANG_TELUGU 0x4a
803 #define LANG_THAI 0x1e
804 #define LANG_TIBETAN 0x51
805 #define LANG_TIGRIGNA 0x73
806 #define LANG_TSWANA 0x32
807 #define LANG_TURKISH 0x1f
808 #define LANG_TURKMEN 0x42
809 #define LANG_UIGHUR 0x80
810 #define LANG_UKRAINIAN 0x22
811 #define LANG_UPPER_SORBIAN 0x2e
812 #define LANG_URDU 0x20
813 #define LANG_UZBEK 0x43
814 #define LANG_VIETNAMESE 0x2a
815 #define LANG_WELSH 0x52
816 #define LANG_WOLOF 0x88
817 #define LANG_XHOSA 0x34
818 #define LANG_YAKUT 0x85
819 #define LANG_YI 0x78
820 #define LANG_YORUBA 0x6a
821 #define LANG_ZULU 0x35
822
823
824
825 #endif /* _NTDEF_H */