标签: c windows dll function-pointers
我在dll文件中有一个函数指针(在实现中,而不是标题)。如何在exe源代码中调用this指针指向的函数?
答案 0 :(得分:2)
你可以导出一个返回指针的函数。 部首:
typedef void ( *MyPtr ) (); __declspec( dllexport ) MyPtr GetMyPtr();
来源:
MyPtr GetMyPtr() { //retunr the function pointer here }