导入msado15.dll时出错

时间:2010-12-05 07:05:56

标签: c++ database dll compiler-errors ado

我正在尝试将msado15.dll导入到我的c ++项目中,但是我收到了很多这样的错误:

 error C2018: unknown character '0x40' 
 error C2146: syntax error : missing ';' before identifier 'ÿÿ¸'
 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

这是我的include指令:

#include "C:\program files\common files\system\ado\msado15.dll" 

2 个答案:

答案 0 :(得分:2)

使用import而不是include

答案 1 :(得分:2)

您还需要重命名EOF

#import "C:\program files\common files\system\ado\msado15.dll" rename("EOF", "EndOfFile")

不要问我为什么。