mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[NTVDM]: Fix compilation in STANDALONE mode.
CORE-9823 #resolve #comment Fixed in r68396! svn path=/trunk/; revision=68396
This commit is contained in:
parent
597a383e60
commit
ef9c79d518
1 changed files with 5 additions and 4 deletions
|
@ -66,7 +66,7 @@ static VOID WINAPI DosSystemBop(LPWORD Stack)
|
|||
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 @@ Command:
|
|||
}
|
||||
|
||||
/* 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 @@ static VOID WINAPI DosInitialize(LPWORD Stack)
|
|||
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 @@ static VOID WINAPI DosStart(LPWORD Stack)
|
|||
|
||||
/* 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);
|
||||
|
|
Loading…
Reference in a new issue