导入 msado15.dll 时出错

发布于 2024-10-05 17:03:54 字数 389 浏览 2 评论 0原文

我正在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

贪了杯 2024-10-12 17:04:26

你还需要重命名 EOF

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

不要问我为什么。

you also need to rename EOF

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

Don't ask me why.

柳若烟 2024-10-12 17:04:20

使用import而不是include

Use import rather than include.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文