I am trying to figure out if hid.dll is a part of KMDF or UMDF or none. I generally use it in my C# program like this :
[DllImport("hid.dll", SetLastError = true)]
internal static extern Boolean HidD_GetInputReport
(SafeFileHandle HiddevObject,
Byte[] lpReportbuff,
Int32 ReportbuffLen);
I wanted to use a similiar one for Linux
.What considerations i have to use.
The application where i am using it is for interacting with a sensor device.