mirror of https://github.com/PrimeDecomp/prime.git
21 lines
644 B
C++
21 lines
644 B
C++
#ifndef _CMEMORY_HPP
|
|
#define _CMEMORY_HPP
|
|
|
|
#include "types.h"
|
|
|
|
namespace CMemory {
|
|
void* Alloc(unsigned long sz);
|
|
void Free(const void* ptr);
|
|
} // namespace CMemory
|
|
|
|
void* operator new(unsigned long sz, const char*, const char*);
|
|
void* operator new[](unsigned long sz, const char*, const char*);
|
|
inline void* operator new(unsigned long sz) { return operator new(sz, "??(??)", nullptr); }
|
|
inline void* operator new[](unsigned long sz) { return operator new[](sz, "??(??)", nullptr); }
|
|
// placement new
|
|
inline void* operator new(unsigned long n, void* ptr) { return ptr; };
|
|
|
|
inline void operator delete(void* ptr) { CMemory::Free(ptr); }
|
|
|
|
#endif
|