Re: import dll into visual studio 2008 project
Keymone wrote:
What do you mean by "include"? The closest I know is to "load
additional dlls" when you debug.
by include i mean use functions from dll in my application
You can use them if you know what they are. Do you? There is
no source code (judging from your original post) and there is no
even the header file which would bear the declarations of the
functions in the library. You can try to compose one yourself,
of course, but that's rather ugly. Better find the full package
which should contain the header that you can #include in your
source files.
"See dll functions in suggestions" - what do you mean? Compile which
project?
Ctrl+Space gives you suggestion
It gives you suggestions if the compiler knows what functions to
suggest. If you don't include any header, how would the compiler
know what to suggest?
Sure, somebody definitely can, as soon as you ask a specific
question.
specific question is how do i use functions from dll file in my
application?
You need to (a) include the header into the source files where you
intend to call the functions, (b) include the import library (the
..lib file) into the list of external libraries to link with. That
should generally be enough to build. Then you need to place the
actual DLL file where the system would find it when you start your
application (next to the application should be fine).
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask