If I have a native C++ windows program (i.e. the entry point is WinMain) how do I view output from console functions like std::cout?
|
|
Check out Adding Console I/O to a Win32 GUI App. This may help you do what you want. If you don't have, or can't modify the code, try the suggestions found here to redirect console output to a file. |
|||||||
|
|
You can also reopen the cout and cerr streams to output to a file as well. The following should work for this:
|
|||
|
|
|
This link might offer some help, depending on whether you are trying to read your output, or another applications: |
|||
|
|
|
Don't quote me on this, but the Win32 console API might be what you're looking for. If you're just doing this for debugging purposes, however, you might be more interested in running DebugView and calling the DbgPrint function. This of course assumes its your application you want sending console output, not reading it from another application. In that case, pipes might be your friend. |
|||
|
|
|
Since there's no console window, this is Is it possible for you to replace your output calls? I will often use TRACE or OutputDebugString to send information to the Visual Studio output window. |
||||
|
|
creating a pipe, execute the program console CreateProcess() and read with ReadFile() or writes in console WriteFile()
} |
|||
|
|