导入 msado15.dll 时出错
我正在尝试将 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"
I'm trying to import msado15.dll into my c++ project but I get a bunch of errors like these:
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
Here's my include directive:
#include "C:\program files\common files\system\ado\msado15.dll"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你还需要重命名 EOF
不要问我为什么。
you also need to rename EOF
Don't ask me why.
使用
import
而不是include
。Use
import
rather thaninclude
.