ovr_sdk

view LibOVR/Src/Util/Util_SystemGUI.h @ 0:1b39a1b46319

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