RGLLicensingResult

Objective-C

NS_ENUM(NSInteger, RGLLicensingResult) {
  RGLLicensingResultOK                        =   0,
  RGLLicensingResultLicenseAbsentOrCorrupted  =   1,
  RGLLicensingResultInvalidDate               =   2,
  RGLLicensingResultInvalidVersion            =   3,
  RGLLicensingResultInvalidDeviceID           =   4,
  RGLLicensingResultInvalidSystemOrAppID      =   5,
  RGLLicensingResultNoCapabilities            =   6,
  RGLLicensingResultNoAuthenticity            =   7,
  RGLLicensingResultNoDatabase                =   10,
  RGLLicensingResultDatabaseIncorrect         =   11

}

Swift

enum RGLLicensingResult : Int, @unchecked Sendable

Undocumented