17 lines
306 B
C++
17 lines
306 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuHWInfo.hpp
|
|
Date: 2021-6-19
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::HWInfo
|
|
{
|
|
inline AuUInt32 gPageSize;
|
|
|
|
template<typename T>
|
|
AuOptional<T> QueryBsdHwStat(int id);
|
|
void Init();
|
|
} |