I've some "rogue" OutputDebugString call in my application which prints out "T", but I can't just locate it.
Is it possible somehow to set breakpoint on OutputDebugString -function and see where it is called from?
I'm using Delphi 2009.
I've some "rogue" OutputDebugString call in my application which prints out "T", but I can't just locate it.
Is it possible somehow to set breakpoint on OutputDebugString -function and see where it is called from?
I'm using Delphi 2009.
How many calls to OutputDebugString
are there in your project? You can use the "Find in Files" dialog to find them all, and if they aren't too many, there shouldn't be a problem.
Otherwise, you could - of course - use a search and replace and replace all OutputDebugString(
with raise Exception.Create(
.
You could also write a function
procedure OutputDebugString(const Str: string);
begin
raise Exception.Create(Str);
end;
in a unit used by every other unit in the project. If only this new unit is declared after Windows.pas
in the uses
list, this new function will be used instead of the Windows.pas one.
Yes, you can place breakpoints inside Windows.pas. First, in your project, go to Project Options, and under Debugging, select "Use debug DCUs". Then you can go to Windows.pas and place a breakpoint at line 30769:
procedure OutputDebugString; external kernel32 name 'OutputDebugStringW';
Done.
Now any call to OutputDebugString from your application will break at breakpoint. You can also turn on logging in breakpoint properties to log call stack.