1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-04 02:01:58 +00:00

Better memory management

This commit is contained in:
momo5502
2022-03-27 11:57:26 +02:00
parent 520bdf3aea
commit 1bbd9e9c73
5 changed files with 114 additions and 56 deletions

View File

@ -1,7 +1,5 @@
#pragma once
void* operator new(size_t size, POOL_TYPE pool, unsigned long tag = 'momo');
void* operator new[](size_t size, POOL_TYPE pool, unsigned long tag = 'momo');
void* operator new(size_t size);
void* operator new[](size_t size);