krnl386.exe: Remove 16 suffix on Get/SetProcessDword since there's no 32-bit version.
This commit is contained in:
parent
e1705151a9
commit
5b6a24cc7c
|
@ -643,7 +643,7 @@ DWORD WINAPI MapProcessHandle( HANDLE hProcess )
|
|||
* SetProcessDword (KERNEL.484)
|
||||
* 'Of course you cannot directly access Windows internal structures'
|
||||
*/
|
||||
void WINAPI SetProcessDword16( DWORD dwProcessID, INT offset, DWORD value )
|
||||
void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
|
||||
{
|
||||
TRACE("(%d, %d)\n", dwProcessID, offset );
|
||||
|
||||
|
@ -684,7 +684,7 @@ void WINAPI SetProcessDword16( DWORD dwProcessID, INT offset, DWORD value )
|
|||
* GetProcessDword (KERNEL.485)
|
||||
* 'Of course you cannot directly access Windows internal structures'
|
||||
*/
|
||||
DWORD WINAPI GetProcessDword16( DWORD dwProcessID, INT offset )
|
||||
DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
|
||||
{
|
||||
DWORD x, y;
|
||||
STARTUPINFOW siw;
|
||||
|
|
|
@ -386,8 +386,8 @@
|
|||
481 pascal -ret16 _LeaveWin16Lock() _LeaveWin16Lock
|
||||
482 pascal LoadSystemLibrary32(str) LoadLibrary32_16 # FIXME!
|
||||
483 pascal MapProcessHandle(long) MapProcessHandle
|
||||
484 pascal SetProcessDword(long s_word long) SetProcessDword16
|
||||
485 pascal GetProcessDword(long s_word) GetProcessDword16
|
||||
484 pascal SetProcessDword(long s_word long) SetProcessDword
|
||||
485 pascal GetProcessDword(long s_word) GetProcessDword
|
||||
486 pascal FreeLibrary32(long) FreeLibrary32_16
|
||||
487 pascal GetModuleFileName32(long str word) GetModuleFileName32_16
|
||||
488 pascal GetModuleHandle32(str) GetModuleHandle32_16
|
||||
|
@ -566,7 +566,7 @@
|
|||
@ varargs -arch=win32 k32wsprintfA(str str)
|
||||
@ stdcall -arch=win32 k32wvsprintfA(ptr str ptr)
|
||||
@ stdcall -arch=win32 -register CommonUnimpStub()
|
||||
@ stdcall -arch=win32 GetProcessDword16(long long)
|
||||
@ stdcall -arch=win32 GetProcessDword(long long)
|
||||
@ stdcall -arch=win32 DosFileHandleToWin32Handle(long)
|
||||
@ stdcall -arch=win32 Win32HandleToDosFileHandle(long)
|
||||
@ stdcall -arch=win32 DisposeLZ32Handle(long)
|
||||
|
|
Loading…
Reference in New Issue