GetProcAddress失败

时间:2018-04-01 15:10:24

标签: c++ winapi

我在动态库中有一个好处,看起来像:

namespace Dll {
    int MyDll::getQ() {
        srand(time(0));
        int q = rand();
        while (!isPrime(q) || q < 100) {
            q = rand();
        }
        return q;
    }
}

.h文件中的函数getQ():

#ifdef _EXPORT
#define DLL_EXPORT __declspec(dllexport) 
#else
#define DLL_EXPORT __declspec(dllimport) 
#endif

namespace Dll
{
    class MyDll
    {
    public:
        static DLL_EXPORT int __stdcall getQ();
    }
}

最后来自另一个consoleApp的LoadLibrary代码安静:

typedef int(__stdcall *CUSTOM_FUNCTION)();
int main()
{

    HINSTANCE hinstance;
    CUSTOM_FUNCTION proccAddress;
    BOOL freeLibrarySuccess;
    BOOL proccAddressSuccess = FALSE;
    int result;

    hinstance = LoadLibrary(TEXT("Dll.dll"));
    if (hinstance != NULL)
    {
        proccAddress = (CUSTOM_FUNCTION)GetProcAddress(hinstance, "getQ");
        if (proccAddress != NULL)
        {
            proccAddressSuccess = TRUE;
            result = (*proccAddress)();
            printf("function called\n");
            printf("%d", result);
        }
        freeLibrarySuccess = FreeLibrary(hinstance);
    }

    if (!hinstance)
        printf("Unable to call the dll\n");

    if (!proccAddressSuccess)
        printf("Unable to call the function\n");
}

所以我尝试多次修复,但我总是得到“无法调用该函数”。代码连接到库,因此问题出在函数附近。 如果有人能指出我的错误,我将不胜感激。

1 个答案:

答案 0 :(得分:1)

您错过了Extern "C"

如果不这样做,名称将被c ++损坏,并且您无法仅使用getQ名称找到它们。另外,这样做是不可靠的,因为名称修改可能会改变。

另一个主题是:_stdcall vs _cdecl