goat3d

view libs/openctm/liblzma/Alloc.h @ 14:188c697b3b49

- added a document describing the goat3d file format chunk hierarchy - started an alternative XML-based file format - added the openctm library
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 26 Sep 2013 04:47:05 +0300
parents
children
line source
1 /* Alloc.h -- Memory allocation functions
2 2008-03-13
3 Igor Pavlov
4 Public domain */
6 #ifndef __COMMON_ALLOC_H
7 #define __COMMON_ALLOC_H
9 #include <stddef.h>
11 #include "NameMangle.h"
13 void *MyAlloc(size_t size);
14 void MyFree(void *address);
16 #ifdef _WIN32
18 void SetLargePageSize();
20 void *MidAlloc(size_t size);
21 void MidFree(void *address);
22 void *BigAlloc(size_t size);
23 void BigFree(void *address);
25 #else
27 #define MidAlloc(size) MyAlloc(size)
28 #define MidFree(address) MyFree(address)
29 #define BigAlloc(size) MyAlloc(size)
30 #define BigFree(address) MyFree(address)
32 #endif
34 #endif