private void DfuConnectCallback(ref AMRecoveryDevice callback) { this.DFUHandle = callback; this.OnDfuConnect(new DeviceNotificationEventArgs(callback)); }
private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback) { this.DFUHandle = callback; this.OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback)); }
private void DfuDisconnectCallback(ref AMRecoveryDevice callback) { this.DFUHandle = callback; this.OnDfuDisconnect(new DeviceNotificationEventArgs(callback)); }
private void RecoveryConnectCallback(ref AMRecoveryDevice callback) { this.DFUHandle = callback; this.OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback)); }
private void RecoveryConnectCallback(ref AMRecoveryDevice callback) { OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback)); }
public static extern string AMRestoreModeDeviceCopyIMEI(AMRecoveryDevice device);
public static extern string AMRecoveryModeDeviceCopySerialNumber(AMRecoveryDevice device);
internal DeviceNotificationEventArgs(AMRecoveryDevice device) { this.device = device; }
public static extern int AMRecoveryModeDeviceSetAutoBoot(AMRecoveryDevice device, byte paramByte);
public static extern int AMRecoveryModeDeviceReboot(AMRecoveryDevice device);
private void DfuDisconnectCallback(ref AMRecoveryDevice callback) { OnDfuDisconnect(new DeviceNotificationEventArgs(callback)); }
private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback) { OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback)); }