Commit 29a96e1e authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

Change type of mode argument to GETVDMPOINTER32W from DWORD to Word

parent db4d1c7d
......@@ -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
......
......@@ -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);
}
/**********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment