Hi i'm using Qt under windows 7 and makin a program with that needs to include som libraries and they only comes like idl files. how do i use them in my project do i have to compile the or something?
Hi i'm using Qt under windows 7 and makin a program with that needs to include som libraries and they only comes like idl files. how do i use them in my project do i have to compile the or something?
What kind of idl?
Is it COM interfaces?
In principal, you should find out how these libs are generally linked against, then use that method with your Qt application.
Qt applications are normal c++ apps!
==========================signature=============== ==================
S.O.L.I.D principles (use them!):
https://en.wikipedia.org/wiki/SOLID_...iented_design)
Do you write clean code? - if you are TDD'ing then maybe, if not, your not writing clean code.
The .idl files are the API files for a video capture card that i have and want to write a application to, i have written a simple program for it in c++ in Ubuntu but now i want to use it on windows and need to rewrite it some, in Linux the library files came as a .h file that i just included but for windows it came as a .idl file and i can't find out how to use it.
Do you have the library binary for windows?The .idl files are the API files for a video capture card that i have and want to write a application to,
IDL's are just interface definition, without the actual working code in a lib, or source code that you can compile you can't use them. (to my knowledge)
==========================signature=============== ==================
S.O.L.I.D principles (use them!):
https://en.wikipedia.org/wiki/SOLID_...iented_design)
Do you write clean code? - if you are TDD'ing then maybe, if not, your not writing clean code.
Bookmarks