This is more of a Windows problem than a desktop problem, but the Win32 application runtime disables all console output. This is fine for production, but makes debugging difficult. Using the AllocConsole function to create a console with hooks for stdin, stdout, and stderr should be sufficient.
This is more of a Windows problem than a desktop problem, but the Win32 application runtime disables all console output. This is fine for production, but makes debugging difficult. Using the
AllocConsolefunction to create a console with hooks for stdin, stdout, and stderr should be sufficient.