示例#1
0
 extern static uint GetRawInputDeviceInfo(HANDLE hDevice, RIDI uiCommand, StringBuilder pData, ref uint pcbSize);
 public static uint GetRawInputDeviceInfo(IntPtr hDevice, RIDI command, IntPtr data, ref uint pcbSize)
 {
     return NativeMethods.GetRawInputDeviceInfo(hDevice, (uint)command, data, ref pcbSize);
 }
示例#3
0
 public extern static uint GetRawInputDeviceInfo(HANDLE hDevice, RIDI uiCommand, IntPtr pData, ref uint pcbSize);
示例#4
0
 private static extern uint GetRawInputDeviceInfo(HANDLE hDevice, RIDI uiCommand, ref RID_DEVICE_INFO pData, ref uint pcbSize);
示例#5
0
 private static extern uint GetRawInputDeviceInfo(HANDLE hDevice, RIDI uiCommand, byte[] pData, ref uint pcbSize);
示例#6
0
 public static extern uint GetRawInputDeviceInfo(HANDLE hDevice, RIDI uiCommand, HANDLE pData, ref uint pcbSize);
示例#7
0
 public static extern uint GetRawInputDeviceInfoString(IntPtr hDevice, RIDI uiCommand, StringBuilder pData, ref int pcbSize);
示例#8
0
 public static extern uint GetRawInputDeviceInfo(IntPtr hDevice, RIDI uiCommand, void* pData, ref int pcbSize);
示例#9
0
 public static extern uint GetRawInputDeviceInfo(IntPtr hDevice, RIDI uiCommand, IntPtr pData, ref uint pcbSize);
示例#10
0
 public static uint GetRawInputDeviceInfo(IntPtr hDevice, RIDI command, IntPtr data, ref uint pcbSize)
 {
     return(NativeMethods.GetRawInputDeviceInfo(hDevice, (uint)command, data, ref pcbSize));
 }