What about DLL’s? How to basically make one in C++? There are several sample projects for Visual C++ that are DLL projects. The Visual Studio Project Wizard for DLL type projects builds all sorts of sample code for you to jump start your DLL project. Or did I misunderstand the question entirely?
you willuse the same header for dll, in dll implementation an in dllusilng. After you compile a dll. will result two files, a .dll and a .lib . When you want to use somethere the dll, link your project with that lib and use the same header for dllapi declaration.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.