ovr_sdk
annotate LibOVR/Src/Util/Util_SystemGUI.h @ 3:f12a8f74fe1f
added the Xcode project
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 21 Jan 2015 11:37:50 +0200 |
parents | |
children |
rev | line source |
---|---|
nuclear@0 | 1 /************************************************************************************ |
nuclear@0 | 2 |
nuclear@0 | 3 Filename : Util_SystemGUI.h |
nuclear@0 | 4 Content : OS GUI access, usually for diagnostics. |
nuclear@0 | 5 Created : October 20, 2014 |
nuclear@0 | 6 Copyright : Copyright 2014 Oculus VR, LLC All Rights reserved. |
nuclear@0 | 7 |
nuclear@0 | 8 Licensed under the Oculus VR Rift SDK License Version 3.2 (the "License"); |
nuclear@0 | 9 you may not use the Oculus VR Rift SDK except in compliance with the License, |
nuclear@0 | 10 which is provided at the time of installation or download, or which |
nuclear@0 | 11 otherwise accompanies this software in either electronic or hard copy form. |
nuclear@0 | 12 |
nuclear@0 | 13 You may obtain a copy of the License at |
nuclear@0 | 14 |
nuclear@0 | 15 http://www.oculusvr.com/licenses/LICENSE-3.2 |
nuclear@0 | 16 |
nuclear@0 | 17 Unless required by applicable law or agreed to in writing, the Oculus VR SDK |
nuclear@0 | 18 distributed under the License is distributed on an "AS IS" BASIS, |
nuclear@0 | 19 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
nuclear@0 | 20 See the License for the specific language governing permissions and |
nuclear@0 | 21 limitations under the License. |
nuclear@0 | 22 |
nuclear@0 | 23 *************************************************************************************/ |
nuclear@0 | 24 |
nuclear@0 | 25 #ifndef OVR_Util_GUI_h |
nuclear@0 | 26 #define OVR_Util_GUI_h |
nuclear@0 | 27 |
nuclear@0 | 28 |
nuclear@0 | 29 namespace OVR { namespace Util { |
nuclear@0 | 30 |
nuclear@0 | 31 // Displays a modal message box on the default GUI display (not on a VR device). |
nuclear@0 | 32 // The message box interface (e.g. OK button) is not localized. |
nuclear@0 | 33 bool DisplayMessageBox(const char* pTitle, const char* pText); |
nuclear@0 | 34 |
nuclear@0 | 35 |
nuclear@0 | 36 } } // namespace OVR::Util |
nuclear@0 | 37 |
nuclear@0 | 38 |
nuclear@0 | 39 #endif |