Author: hbelusca
Date: Mon Jul 13 01:22:34 2015
New Revision: 68396
URL:
http://svn.reactos.org/svn/reactos?rev=68396&view=rev
Log:
[NTVDM]: Fix compilation in STANDALONE mode.
CORE-9823 #resolve #comment Fixed in r68396!
Modified:
trunk/reactos/subsystems/mvdm/ntvdm/dos/dem.c
Modified: trunk/reactos/subsystems/mvdm/ntvdm/dos/dem.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/mvdm/ntvdm/dos/…
==============================================================================
--- trunk/reactos/subsystems/mvdm/ntvdm/dos/dem.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/mvdm/ntvdm/dos/dem.c [iso-8859-1] Mon Jul 13 01:22:34 2015
@@ -66,7 +66,7 @@
ulDosKernelSize,
&ulDosKernelSize);
- DPRINT1("Windows NT DOS file '%s' loading %s at %04X:%04X, size
0x%X ; GetLastError() = %u\n",
+ DPRINT1("Windows NT DOS file '%s' loading %s at %04X:%04X, size
0x%X (Error: %u).\n",
DosKernelFileName,
(Success ? "succeeded" : "failed"),
getDI(), 0x0000,
@@ -271,7 +271,7 @@
}
/* Start the process from the command line */
- Result = DosStartProcess(AppName, CmdLine, Env, 0);
+ Result = DosStartProcess(AppName, CmdLine, Env, MAKELONG(getIP(), getCS()));
if (Result != ERROR_SUCCESS)
{
DisplayMessage(L"Could not start '%S'. Error: %u", AppName,
Result);
@@ -389,7 +389,7 @@
ulDosBiosSize,
&ulDosBiosSize);
- DPRINT1("DOS BIOS file '%s' loading %s at %04X:%04X, size 0x%X ;
GetLastError() = %u\n",
+ DPRINT1("DOS BIOS file '%s' loading %s at %04X:%04X, size 0x%X
(Error: %u).\n",
DosBiosFileName,
(Success ? "succeeded" : "failed"),
0x0070, 0x0000,
@@ -501,7 +501,8 @@
/* Start the process from the command line */
Result = DosStartProcess(ApplicationName, CommandLine,
- SEG_OFF_TO_PTR(SYSTEM_ENV_BLOCK, 0));
+ SEG_OFF_TO_PTR(SYSTEM_ENV_BLOCK, 0),
+ MAKELONG(getIP(), getCS()));
if (Result != ERROR_SUCCESS)
{
DisplayMessage(L"Could not start '%S'. Error: %u",
ApplicationName, Result);