AuroraRuntime/Include/Aurora/HWInfo/RamStat.hpp

28 lines
560 B
C++
Raw Normal View History

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: RamStat.hpp
Date: 2021-10-24
Author: Reece
***/
#pragma once
namespace Aurora::HWInfo
{
2022-08-02 04:58:00 +00:00
/**
* @brief A fraction of bytes to be used by memory stat apis.
* Defer to RamInfo.hpp
*/
struct RamStat
{
2022-08-02 04:58:00 +00:00
/**
* @brief Bytes used
*/
AuUInt64 used;
2022-08-02 04:58:00 +00:00
/**
* @brief Total bytes. Available meaning the theoretical absolute, not the reminder.
*/
AuUInt64 available;
};
}