开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
Cross compiler
问题(Question):
请问以下程式码的macro是在做啥么?里面的##意思是啥?
最好能一步一步解释,愈详细愈好,感谢。
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
/* Creates an alias so file2alias.c can find device table. */
#define MODULE_DEVICE_TABLE(type, name) \
extern typeof(name) __mod_##type##__##name##_device_table \
__attribute__ ((unused, alias(__stringify(name))))