thunderbrew/src/ui/LuaMemory.hpp

10 lines
177 B
C++
Raw Normal View History

2023-01-02 13:17:18 -06:00
#ifndef UI_LUA_MEMORY_HPP
#define UI_LUA_MEMORY_HPP
#include <cstdlib>
void* luaM_initPool();
void* luaM_reallocPool(void* ud, void* ptr, size_t osize, size_t nsize);
2023-01-02 13:17:18 -06:00
#endif