#include <Memory.hpp>
Public Member Functions | |
virtual PVOID | Allocate (size_t Size)=0 |
virtual PVOID | Reallocate (PVOID Address, size_t Size)=0 |
virtual VOID | Free (PVOID Address)=0 |
virtual PVOID System::Allocator::Allocate | ( | size_t | Size | ) | [pure virtual] |
Allocate a block of memory.
Implemented in System::AnsiAllocator.
virtual PVOID System::Allocator::Reallocate | ( | PVOID | Address, | |
size_t | Size | |||
) | [pure virtual] |
Reallocate a block of memory.
Implemented in System::AnsiAllocator.
virtual VOID System::Allocator::Free | ( | PVOID | Address | ) | [pure virtual] |
Free a block of memory.
Implemented in System::AnsiAllocator.