nuclear@0: /************************************************************************************ nuclear@0: nuclear@0: Filename : Util_SystemInfo.h nuclear@0: Content : Various operations to get information about the system nuclear@0: Created : September 26, 2014 nuclear@0: Author : Kevin Jenkins nuclear@0: nuclear@0: Copyright : Copyright 2014 Oculus VR, LLC All Rights reserved. nuclear@0: nuclear@0: Licensed under the Oculus VR Rift SDK License Version 3.2 (the "License"); nuclear@0: you may not use the Oculus VR Rift SDK except in compliance with the License, nuclear@0: which is provided at the time of installation or download, or which nuclear@0: otherwise accompanies this software in either electronic or hard copy form. nuclear@0: nuclear@0: You may obtain a copy of the License at nuclear@0: nuclear@0: http://www.oculusvr.com/licenses/LICENSE-3.2 nuclear@0: nuclear@0: Unless required by applicable law or agreed to in writing, the Oculus VR SDK nuclear@0: distributed under the License is distributed on an "AS IS" BASIS, nuclear@0: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. nuclear@0: See the License for the specific language governing permissions and nuclear@0: limitations under the License. nuclear@0: nuclear@0: ************************************************************************************/ nuclear@0: nuclear@0: nuclear@0: #ifndef OVR_Util_SystemInfo_h nuclear@0: #define OVR_Util_SystemInfo_h nuclear@0: nuclear@0: #include "../Kernel/OVR_String.h" nuclear@0: #include "../Kernel/OVR_Types.h" nuclear@0: #include "../Kernel/OVR_Array.h" nuclear@0: nuclear@0: namespace OVR { namespace Util { nuclear@0: nuclear@0: const char * OSAsString(); nuclear@0: String OSVersionAsString(); nuclear@0: uint64_t GetGuidInt(); nuclear@0: String GetGuidString(); nuclear@0: const char * GetProcessInfo(); nuclear@0: String GetFileVersionString(String filePath); nuclear@0: String GetSystemFileVersionString(String filePath); nuclear@0: String GetDisplayDriverVersion(); nuclear@0: String GetCameraDriverVersion(); nuclear@0: void GetGraphicsCardList(OVR::Array< OVR::String > &gpus); nuclear@0: String GetProcessorInfo(int* numcores = NULL); nuclear@0: nuclear@0: } } // namespace OVR { namespace Util { nuclear@0: nuclear@0: #endif // OVR_Util_SystemInfo_h