Exemplo n.º 1
0
 private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneRecovery = null;
     this.OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback));
 }
Exemplo n.º 2
0
 private void DfuDisconnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneDFU = null;
     this.OnDfuDisconnect(new DeviceNotificationEventArgs(callback));
 }
Exemplo n.º 3
0
 private void RecoveryConnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneRecovery = new iPhoneRecoveryDevice(this.DFUHandle);
     this.OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback));
 }
 internal DeviceNotificationEventArgs(AMRecoveryDevice device)
 {
     this.device = device;
 }
Exemplo n.º 5
0
 private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneRecovery = null;
     this.OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback));
 }
Exemplo n.º 6
0
 private void RecoveryConnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneRecovery = new iPhoneRecoveryDevice(this.DFUHandle);
     this.OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback));
 }
Exemplo n.º 7
0
 private void DfuDisconnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneDFU      = null;
     this.OnDfuDisconnect(new DeviceNotificationEventArgs(callback));
 }
 internal DeviceNotificationEventArgs(AMRecoveryDevice device)
 {
     this.device = device;
 }