ovr_sdk

view LibOVR/Src/Util/GUIConsole.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 : GUIConsole.h
4 Content : A stdout console window that runs alongside Windows GUI applications
5 Created : Feb 4, 2013
6 Authors : Brant Lewis
8 Copyright : Copyright 2014 Oculus VR, LLC All Rights reserved.
10 Licensed under the Oculus VR Rift SDK License Version 3.2 (the "License");
11 you may not use the Oculus VR Rift SDK except in compliance with the License,
12 which is provided at the time of installation or download, or which
13 otherwise accompanies this software in either electronic or hard copy form.
15 You may obtain a copy of the License at
17 http://www.oculusvr.com/licenses/LICENSE-3.2
19 Unless required by applicable law or agreed to in writing, the Oculus VR SDK
20 distributed under the License is distributed on an "AS IS" BASIS,
21 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 See the License for the specific language governing permissions and
23 limitations under the License.
25 *************************************************************************************/
27 #ifndef GUICONSOLE_H
28 #define GUICONSOLE_H
30 #include "../../Include/OVR_Kernel.h"
32 #ifdef OVR_INTERNAL_USE
34 #include <WinSock2.h>
35 #include <WS2tcpip.h>
36 #define WIN32_LEAN_AND_MEAN
37 #include <Windows.h>
39 class GUIConsole
40 {
41 public:
42 // constructors
43 GUIConsole();
44 ~GUIConsole();
46 // member variables
47 HANDLE hStdIn, hStdOut, hStdError;
48 };
49 #endif // #ifdef OVR_INTERNAL_USE
51 #endif