LoadLibraryExW spec added (function was there).
SetProcessPriorityBoost stub added.
This commit is contained in:
parent
c9e1950021
commit
05e2d3b456
|
@ -510,8 +510,8 @@ type win32
|
||||||
493 stdcall LCMapStringW(long long wstr long ptr long) LCMapString32W
|
493 stdcall LCMapStringW(long long wstr long ptr long) LCMapString32W
|
||||||
494 stdcall LeaveCriticalSection(ptr) LeaveCriticalSection
|
494 stdcall LeaveCriticalSection(ptr) LeaveCriticalSection
|
||||||
495 stdcall LoadLibraryA(str) LoadLibrary32A
|
495 stdcall LoadLibraryA(str) LoadLibrary32A
|
||||||
496 stdcall LoadLibraryExA(str long long) LoadLibraryEx32A
|
496 stdcall LoadLibraryExA( str long long) LoadLibraryEx32A
|
||||||
497 stub LoadLibraryExW
|
497 stdcall LoadLibraryExW(wstr long long) LoadLibraryEx32W
|
||||||
498 stdcall LoadLibraryW(wstr) LoadLibrary32W
|
498 stdcall LoadLibraryW(wstr) LoadLibrary32W
|
||||||
499 stdcall LoadModule(str ptr) LoadModule32
|
499 stdcall LoadModule(str ptr) LoadModule32
|
||||||
500 stdcall LoadResource(long long) LoadResource32
|
500 stdcall LoadResource(long long) LoadResource32
|
||||||
|
@ -905,7 +905,7 @@ type win32
|
||||||
888 stub SetConsoleInputExeNameA
|
888 stub SetConsoleInputExeNameA
|
||||||
889 stub SetConsoleInputExeNameW
|
889 stub SetConsoleInputExeNameW
|
||||||
890 stub SetProcessAffinityMask
|
890 stub SetProcessAffinityMask
|
||||||
891 stub SetProcessPriorityBoost
|
891 stdcall SetProcessPriorityBoost(long long) SetProcessPriorityBoost
|
||||||
892 stub SetThreadIdealProcessor
|
892 stub SetThreadIdealProcessor
|
||||||
893 stub SetThreadPriorityBoost
|
893 stub SetThreadPriorityBoost
|
||||||
894 stub SetWaitableTimer
|
894 stub SetWaitableTimer
|
||||||
|
|
|
@ -696,6 +696,16 @@ BOOL32 WINAPI SetProcessShutdownParameters(DWORD level,DWORD flags)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SetProcessPriorityBoost (KERNEL32)
|
||||||
|
*/
|
||||||
|
BOOL32 WINAPI SetProcessPriorityBoost(HANDLE32 hprocess,BOOL32 disableboost)
|
||||||
|
{
|
||||||
|
FIXME(process,"(%d,%d): stub\n",hprocess,disableboost);
|
||||||
|
/* Say we can do it. I doubt the program will notice that we don't. */
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* ReadProcessMemory (KERNEL32)
|
* ReadProcessMemory (KERNEL32)
|
||||||
* FIXME: check this, if we ever run win32 binaries in different addressspaces
|
* FIXME: check this, if we ever run win32 binaries in different addressspaces
|
||||||
|
@ -853,4 +863,3 @@ void PROCESS_ResumeOtherThreads(void)
|
||||||
|
|
||||||
SYSTEM_UNLOCK();
|
SYSTEM_UNLOCK();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue