bc/bc/Memory.hpp
2023-02-26 17:51:03 -06:00

17 lines
335 B
C++

#ifndef BC_MEMORY_HPP
#define BC_MEMORY_HPP
#include <cstdint>
namespace Blizzard {
namespace Memory {
// Functions
void* Allocate(uint32_t bytes);
void* Allocate(uint32_t bytes, uint32_t flags, const char* filename, uint32_t linenumber, const char* a5);
void Free(void* ptr);
} // namespace Memory
} // namespace Blizzard
#endif