The information in this article applies to:
SUMMARYTo redirect the standard input (STDIN) for a console application named APP.EXE from a file named INPUT.TXT, the following syntax is used: app < input.txtHowever, the following syntax will not work when attempting to debug this application using WinDbg with STDIN redirected: windbg app < input.txtTo debug the application as desired, use windbg cmd /c "app < input.txt" MORE INFORMATION
This will allow WinDbg to debug whatever goes on in the cmd window. A
dialog box will be displayed that says "No symbolic Info for Debuggee."
This message refers to CMD.EXE; dismiss this dialog box. When the child
process (APP.EXE) is started, the command window will read "Stopped at
program entry point." To continue, type "g" at the command window. Note
that APP.EXE will begin executing, then you can open the source file and
set breakpoints. Additional query words: 3.10 3.50 4.00 95
Keywords : kbSDKWin32 kbDSupport |
Last Reviewed: December 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |