如何使C ++宏不逃避?

时间:2018-02-15 02:01:31

标签: c++ macros

我总是需要将此行复制到我的源文件中。

#import "C:\Program Files (x86)\Common Files\system\ado\msado15.dll" no_namespace rename("EOF","EndOfFile")

现在,我想将其定义为宏,例如

#define IMPORT_MSADO15 #import "C:\Program Files (x86)\Common Files\system\ado\msado15.dll" no_namespace rename("EOF","EndOfFile")

但它不起作用,因为宏中的#是转义码。

0 个答案:

没有答案