branch update for HEAD-2003021201
[reactos.git] / include / ntos / heap.h
index 391d638..9eb1796 100644 (file)
@@ -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 */