コード例 #1
0
 private void DfuDisconnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneDFU = null;
     this.OnDfuDisconnect(new DeviceNotificationEventArgs(callback));
 }
コード例 #2
0
 private void RecoveryConnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneRecovery = new iPhoneRecoveryDevice(this.DFUHandle);
     this.OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback));
 }
コード例 #3
0
 private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneRecovery = null;
     this.OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback));
 }
コード例 #4
0
 private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneRecovery = null;
     this.OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback));
 }
コード例 #5
0
 private void RecoveryConnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneRecovery = new iPhoneRecoveryDevice(this.DFUHandle);
     this.OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback));
 }
コード例 #6
0
 private void DfuDisconnectCallback(ref AMRecoveryDevice callback)
 {
     this.DFUHandle = callback.byte_0;
     iPhoneDFU      = null;
     this.OnDfuDisconnect(new DeviceNotificationEventArgs(callback));
 }
コード例 #7
0
 internal DeviceNotificationEventArgs(AMRecoveryDevice device)
 {
     this.device = device;
 }
コード例 #8
0
 internal DeviceNotificationEventArgs(AMRecoveryDevice device)
 {
     this.device = device;
 }