mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 16:07:09 -06:00
15 lines
278 B
C
Executable File
15 lines
278 B
C
Executable File
// Common/Alloc.h
|
|
|
|
#ifndef __COMMON_ALLOC_H
|
|
#define __COMMON_ALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *MyAlloc(size_t size) throw();
|
|
void MyFree(void *address) throw();
|
|
void *BigAlloc(size_t size) throw();
|
|
void BigFree(void *address) throw();
|
|
// void *BigAllocE(size_t size);
|
|
|
|
#endif
|