Jamie Reece Wilson
8be1afe570
[+] AuMemory::HeapAdapterInterface to describe aforementioned heap allocators of a very limited API [+] AuMemory::HeapAdapter[Unique,Shared,] [+] HeapWin32Adapter to convert HANDLE hHeaps of win32s CreateHeap (RtlCreateHeap?) into AuMemory::Heaps
14 lines
310 B
C++
14 lines
310 B
C++
/***
|
|
Copyright (C) 2024 Jamie Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuHeapAlignmentInterface.hpp
|
|
File: Heap.hpp
|
|
Date: 2024-7-17
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Memory
|
|
{
|
|
bool MakeHeapInterfaceOfStricterAlignment(HeapAdapterInterface *pInterface);
|
|
} |