2

我试图通过抓取其函数指针来从 DLL 调用导出的函数,GetProcAddress但在调用该函数时应用程序崩溃。

我使用dependencywalker 来查看导出的函数是否具有正确的名称。返回的地址GetProcAddress不为空。我几乎可以肯定它与调用约定有关,我都使用了__cdecl__stdcall没有成功。但是我确实想使用GetProcAdress而不是__declspec(dllimport).

DLL #1(调用者)

  • 将 DLL#2.lib 链接到此 DLL

    typedef void(__stdcall *ptr_init)(DWORD size);
    
    ctx.hModule = LoadLibraryA("someDLL.dll");
    ptr_init init = (ptr_init)GetProcAddress(ctx.hModule, "init");
    
    if (init == NULL) {
        out = out + " | init function is null";
    } else {
        out = out + " | init function found!";//It is found
    }
    
    DWORD test = 10;
    (*init)(test);//<-- makes application crash
    

DLL #2(包含导出函数的 DLL)

//header.h
extern "C" __declspec(dllexport) void init(DWORD size);

//source.cpp
extern "C" __declspec(dllexport) void init(DWORD size) {
    //code
}
4

1 回答 1

3

你应该保持一致。如果您检索指针作为指向stdcall函数的指针 - 它必须stdcall在实现中声明:

//header.h
extern "C" __declspec(dllexport) void __stdcall init(DWORD size);
于 2016-09-05T12:50:01.923 回答