AuroraRuntime/Include/Aurora/HWInfo/RamInfo.hpp

19 lines
413 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: RamInfo.hpp
Date: 2021-6-10
Author: Reece
***/
#pragma once
#include "RamStat.hpp"
namespace Aurora::HWInfo
{
AUKN_SYM AuOptional<RamStat> GetMemStatProcess();
AUKN_SYM AuOptional<RamStat> GetMemStatSystem();
AUKN_SYM AuOptional<RamStat> GetMemStatStartup();
AUKN_SYM AuUInt32 GetPageSize();
}