28 lines
565 B
C++
28 lines
565 B
C++
/***
|
|
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
|
|
{
|
|
/**
|
|
* @brief A fraction of bytes to be used by memory stat apis.
|
|
* Defer to RamInfo.hpp
|
|
*/
|
|
struct RamStat
|
|
{
|
|
/**
|
|
* @brief Bytes used
|
|
*/
|
|
AuUInt64 qwUsed;
|
|
|
|
/**
|
|
* @brief Total bytes. Available meaning the theoretical absolute, not the remainder.
|
|
*/
|
|
AuUInt64 qwAvailable;
|
|
};
|
|
} |