#include <Intrinsic.hpp>
Public Member Functions | |
PVOID | Allocate (size_t Size) |
PVOID | Reallocate (PVOID Address, size_t Size) |
VOID | Free (PVOID Address) |
PVOID System::AnsiAllocator::Allocate | ( | size_t | Size | ) | [inline, virtual] |
Allocate a block of memory (with malloc).
Implements System::Allocator.
PVOID System::AnsiAllocator::Reallocate | ( | PVOID | Address, | |
size_t | Size | |||
) | [inline, virtual] |
Reallocate a block of memory (with realloc).
Implements System::Allocator.
VOID System::AnsiAllocator::Free | ( | PVOID | Address | ) | [inline, virtual] |
Free a block of memory (with free).
Implements System::Allocator.