35 #define WIN32_LEAN_AND_MEAN
39 #define malloc(x) HeapAlloc(GetProcessHeap(), 0, (x))
40 #define calloc(x, y) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (x)*(y))
41 #define free(x) HeapFree(GetProcessHeap(), 0, (x))
42 #define realloc(x, y) HeapReAlloc(GetProcessHeap(), 0, x, y)
57 #define malloc(x) PR_Malloc(x)
58 #define realloc(x, y) PR_Realloc((x), (y))
59 #define calloc(x, y) PR_Calloc((x),(y))
60 #define free(x) PR_Free(x)