Release 960516
[wine.git] / include / winnt.h
blob4a5d3bf05bffcd608c93108d31a71fb81c1b9bd5
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
21 #define HEAP_WINE_SEGPTR 0x01000000 /* Not a Win32 flag */
22 #define HEAP_WINE_CODESEG 0x02000000 /* Not a Win32 flag */
24 #endif /* __WINE_WINNT_H */