This website uses cookies to improve our services and deliver relevant ads.
By interacting with this site, you agree to this use. For more information, see our Cookies Policy

Platform 1.36 Reference Guide

OVR_PlatformInitializeResult.h File Reference

Enumeration Type Documentation

enum OVR_PlatformInitializeResult.h.ovrPlatformInitializeResult_
Enumerator
ovrPlatformInitialize_Success= 0
ovrPlatformInitialize_Uninitialized= -1
ovrPlatformInitialize_PreLoaded= -2
ovrPlatformInitialize_FileInvalid= -3
ovrPlatformInitialize_SignatureInvalid= -4
ovrPlatformInitialize_UnableToVerify= -5
ovrPlatformInitialize_VersionMismatch= -6
ovrPlatformInitialize_Unknown= -7
ovrPlatformInitialize_InvalidCredentials= -8
ovrPlatformInitialize_NotEntitled= -9

Typedef Documentation

typedef enum ovrPlatformInitializeResult_ ovrPlatformInitializeResult ( )
Describes the various results possible when attempting to initialize the platform. Anything other than ovrPlatformInitialize_Success should be considered a fatal error with respect to using the platform, as the platform is not guaranteed to be legitimate or work correctly.

Function Documentation

const char* ovrPlatformInitializeResult_ToString ( ovrPlatformInitializeResult value )
Converts an ovrPlatformInitializeResult enum value to a string The returned string does not need to be freed
ovrPlatformInitializeResult ovrPlatformInitializeResult_FromString ( const char * str )
Converts a string representing an ovrPlatformInitializeResult enum value to an enum value
1
2
3
4
5
6
7
12
13
14
15
16
17
18
19
20
21
22
23
24
27
28
31
32
33
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!

#ifndef OVR_PLATFORM_INITIALIZE_RESULT_H
#define OVR_PLATFORM_INITIALIZE_RESULT_H

#include "OVR_Platform_Defs.h"

typedefenum ovrPlatformInitializeResult_ {
  ovrPlatformInitialize_Success = 0,
  ovrPlatformInitialize_Uninitialized = -1,
  ovrPlatformInitialize_PreLoaded = -2,
  ovrPlatformInitialize_FileInvalid = -3,
  ovrPlatformInitialize_SignatureInvalid = -4,
  ovrPlatformInitialize_UnableToVerify = -5,
  ovrPlatformInitialize_VersionMismatch = -6,
  ovrPlatformInitialize_Unknown = -7,
  ovrPlatformInitialize_InvalidCredentials = -8,
  ovrPlatformInitialize_NotEntitled = -9,
} ovrPlatformInitializeResult;

OVRPL_PUBLIC_FUNCTION(constchar*) ovrPlatformInitializeResult_ToString(ovrPlatformInitializeResult value);

OVRPL_PUBLIC_FUNCTION(ovrPlatformInitializeResult) ovrPlatformInitializeResult_FromString(constchar* str);

#endif
The documentation for this file was generated from the following file: OVR_PlatformInitializeResult.h