mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 16:35:16 +01:00
21 lines
355 B
C
21 lines
355 B
C
|
/* 7zAlloc.h */
|
||
|
|
||
|
#ifndef __7Z_ALLOC_H
|
||
|
#define __7Z_ALLOC_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
typedef struct _ISzAlloc
|
||
|
{
|
||
|
void *(*Alloc)(size_t size);
|
||
|
void (*Free)(void *address); /* address can be 0 */
|
||
|
} ISzAlloc;
|
||
|
|
||
|
void *SzAlloc(size_t size);
|
||
|
void SzFree(void *address);
|
||
|
|
||
|
void *SzAllocTemp(size_t size);
|
||
|
void SzFreeTemp(void *address);
|
||
|
|
||
|
#endif
|