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
-
Undocumented
Declaration
Objective-C
RGLLicensingResultOK = 0
Swift
case OK = 0
-
Undocumented
Declaration
Objective-C
RGLLicensingResultLicenseAbsentOrCorrupted = 1
Swift
case licenseAbsentOrCorrupted = 1
-
Undocumented
Declaration
Objective-C
RGLLicensingResultInvalidDate = 2
Swift
case invalidDate = 2
-
Undocumented
Declaration
Objective-C
RGLLicensingResultInvalidVersion = 3
Swift
case invalidVersion = 3
-
Undocumented
Declaration
Objective-C
RGLLicensingResultInvalidDeviceID = 4
Swift
case invalidDeviceID = 4
-
Undocumented
Declaration
Objective-C
RGLLicensingResultInvalidSystemOrAppID = 5
Swift
case invalidSystemOrAppID = 5
-
Undocumented
Declaration
Objective-C
RGLLicensingResultNoCapabilities = 6
Swift
case noCapabilities = 6
-
Undocumented
Declaration
Objective-C
RGLLicensingResultNoAuthenticity = 7
Swift
case noAuthenticity = 7
-
Undocumented
Declaration
Objective-C
RGLLicensingResultNoDatabase = 10
Swift
case noDatabase = 10
-
Undocumented
Declaration
Objective-C
RGLLicensingResultDatabaseIncorrect = 11
Swift
case databaseIncorrect = 11