Document XapiBootDash

This commit is contained in:
Luke Usher 2016-09-15 08:45:34 +01:00
parent 98859d9422
commit ce3ab7e945
1 changed files with 5 additions and 5 deletions

View File

@ -834,17 +834,17 @@ VOID WINAPI XTL::EmuXapiThreadStartup
// ****************************************************************** // ******************************************************************
// * func: EmuXapiBootDash // * func: EmuXapiBootDash
// ****************************************************************** // ******************************************************************
VOID WINAPI XTL::EmuXapiBootDash(DWORD UnknownA, DWORD UnknownB, DWORD UnknownC) VOID WINAPI XTL::EmuXapiBootDash(DWORD dwReason, DWORD dwParameter1, DWORD dwParameter2)
{ {
EmuSwapFS(); // Win2k/XP FS EmuSwapFS(); // Win2k/XP FS
DbgPrintf("EmuXapi (0x%X): EmuXapiBootDash\n" DbgPrintf("EmuXapi (0x%X): EmuXapiBootDash\n"
"(\n" "(\n"
" UnknownA : 0x%.08X\n" " dwReason : 0x%.08X\n"
" UnknownB : 0x%.08X\n" " dwParameter1 : 0x%.08X\n"
" UnknownC : 0x%.08X\n" " dwParameter2 : 0x%.08X\n"
");\n", ");\n",
GetCurrentThreadId(), UnknownA, UnknownB, UnknownC); GetCurrentThreadId(), dwReason, dwParameter1, dwParameter2);
CxbxKrnlCleanup("Emulation Terminated (XapiBootDash)"); CxbxKrnlCleanup("Emulation Terminated (XapiBootDash)");