AuroraRuntime/Source/Memory/AuHeapAlignmentInterface.hpp
Jamie Reece Wilson 8be1afe570 [+] AuMemory::Heap adapters for third party heap allocators
[+] 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
2024-07-19 09:06:56 +01:00

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);
}