RGLCommand

Objective-C

NS_ENUM(NSInteger, RGLCommand) {
    RGLCommandUnknown = 0,
    RGLCommandRfidSendData = 100,
    RGLCommandRfidNotify = 101,
    RGLCommandRfidGetDataForScenario = 102,
    RGLCommandTorchGetUVFoto = 200,
    RGLCommandCommandInternetSend = 300,
    RGLCommandBluetoothConnect = 500,
    RGLCommandBluetoothDisconnect = 501,
    RGLCommandBluetoothSendData = 502,
    RGLCommandCheckCaptureProcessIntegrity = 503,
}

Swift

enum Command : Int, @unchecked Sendable

Undocumented