mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
403 B
C
24 lines
403 B
C
|
/* 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
|