15 lines
322 B
C++
15 lines
322 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
|
|
|
|
namespace Aurora::HWInfo
|
|
{
|
|
AUKN_SYM AuUInt32 GetRamAvailableMb();
|
|
AUKN_SYM AuUInt32 GetRamStartupAvailableMb();
|
|
AUKN_SYM AuUInt32 GetRamTotalMb();
|
|
} |