/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: HeapStats.hpp Date: 2022-12-07 Author: Reece ***/ #pragma once namespace Aurora::Memory { struct HeapStats { AuUInt64 qwBytesAllocatedLifeSpan {}; AuUInt64 qwBytesFreeLifeSpan {}; AuUInt uBytesCapacity {}; AuUInt uBytesLiveCounter {}; AuUInt uBytesPeakCounter {}; bool bIsSharedWithOtherHeaps {}; }; }