Inheritance: LitDev.Engines.InputReport
コード例 #1
0
ファイル: HID.cs プロジェクト: levi1994/LitDev
 protected override void HandleDataReceived(InputReport oInRep)
 {
     if (OnDeviceChanged != null)
     {
         HIDInputReport oHIDIn = (HIDInputReport)oInRep;
         OnDeviceChanged(this, new HIDChangedEventArgs(oHIDIn));
     }
 }
コード例 #2
0
ファイル: HID.cs プロジェクト: litdev1/LitDev
 public HIDChangedEventArgs(HIDInputReport oHIDIn)
 {
     this.oHIDIn = oHIDIn;
 }
コード例 #3
0
ファイル: HID.cs プロジェクト: levi1994/LitDev
 public HIDChangedEventArgs(HIDInputReport oHIDIn)
 {
     this.oHIDIn = oHIDIn;
 }