mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
24 lines
380 B
C
Executable File
24 lines
380 B
C
Executable File
/* 7zAlloc.h -- Allocation functions
|
|
2009-02-07 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef __7Z_ALLOC_H
|
|
#define __7Z_ALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void *SzAlloc(void *p, size_t size);
|
|
void SzFree(void *p, void *address);
|
|
|
|
void *SzAllocTemp(void *p, size_t size);
|
|
void SzFreeTemp(void *p, void *address);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|