Vm110 and Qt / C++

Hello, i’m using a vm110 with qt.
When i run linux, all work very well (i use libk8055).
When i run windows 7, things are a little more complicated.
In the driver provided by your website, there is only the dll, no headers. That’s why when i include K8055D.h, the system can’t found it !
I’ve tried with the .h and .lib that i find on the source code samples, it compile, but when i run my program, it crash.
I use qtcreator, i don’t know if i can have the program working without .h and .lib, is it possible to get these files ? (executable providen with the dll work)

Thanks.

The header file for the K8055 is in the CD folder \K8055_VM110 USB board\Demo PC soft source\BCB.
The file is for the original DLL only.
For the new DLL you have to add the declarations for the following functions (if used):
SearchDevices
SetCurrentDevice
Version

The file K8055D.lib in folder is for Borland C++Builder only.

Ok it work, i use the .h with the new dll and there is no problem anymore.
Thanks you !