17 lines
274 B
C++
17 lines
274 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
|
|
{
|
|
struct RamStat
|
|
{
|
|
AuUInt64 used;
|
|
AuUInt64 available;
|
|
};
|
|
} |