ovr_sdk

view LibOVR/Src/Net/OVR_MessageIDTypes.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 : OVR_MessageIDTypes.h
4 Content : Enumeration list indicating what type of message is being sent
5 Created : July 3, 2014
6 Authors : Kevin Jenkins
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 namespace OVR { namespace Net {
29 /// First byte of a network message
30 typedef unsigned char MessageID;
32 enum DefaultMessageIDTypes
33 {
34 OVRID_RPC1,
35 OVRID_END = 128,
36 OVRID_LATENCY_TESTER_1,
37 };
39 }} // namespace OVR::Net