Release 960506
[wine.git] / include / winnt.h
blobb72a44d8c38fd3631aa2a61481437265a8f28979
1 /*
2 * Win32 definitions for Windows NT
4 * Copyright 1996 Alexandre Julliard
5 */
7 #ifndef __WINE_WINNT_H
8 #define __WINE_WINNT_H
10 /* Heap flags */
11 #define HEAP_NO_SERIALIZE 0x00000001
12 #define HEAP_GROWABLE 0x00000002
13 #define HEAP_GENERATE_EXCEPTIONS 0x00000004
14 #define HEAP_ZERO_MEMORY 0x00000008
15 #define HEAP_REALLOC_IN_PLACE_ONLY 0x00000010
16 #define HEAP_TAIL_CHECKING_ENABLED 0x00000020
17 #define HEAP_FREE_CHECKING_ENABLED 0x00000040
18 #define HEAP_DISABLE_COALESCE_ON_FREE 0x00000080
19 #define HEAP_CREATE_ALIGN_16 0x00010000
20 #define HEAP_CREATE_ENABLE_TRACING 0x00020000
23 #endif /* __WINE_WINNT_H */