[NTVDM]: Fix compilation in STANDALONE mode.

CORE-9823 #resolve #comment Fixed in r68396!

svn path=/trunk/; revision=68396
This commit is contained in:
Hermès Bélusca-Maïto 2015-07-13 01:22:34 +00:00
parent 597a383e60
commit ef9c79d518

View file

@ -66,7 +66,7 @@ static VOID WINAPI DosSystemBop(LPWORD Stack)
ulDosKernelSize, ulDosKernelSize,
&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, DosKernelFileName,
(Success ? "succeeded" : "failed"), (Success ? "succeeded" : "failed"),
getDI(), 0x0000, getDI(), 0x0000,
@ -271,7 +271,7 @@ Command:
} }
/* Start the process from the command line */ /* 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) if (Result != ERROR_SUCCESS)
{ {
DisplayMessage(L"Could not start '%S'. Error: %u", AppName, Result); DisplayMessage(L"Could not start '%S'. Error: %u", AppName, Result);
@ -389,7 +389,7 @@ static VOID WINAPI DosInitialize(LPWORD Stack)
ulDosBiosSize, ulDosBiosSize,
&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, DosBiosFileName,
(Success ? "succeeded" : "failed"), (Success ? "succeeded" : "failed"),
0x0070, 0x0000, 0x0070, 0x0000,
@ -501,7 +501,8 @@ static VOID WINAPI DosStart(LPWORD Stack)
/* Start the process from the command line */ /* Start the process from the command line */
Result = DosStartProcess(ApplicationName, CommandLine, 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) if (Result != ERROR_SUCCESS)
{ {
DisplayMessage(L"Could not start '%S'. Error: %u", ApplicationName, Result); DisplayMessage(L"Could not start '%S'. Error: %u", ApplicationName, Result);