我在dll文件中有一个函数指针(在实现中,不是头)。如何调用exe源代码中此指针指向的函数?

最佳答案

可以导出返回指针的函数。
页眉:

typedef void ( *MyPtr ) ();

__declspec( dllexport ) MyPtr GetMyPtr();

来源:
MyPtr GetMyPtr()
{
  //retunr the function pointer here
}

09-08 10:13