- Fixed the definitions of HEAP_GROWABLE and HEAP_NO_VALLOC.

svn path=/trunk/; revision=12185
This commit is contained in:
Hartmut Birr 2004-12-18 17:30:27 +00:00
parent 4076ea8740
commit 43ccb648b2

View file

@ -13,15 +13,15 @@
#define __INCLUDE_HEAP_H
/* HeapAlloc, HeapReAlloc */
#define HEAP_NO_VALLOC (64)
#define HEAP_NO_VALLOC (256)
#ifndef __USE_W32API
#define HEAP_GENERATE_EXCEPTIONS (4)
#define HEAP_NO_SERIALIZE (1)
#define HEAP_GROWABLE (2)
#define HEAP_GENERATE_EXCEPTIONS (4)
#define HEAP_ZERO_MEMORY (8)
#define HEAP_REALLOC_IN_PLACE_ONLY (16)
#define HEAP_GROWABLE (32)
#endif /* !__USE_W32API */