错误:未声明的标识符:“OutputDebugString”
我在 Delphi 代码中使用 OutputDebugString,但收到错误:
错误:未声明的标识符:“OutputDebugString”
此 OutputDebugString 位于哪个包中?
I use OutputDebugString in my Delphi Code, but I receive the error:
Error: Undeclared identifier: 'OutputDebugString'
Which package is this OutputDebugString in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它在
Windows
单元中声明。It's declared in the
Windows
unit.在 Winapi 命名空间中的 Windows 单元中:
如何查找特定命令的单元:
In windows unit in Winapi namespace:
How to find the unit of a specific command: