Win32Hid: improved button caps structure.
2 using System.Runtime.InteropServices;
3 using Microsoft.Win32.SafeHandles;
9 static partial class Function
11 [DllImport("hid.dll", CharSet = CharSet.Unicode)]
12 public static extern HidStatus HidP_GetUsagesEx(HIDP_REPORT_TYPE ReportType, ushort LinkCollection, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 3)] USAGE_AND_PAGE[] ButtonList, ref uint UsageLength, IntPtr PreparsedData, [MarshalAs(UnmanagedType.LPArray)] byte[] Report, uint ReportLength);
14 [DllImport("hid.dll", CharSet = CharSet.Auto, SetLastError = true)]
15 public static extern Boolean HidD_GetManufacturerString(SafeFileHandle HidDeviceObject, StringBuilder Buffer, Int32 BufferLength);
17 [DllImport("hid.dll", CharSet = CharSet.Auto, SetLastError = true)]
18 public static extern Boolean HidD_GetProductString(SafeFileHandle HidDeviceObject, StringBuilder Buffer, Int32 BufferLength);
20 [DllImport("hid.dll", CharSet = CharSet.Auto, SetLastError = true)]
21 public static extern Boolean HidD_GetAttributes(SafeFileHandle HidDeviceObject, ref HIDD_ATTRIBUTES Attributes);
23 /// Return Type: NTSTATUS->LONG->int
24 ///PreparsedData: PHIDP_PREPARSED_DATA->_HIDP_PREPARSED_DATA*
25 ///Capabilities: PHIDP_CAPS->_HIDP_CAPS*
26 [DllImportAttribute("hid.dll", EntryPoint = "HidP_GetCaps", CallingConvention = CallingConvention.StdCall)]
27 public static extern HidStatus HidP_GetCaps(System.IntPtr PreparsedData, ref HIDP_CAPS Capabilities);
29 /// Return Type: NTSTATUS->LONG->int
30 ///ReportType: HIDP_REPORT_TYPE->_HIDP_REPORT_TYPE
31 ///ButtonCaps: PHIDP_BUTTON_CAPS->_HIDP_BUTTON_CAPS*
32 ///ButtonCapsLength: PUSHORT->USHORT*
33 ///PreparsedData: PHIDP_PREPARSED_DATA->_HIDP_PREPARSED_DATA*
34 [System.Runtime.InteropServices.DllImportAttribute("hid.dll", EntryPoint = "HidP_GetButtonCaps", CallingConvention = System.Runtime.InteropServices.CallingConvention.StdCall)]
35 public static extern HidStatus HidP_GetButtonCaps(HIDP_REPORT_TYPE ReportType, [Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 2)] HIDP_BUTTON_CAPS[] ButtonCaps, ref ushort ButtonCapsLength, System.IntPtr PreparsedData);
37 /// Return Type: NTSTATUS->LONG->int
38 ///ReportType: HIDP_REPORT_TYPE->_HIDP_REPORT_TYPE
39 ///ValueCaps: PHIDP_VALUE_CAPS->_HIDP_VALUE_CAPS*
40 ///ValueCapsLength: PUSHORT->USHORT*
41 ///PreparsedData: PHIDP_PREPARSED_DATA->_HIDP_PREPARSED_DATA*
42 [System.Runtime.InteropServices.DllImportAttribute("hid.dll", EntryPoint = "HidP_GetValueCaps", CallingConvention = System.Runtime.InteropServices.CallingConvention.StdCall)]
43 public static extern HidStatus HidP_GetValueCaps(HIDP_REPORT_TYPE ReportType, ref HIDP_VALUE_CAPS[] ValueCaps, ref ushort ValueCapsLength, System.IntPtr PreparsedData);
48 static partial class Macro
55 static partial class Const
62 public enum HIDP_REPORT_TYPE : ushort
70 public enum HidStatus : uint
72 HIDP_STATUS_SUCCESS = 0x110000,
73 HIDP_STATUS_NULL = 0x80110001,
74 HIDP_STATUS_INVALID_PREPARSED_DATA = 0xc0110001,
75 HIDP_STATUS_INVALID_REPORT_TYPE = 0xc0110002,
76 HIDP_STATUS_INVALID_REPORT_LENGTH = 0xc0110003,
77 HIDP_STATUS_USAGE_NOT_FOUND = 0xc0110004,
78 HIDP_STATUS_VALUE_OUT_OF_RANGE = 0xc0110005,
79 HIDP_STATUS_BAD_LOG_PHY_VALUES = 0xc0110006,
80 HIDP_STATUS_BUFFER_TOO_SMALL = 0xc0110007,
81 HIDP_STATUS_INTERNAL_ERROR = 0xc0110008,
82 HIDP_STATUS_I8042_TRANS_UNKNOWN = 0xc0110009,
83 HIDP_STATUS_INCOMPATIBLE_REPORT_ID = 0xc011000a,
84 HIDP_STATUS_NOT_VALUE_ARRAY = 0xc011000b,
85 HIDP_STATUS_IS_VALUE_ARRAY = 0xc011000c,
86 HIDP_STATUS_DATA_INDEX_NOT_FOUND = 0xc011000d,
87 HIDP_STATUS_DATA_INDEX_OUT_OF_RANGE = 0xc011000e,
88 HIDP_STATUS_BUTTON_NOT_PRESSED = 0xc011000f,
89 HIDP_STATUS_REPORT_DOES_NOT_EXIST = 0xc0110010,
90 HIDP_STATUS_NOT_IMPLEMENTED = 0xc0110020,
91 HIDP_STATUS_I8242_TRANS_UNKNOWN = 0xc0110009
95 [StructLayout(LayoutKind.Sequential)]
96 public struct USAGE_AND_PAGE
99 public ushort UsagePage;
102 [StructLayout(LayoutKind.Sequential)]
103 public struct HIDD_ATTRIBUTES
106 public ushort VendorID;
107 public ushort ProductID;
108 public ushort VersionNumber;
112 [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
113 public struct HIDP_CAPS
116 /// USAGE->USHORT->unsigned short
119 /// USAGE->USHORT->unsigned short
120 public ushort UsagePage;
122 /// USHORT->unsigned short
123 public ushort InputReportByteLength;
125 /// USHORT->unsigned short
126 public ushort OutputReportByteLength;
128 /// USHORT->unsigned short
129 public ushort FeatureReportByteLength;
132 [System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.ByValArray, SizeConst = 17, ArraySubType = System.Runtime.InteropServices.UnmanagedType.U2)]
133 public ushort[] Reserved;
135 /// USHORT->unsigned short
136 public ushort NumberLinkCollectionNodes;
138 /// USHORT->unsigned short
139 public ushort NumberInputButtonCaps;
141 /// USHORT->unsigned short
142 public ushort NumberInputValueCaps;
144 /// USHORT->unsigned short
145 public ushort NumberInputDataIndices;
147 /// USHORT->unsigned short
148 public ushort NumberOutputButtonCaps;
150 /// USHORT->unsigned short
151 public ushort NumberOutputValueCaps;
153 /// USHORT->unsigned short
154 public ushort NumberOutputDataIndices;
156 /// USHORT->unsigned short
157 public ushort NumberFeatureButtonCaps;
159 /// USHORT->unsigned short
160 public ushort NumberFeatureValueCaps;
162 /// USHORT->unsigned short
163 public ushort NumberFeatureDataIndices;
167 /// Type created in place of an anonymous struct
169 [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
170 public struct HIDP_BUTTON_CAPS_RANGE
173 /// USAGE->USHORT->unsigned short
174 public ushort UsageMin;
176 /// USAGE->USHORT->unsigned short
177 public ushort UsageMax;
179 /// USHORT->unsigned short
180 public ushort StringMin;
182 /// USHORT->unsigned short
183 public ushort StringMax;
185 /// USHORT->unsigned short
186 public ushort DesignatorMin;
188 /// USHORT->unsigned short
189 public ushort DesignatorMax;
191 /// USHORT->unsigned short
192 public ushort DataIndexMin;
194 /// USHORT->unsigned short
195 public ushort DataIndexMax;
199 /// Type created in place of an anonymous struct
201 [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
202 public struct HIDP_BUTTON_CAPS_NOT_RANGE
205 /// USAGE->USHORT->unsigned short
208 /// USAGE->USHORT->unsigned short
209 public ushort Reserved1;
211 /// USHORT->unsigned short
212 public ushort StringIndex;
214 /// USHORT->unsigned short
215 public ushort Reserved2;
217 /// USHORT->unsigned short
218 public ushort DesignatorIndex;
220 /// USHORT->unsigned short
221 public ushort Reserved3;
223 /// USHORT->unsigned short
224 public ushort DataIndex;
226 /// USHORT->unsigned short
227 public ushort Reserved4;
233 [StructLayoutAttribute(LayoutKind.Explicit, Pack = 1)]
234 public struct HIDP_BUTTON_CAPS
236 /// USAGE->USHORT->unsigned short
238 public ushort UsagePage;
240 /// UCHAR->unsigned char
242 public byte ReportID;
244 /// BOOLEAN->BYTE->unsigned char
248 /// USHORT->unsigned short
250 public ushort BitField;
252 /// USHORT->unsigned short
254 public ushort LinkCollection;
256 /// USAGE->USHORT->unsigned short
258 public ushort LinkUsage;
260 /// USAGE->USHORT->unsigned short
262 public ushort LinkUsagePage;
264 /// BOOLEAN->BYTE->unsigned char
268 /// BOOLEAN->BYTE->unsigned char
270 public bool IsStringRange;
272 /// BOOLEAN->BYTE->unsigned char
274 public bool IsDesignatorRange;
276 /// BOOLEAN->BYTE->unsigned char
278 public bool IsAbsolute;
282 [MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 10, ArraySubType = UnmanagedType.U4)]
283 public uint[] Reserved;
285 /// Union Range/NotRange
287 HIDP_BUTTON_CAPS_RANGE Range;
290 HIDP_BUTTON_CAPS_NOT_RANGE NotRange;
294 /// Type created in place of an anonymous struct
296 [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
297 public struct HIDP_VALUE_CAPS_RANGE
300 /// USAGE->USHORT->unsigned short
301 public ushort UsageMin;
303 /// USAGE->USHORT->unsigned short
304 public ushort UsageMax;
306 /// USHORT->unsigned short
307 public ushort StringMin;
309 /// USHORT->unsigned short
310 public ushort StringMax;
312 /// USHORT->unsigned short
313 public ushort DesignatorMin;
315 /// USHORT->unsigned short
316 public ushort DesignatorMax;
318 /// USHORT->unsigned short
319 public ushort DataIndexMin;
321 /// USHORT->unsigned short
322 public ushort DataIndexMax;
326 /// Type created in place of an anonymous struct
328 [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
329 public struct HIDP_VALUE_CAPS_NOT_RANGE
332 /// USAGE->USHORT->unsigned short
335 /// USAGE->USHORT->unsigned short
336 public ushort Reserved1;
338 /// USHORT->unsigned short
339 public ushort StringIndex;
341 /// USHORT->unsigned short
342 public ushort Reserved2;
344 /// USHORT->unsigned short
345 public ushort DesignatorIndex;
347 /// USHORT->unsigned short
348 public ushort Reserved3;
350 /// USHORT->unsigned short
351 public ushort DataIndex;
353 /// USHORT->unsigned short
354 public ushort Reserved4;
357 [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Explicit)]
358 public struct HIDP_VALUE_CAPS_UNION
362 [System.Runtime.InteropServices.FieldOffsetAttribute(0)]
363 public HIDP_VALUE_CAPS_RANGE Range;
366 [System.Runtime.InteropServices.FieldOffsetAttribute(0)]
367 public HIDP_VALUE_CAPS_NOT_RANGE NotRange;
370 [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
371 public struct HIDP_VALUE_CAPS
374 /// USAGE->USHORT->unsigned short
375 public ushort UsagePage;
377 /// UCHAR->unsigned char
378 public byte ReportID;
380 /// BOOLEAN->BYTE->unsigned char
383 /// USHORT->unsigned short
384 public ushort BitField;
386 /// USHORT->unsigned short
387 public ushort LinkCollection;
389 /// USAGE->USHORT->unsigned short
390 public ushort LinkUsage;
392 /// USAGE->USHORT->unsigned short
393 public ushort LinkUsagePage;
395 /// BOOLEAN->BYTE->unsigned char
398 /// BOOLEAN->BYTE->unsigned char
399 public byte IsStringRange;
401 /// BOOLEAN->BYTE->unsigned char
402 public byte IsDesignatorRange;
404 /// BOOLEAN->BYTE->unsigned char
405 public byte IsAbsolute;
407 /// BOOLEAN->BYTE->unsigned char
410 /// UCHAR->unsigned char
411 public byte Reserved;
413 /// USHORT->unsigned short
414 public ushort BitSize;
416 /// USHORT->unsigned short
417 public ushort ReportCount;
420 [System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.ByValArray, SizeConst = 5, ArraySubType = System.Runtime.InteropServices.UnmanagedType.U2)]
421 public ushort[] Reserved2;
423 /// ULONG->unsigned int
424 public uint UnitsExp;
426 /// ULONG->unsigned int
430 public int LogicalMin;
433 public int LogicalMax;
436 public int PhysicalMin;
439 public int PhysicalMax;
442 public HIDP_VALUE_CAPS_UNION Union;