Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
822 B

  1. // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
  2. namespace Oculus.Platform
  3. {
  4. using Description = System.ComponentModel.DescriptionAttribute;
  5. public enum PlatformInitializeResult : int
  6. {
  7. [Description("SUCCESS")]
  8. Success = 0,
  9. [Description("UNINITIALIZED")]
  10. Uninitialized = -1,
  11. [Description("PRE_LOADED")]
  12. PreLoaded = -2,
  13. [Description("FILE_INVALID")]
  14. FileInvalid = -3,
  15. [Description("SIGNATURE_INVALID")]
  16. SignatureInvalid = -4,
  17. [Description("UNABLE_TO_VERIFY")]
  18. UnableToVerify = -5,
  19. [Description("VERSION_MISMATCH")]
  20. VersionMismatch = -6,
  21. [Description("UNKNOWN")]
  22. Unknown = -7,
  23. [Description("INVALID_CREDENTIALS")]
  24. InvalidCredentials = -8,
  25. [Description("NOT_ENTITLED")]
  26. NotEntitled = -9,
  27. }
  28. }