
- upgraded to the latest LZMA SDK git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3638 212acab6-be3b-0410-9dea-997c60f758d6
14 lines
246 B
C
14 lines
246 B
C
// Common/Alloc.h
|
|
|
|
#ifndef __COMMON_ALLOC_H
|
|
#define __COMMON_ALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *MyAlloc(size_t size);
|
|
void MyFree(void *address);
|
|
void *BigAlloc(size_t size);
|
|
void BigFree(void *address);
|
|
// void *BigAllocE(size_t size);
|
|
|
|
#endif
|