Change type of mode argument to GETVDMPOINTER32W from DWORD to Word

oldstable
Uwe Bonnes 1999-02-17 10:20:30 +00:00 committed by Alexandre Julliard
parent db4d1c7d84
commit 29a96e1e0d
2 changed files with 3 additions and 3 deletions

View File

@ -420,7 +420,7 @@ file krnl386.exe
513 pascal LoadLibraryEx32W(ptr long long) LoadLibraryEx32W16 # Both NT/95
514 pascal16 FreeLibrary32W(long) FreeLibrary32 # Both NT/95
515 pascal GetProcAddress32W(long str) GetProcAddress32 # Both NT/95
516 pascal GetVDMPointer32W(segptr long) GetVDMPointer32W # Both NT/95
516 pascal GetVDMPointer32W(segptr word) GetVDMPointer32W # Both NT/95
517 pascal CallProc32W() WIN16_CallProc32W # Both NT/95
518 pascal CallProcEx32W() WIN16_CallProcEx32W # Both NT/95
519 stub EXITKERNELTHUNK

View File

@ -761,9 +761,9 @@ LPVOID WINAPI WOWGetVDMPointer(DWORD vp,DWORD nrofbytes,BOOL32 protected)
/**********************************************************************
* GetVDMPointer32W (KERNEL.516)
*/
LPVOID WINAPI GetVDMPointer32W(DWORD vp,DWORD mode)
LPVOID WINAPI GetVDMPointer32W(DWORD vp,WORD mode)
{
return WOWGetVDMPointer(vp,0,mode);
return WOWGetVDMPointer(vp,0,(DWORD)mode);
}
/**********************************************************************