I have a function inside a dll that I would like to call from my C ++ application. The DLL is also created in C ++ and has a def file that shows the functions present in the dll. I use visual studio 2010, and I configured it to use the dll file by adding the DLL to the "Additional Libraries" linker, and then adding the DLLname.lib to the "enter" linker. Now the entire namespace inside the dll is available, but the functions that I need are not available because they are not under any namespace. How do I access these features? These functions were declared as such in the dll.
#include "stdafx.h" #include <stdio.h> __declspec(dllexport) int somefunction() { ...... return SomeValue }
My question is: how do I access some function in my C ++ application through its dll.
source share