Commit 05e2d3b4 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

LoadLibraryExW spec added (function was there).

SetProcessPriorityBoost stub added.
parent c9e19500
......@@ -510,8 +510,8 @@ type win32
493 stdcall LCMapStringW(long long wstr long ptr long) LCMapString32W
494 stdcall LeaveCriticalSection(ptr) LeaveCriticalSection
495 stdcall LoadLibraryA(str) LoadLibrary32A
496 stdcall LoadLibraryExA(str long long) LoadLibraryEx32A
497 stub LoadLibraryExW
496 stdcall LoadLibraryExA( str long long) LoadLibraryEx32A
497 stdcall LoadLibraryExW(wstr long long) LoadLibraryEx32W
498 stdcall LoadLibraryW(wstr) LoadLibrary32W
499 stdcall LoadModule(str ptr) LoadModule32
500 stdcall LoadResource(long long) LoadResource32
......@@ -905,7 +905,7 @@ type win32
888 stub SetConsoleInputExeNameA
889 stub SetConsoleInputExeNameW
890 stub SetProcessAffinityMask
891 stub SetProcessPriorityBoost
891 stdcall SetProcessPriorityBoost(long long) SetProcessPriorityBoost
892 stub SetThreadIdealProcessor
893 stub SetThreadPriorityBoost
894 stub SetWaitableTimer
......
......@@ -697,6 +697,16 @@ BOOL32 WINAPI SetProcessShutdownParameters(DWORD level,DWORD flags)
}
/***********************************************************************
* 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)
* FIXME: check this, if we ever run win32 binaries in different addressspaces
* ... and add a sizecheck
......@@ -853,4 +863,3 @@ void PROCESS_ResumeOtherThreads(void)
SYSTEM_UNLOCK();
}
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