Update platformMemory.h

This commit is contained in:
marauder2k7 2025-05-11 23:17:36 +01:00
parent f3046a9c3e
commit e5e3efb30c

View file

@ -27,6 +27,7 @@
namespace Memory
{
#if !defined(TORQUE_DISABLE_MEMORY_MANAGER)
struct MemInfo
{
void* ptr;
@ -44,6 +45,7 @@ namespace Memory
void shutdown();
void getMemoryInfo(void* ptr, MemInfo& info);
void checkPtr(void* ptr);
#endif
}
#endif // _TORQUE_PLATFORM_PLATFORMMEMORY_H_