views:

51

answers:

1

I'm doing some HiD programming and I'm trying to locate HiD.lib file to add to my .pro Qt file. However I can't find it. Below is an excerpt of said file:

win32:LIBS+=-lSetupAPI.lib -L"C:\Program Files\Microsoft SDKs\Windows\v6.0A\Lib" \
            -lKernel32.lib -L"C:\Program Files\Microsoft SDKs\Windows\v6.0A\Lib" \
            -lHid.lib -L"" #Looking for the relevant path

Thanks for your help.

edit: Could this library be buried now under something else?

+2  A: 

You need the Windows Driver Kit for the hid.lib.

Roku
I have Visual studio 2008 pro installed. I'm trying to re-create code in Qt.
Dark Star1
I think that even the Professional version doesn't contain the hid.lib, you still need the WDK.
Roku
Confirmed: driver development is sufficiently uncommon that it's not included by default.
MSalters
How come I can access the dll and develop in C#
Dark Star1