mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-22 01:13:28 +00:00
14 lines
235 B
C++
14 lines
235 B
C++
#ifndef _CZIPSUPPORT
|
|
#define _CZIPSUPPORT
|
|
|
|
#include "rstl/single_ptr.hpp"
|
|
#include <types.h>
|
|
|
|
class CZipSupport {
|
|
public:
|
|
static void * Alloc(void* ptr, uint w1, uint w2);
|
|
static void Free(void*, void*);
|
|
};
|
|
|
|
#endif // _CZIPSUPPORT
|