// Copyright (C) 2015 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 #include #include 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