I have created a dll in c++ using __declspec(dllexport) before class name. Now when i try to use it in another c++ program it crashes in between. When i debugged it i found that the function pointer is not initialized at all. help me plz.
using namespace std;
typedef void (*func)();
int main()
{
func funcpointer;
HINSTANCE xyz = LoadLibrary(TEXT("C:\\extra\\dll\\dlls\\debug\\random.dll"));
funcpointer = (func)GetProcAddress(xyz,"get it");
funcpointer();
return 0;
}
Thanks in advance.
__declspec(dllexport)on a class, but are trying to import a function. If you export a class that way, you can pretty much only import it using__declspec(dllimport), you can't useGetProcAddress. If you used__declspec(dllexport)on a function, the name is likely decorated and you'll have to use the decorated name in the call toGetProcAddress(use depends.exe or something to see what the decorated name is). – Sven Jul 22 '11 at 6:26