| * Copyright 2001 Francois Gouget. |
| #define __WINE_USE_MSVCRT |
| #define MSVCRT(x) MSVCRT_##x |
| /* heap function constants */ |
| #ifndef MSVCRT_SIZE_T_DEFINED |
| typedef unsigned int MSVCRT(size_t); |
| #define MSVCRT_SIZE_T_DEFINED |
| void* _alloca(MSVCRT(size_t)); |
| void* _expand(void*,MSVCRT(size_t)); |
| int _heapadd(void*,MSVCRT(size_t)); |
| int _heapset(unsigned int); |
| MSVCRT(size_t) _heapused(MSVCRT(size_t)*,MSVCRT(size_t)*); |
| int _heapwalk(_HEAPINFO*); |
| MSVCRT(size_t) _msize(void*); |
| void* MSVCRT(calloc)(MSVCRT(size_t),MSVCRT(size_t)); |
| void MSVCRT(free)(void*); |
| void* MSVCRT(malloc)(MSVCRT(size_t)); |
| void* MSVCRT(realloc)(void*,MSVCRT(size_t)); |
| #ifndef USE_MSVCRT_PREFIX |
| #endif /* USE_MSVCRT_PREFIX */ |
| #endif /* __WINE_MALLOC_H */ |