是否有用于导出数据的GetProcAddress版本?

我想做类似的事情:

Mydll.cpp:

MyDataType::MyDataType(long, wchar_t*)
{
    //Dummy code
    this->temp = 3;
}
__declspec(dllexport) MyDataType Here(50, L"random text");


MyClient.cpp:

int main(void)
{
    HINSTANCE hData = LoadLibrary("MyDll.dll");
    reinterpret_cast<MyDataType*>(GetDataAddress(hData, "Here"))->DoSomething();
}


即,定义UDT(“ MyDataType”)的导出数据(“ Here”),并在动态加载DLL时获取其地址。这可能吗?

最佳答案

msdn页面上显示“从指定的动态链接库(DLL)检索导出的函数或变量的地址。” -即它应该工作(tm)

08-03 19:01