42 lines
1005 B
C++
42 lines
1005 B
C++
// Copyright (C) 2017 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Core module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_HARDWAREINFO_HPP
|
|
#define NAZARA_HARDWAREINFO_HPP
|
|
|
|
#include <Nazara/Prerequesites.hpp>
|
|
#include <Nazara/Core/Enums.hpp>
|
|
#include <Nazara/Core/String.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
class NAZARA_CORE_API HardwareInfo
|
|
{
|
|
public:
|
|
HardwareInfo() = delete;
|
|
~HardwareInfo() = delete;
|
|
|
|
static void Cpuid(UInt32 functionId, UInt32 subFunctionId, UInt32 result[4]);
|
|
|
|
static String GetProcessorBrandString();
|
|
static unsigned int GetProcessorCount();
|
|
static ProcessorVendor GetProcessorVendor();
|
|
static String GetProcessorVendorName();
|
|
static UInt64 GetTotalMemory();
|
|
|
|
static bool HasCapability(ProcessorCap capability);
|
|
|
|
static bool Initialize();
|
|
|
|
static bool IsCpuidSupported();
|
|
static bool IsInitialized();
|
|
|
|
static void Uninitialize();
|
|
};
|
|
}
|
|
|
|
#endif // NAZARA_HARDWAREINFO_HPP
|