/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: AuHeap.hpp Date: 2021-6-12 Author: Reece ***/ #pragma once #include "AuMemory.hpp" #include "AuBaseHeap.hpp" namespace Aurora::Memory { AuUInt32 RoundPageUp(AuUInt32 value); AuSPtr AllocateDivisionGlobal(Heap *heap, AuUInt32 length, AuUInt32 alignment); }