错误:未声明的标识符:“OutputDebugString”

发布于 2024-11-29 07:47:11 字数 151 浏览 4 评论 0原文

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

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

发布评论

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

评论(2

呆橘 2024-12-06 07:47:11

它在 Windows 单元中声明。

It's declared in the Windows unit.

留一抹残留的笑 2024-12-06 07:47:11

在 Winapi 命名空间中的 Windows 单元中:

uses
   Winapi.Windows;

如何查找特定命令的单元:

  • 通过上下文菜单中的“查找定义”命令
  • 通过悬停鼠标调用的 Help Insight 信息
  • 或者仅使用 Windows Search 或流行的搜索工具

In windows unit in Winapi namespace:

uses
   Winapi.Windows;

How to find the unit of a specific command:

  • Through Find Definition command in the context menu
  • Through Help Insight information invoked by hovering the mouse
  • Or just use Windows Search or a popular search tool
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文