这些宏和 typedef 有啥作用?如何将其扩展到成员函数?
Posted
技术标签:
【中文标题】这些宏和 typedef 有啥作用?如何将其扩展到成员函数?【英文标题】:What do these macros and typedefs do? How to expand it to member functions?这些宏和 typedef 有什么作用?如何将其扩展到成员函数? 【发布时间】:2015-12-17 08:24:57 【问题描述】:我正在尝试理解这段代码并对其进行扩展。 我已经添加了一些关于我认为它的作用的 cmets,但有人可以澄清一下。 一个是动态链接库,另一个是可执行文件。它们是分开编译的。
在DLL的头文件中:
#define INITIALIZE_WINDOW(name) void name()
// ^ Macro replacing all instances of INITIALIZE_WINDOW
typedef INITIALIZE_WINDOW(initialize_window);
// ^ Equivalent to typedef void initialize_window();
// ^ What's the purpose of this statement? Is it to let the executable know about its existence?
在 DLL 的源文件中:
INITIALIZE_WINDOW(InitializeWindow) /* Do stuff */
// ^ Equivalent to void InitializeWindow();
// ^ GetProcAddress() gets an address to this function
在可执行文件的源文件中:
initialize_window* initializeWindow = (initialize_window*)GetProcAddress(dllHandle, "InitializeWindow");
// ^ Retrieve the address of InitializeWindow() but cast it as an initialize_window pointer?
// ^ Equivalent to void (*initializeWindow)() = (initialize_window*)GetProcAddress(...); Is this correct?
最终在此基础上进行扩展。我将如何宏成员函数并为它们使用 GetProcAddress()?
【问题讨论】:
你不能也不应该在成员函数上使用GetProcAddress
。
【参考方案1】:
宏的目标是强制执行正确的类型。
你做了正确的替换:
typedef INITIALIZE_WINDOW(initialize_window);
等价于
using initialize_window = void (); // function taking nothing returning void
所以initialize_window*
是一个函数指针(void(*)()
)。
InitializeWindow函数定义:
void InitializeWindow() /**/
【讨论】:
【参考方案2】:这是一个函数 typedef。
typedef void initialize_window()
使initialize_window
成为void()
类型的别名,void()
是一种不带参数(在 C++ 中)或采用未指定但恒定数量的参数(在 C 中)并返回 void
的函数类型。
initialize_window*
因此是指向类型void()
的指针,即void(*)()
,即函数指针。
【讨论】:
以上是关于这些宏和 typedef 有啥作用?如何将其扩展到成员函数?的主要内容,如果未能解决你的问题,请参考以下文章