Hi

I am made a library project.

Now I want to use the functions of dll in another project.

As I am new to C++ I don't know how to import the dll and use its function.

Is there any tutorial that elaborates these things.

Thanks in advance
Karan

You use dll functions all the time in c++ programs. Every win32 api function and every standard c and c++ functions are contained in dlls. (they could also be statically linked, but that's for another discussion) So use your dll just like the others, include the header file and link with the *.lib that was produced with the dll.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.