mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
10 lines
282 B
C++
10 lines
282 B
C++
#ifndef COMMON_OBJECT_ALLOC_HPP
|
|
#define COMMON_OBJECT_ALLOC_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
int32_t ObjectAlloc(uint32_t heapId, uint32_t* memHandle, void** objectPtr, bool zero);
|
|
|
|
uint32_t ObjectAllocAddHeap(uint32_t objectSize, uint32_t objsPerBlock, const char* name, bool a4);
|
|
|
|
#endif
|