mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
b7c1e16554
Release build requires WinDDK to link with the system msvcrt.dll.
16 lines
326 B
C
16 lines
326 B
C
/* 7zAlloc.h -- Allocation functions
|
|
2010-10-29 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef __7Z_ALLOC_H
|
|
#define __7Z_ALLOC_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
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);
|
|
|
|
#endif
|