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