mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +00:00
75b7db858f
- Added more output to zipdir and a -q option to turn it off. - Added -u option to zipdir to only recompress those files in a zip that have changed. - Added -d and -f options to zipdir. -d forces deflate compression, and -f forces a write of the zip, even if it's newer than all the files it contains. - Added support for bzip2 and LZMA compression to zipdir. SVN r1468 (trunk)
32 lines
581 B
C
32 lines
581 B
C
/* Alloc.h -- Memory allocation functions
|
|
2008-03-13
|
|
Igor Pavlov
|
|
Public domain */
|
|
|
|
#ifndef __COMMON_ALLOC_H
|
|
#define __COMMON_ALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *MyAlloc(size_t size);
|
|
void MyFree(void *address);
|
|
|
|
#ifdef _WIN32
|
|
|
|
void SetLargePageSize();
|
|
|
|
void *MidAlloc(size_t size);
|
|
void MidFree(void *address);
|
|
void *BigAlloc(size_t size);
|
|
void BigFree(void *address);
|
|
|
|
#else
|
|
|
|
#define MidAlloc(size) MyAlloc(size)
|
|
#define MidFree(address) MyFree(address)
|
|
#define BigAlloc(size) MyAlloc(size)
|
|
#define BigFree(address) MyFree(address)
|
|
|
|
#endif
|
|
|
|
#endif
|