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