Updated memory manager

This commit is contained in:
Alex
2022-12-26 08:40:09 +02:00
parent 98d58cf655
commit 18f05c6d83
2 changed files with 34 additions and 0 deletions

View File

@ -648,6 +648,8 @@ namespace Memory
public:
uint64_t GetAllocatedMemorySize();
bool Add(void *Address, size_t Count);
void *RequestPages(size_t Count);
void FreePages(void *Address, size_t Count);