X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=include%2Fntos%2Fheap.h;h=9eb17962f2aa81fca1204679c8d5fcd49cb42eba;hp=391d638d572362f20b39e82caef191601b9cbcaf;hb=03af8776dc14167b078911b0c7c5327d1bcdd128;hpb=f4077c1bf64ef89d74a8d4822d2d7aada3ba9927 diff --git a/include/ntos/heap.h b/include/ntos/heap.h index 391d638..9eb1796 100644 --- a/include/ntos/heap.h +++ b/include/ntos/heap.h @@ -9,16 +9,20 @@ * 27/06/00: Created */ - #ifndef __INCLUDE_HEAP_H #define __INCLUDE_HEAP_H /* HeapAlloc, HeapReAlloc */ +#define HEAP_NO_VALLOC (64) + +#ifndef __USE_W32API + #define HEAP_GENERATE_EXCEPTIONS (4) #define HEAP_NO_SERIALIZE (1) #define HEAP_ZERO_MEMORY (8) #define HEAP_REALLOC_IN_PLACE_ONLY (16) -#define HEAP_GROWABLE (2) -#define HEAP_NO_VALLOC (64) +#define HEAP_GROWABLE (32) + +#endif /* !__USE_W32API */ #endif /* __INCLUDE_HEAP_H */