0

我正在将 C++ DLL 动态加载到用 C++ 编写的 exe 中。

我的要求是

1) 使用 LoadLibrary() 动态加载 DLL

2) 多次调用 GetProcAddress 以分配与在 DLL 中调用的函数相同的函数指针具有相同的签名。

3) 那么在调用第二个函数 (Function_2) 之前,我是否必须在我的代码中为 lpfn 函数指针释放任何资源?

//Function pointer
typedef int (__stdcall *EntryPoint)(int nContext, BYTE *pySeed, int nSeedSize, BYTE *pyKey, int *pnKeySize);

int main()
{
HMODULE hDllHandle = LoadLibrary("SA.dll");  // load dll

    if (hDllHandle)
    {
     EntryPoint lpfn= 0;

         if (lpfn = (EntryPoint)GetProcAddress(hDllHandle, "Function_1"))
         {
                 //call the function using lpfn
         }
         else
         {

         }
         //should I release any resources on lpfn before I call/assign 
         // second function  
         if (lpfn = (EntryPoint)GetProcAddress(hDllHandle, "Function_2"))
         {
                 //call the function using lpfn
         }
         else
         {

         }        
     }  
}
4

1 回答 1

0

嗯?该函数返回一个整数/地址。如果您在循环中重用变量 lpfn 左右,那么您的变量值将被覆盖。

当您不再需要它们时,您可能宁愿考虑释放您的字符串(函数名称)。

这个地址不像堆中需要特殊释放的块。

于 2019-06-04T16:08:43.787 回答