Author: hbelusca Date: Sat Nov 9 15:53:52 2013 New Revision: 60898
URL: http://svn.reactos.org/svn/reactos?rev=60898&view=rev Log: [NTVDM]: Improve DisplayMessage by also displaying the message in the debug log.
Modified: branches/ntvdm/subsystems/ntvdm/ntvdm.c
Modified: branches/ntvdm/subsystems/ntvdm/ntvdm.c URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/subsystems/ntvdm/ntvdm.c?r... ============================================================================== --- branches/ntvdm/subsystems/ntvdm/ntvdm.c [iso-8859-1] (original) +++ branches/ntvdm/subsystems/ntvdm/ntvdm.c [iso-8859-1] Sat Nov 9 15:53:52 2013 @@ -41,6 +41,7 @@
va_start(Parameters, Format); _vsnwprintf(Buffer, 256, Format, Parameters); + DPRINT1("\n\nNTVDM Subsystem\n%S\n\n", Buffer); MessageBoxW(NULL, Buffer, L"NTVDM Subsystem", MB_OK); va_end(Parameters); }