kopia lustrzana https://github.com/open-ham/OpenGD77
26 wiersze
328 B
C#
26 wiersze
328 B
C#
![]() |
namespace UsbLibrary
|
||
|
{
|
||
|
public class SpecifiedInputReport : InputReport
|
||
|
{
|
||
|
private byte[] arrData;
|
||
|
|
||
|
public byte[] Data
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return this.arrData;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public SpecifiedInputReport(HIDDevice oDev) : base (oDev)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override void ProcessData()
|
||
|
{
|
||
|
this.arrData = base.Buffer;
|
||
|
}
|
||
|
}
|
||
|
}
|