Pregunta

I use OutputDebugString in my Delphi Code, but I receive the error:

Error: Undeclared identifier: 'OutputDebugString'

Which package is this OutputDebugString in?

¿Fue útil?

Solución

It's declared in the Windows unit.

Otros consejos

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
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top