You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
366 B
C
20 lines
366 B
C
9 years ago
|
/* 7zAlloc.h -- Allocation functions
|
||
6 years ago
|
2017-04-03 : Igor Pavlov : Public domain */
|
||
13 years ago
|
|
||
|
#ifndef __7Z_ALLOC_H
|
||
|
#define __7Z_ALLOC_H
|
||
|
|
||
6 years ago
|
#include "7zTypes.h"
|
||
13 years ago
|
|
||
6 years ago
|
EXTERN_C_BEGIN
|
||
9 years ago
|
|
||
6 years ago
|
void *SzAlloc(ISzAllocPtr p, size_t size);
|
||
|
void SzFree(ISzAllocPtr p, void *address);
|
||
13 years ago
|
|
||
6 years ago
|
void *SzAllocTemp(ISzAllocPtr p, size_t size);
|
||
|
void SzFreeTemp(ISzAllocPtr p, void *address);
|
||
13 years ago
|
|
||
6 years ago
|
EXTERN_C_END
|
||
13 years ago
|
|
||
|
#endif
|