mirror of
https://github.com/itsmattkc/dotnet9x.git
synced 2025-01-22 09:11:55 -05:00
patch ngen.exe
Not really necessary, just thought I'd give it a shot for completeness
This commit is contained in:
parent
d50fa15304
commit
2185b7ce3e
3 changed files with 7 additions and 0 deletions
BIN
patches/ngen.exe.bdf
Normal file
BIN
patches/ngen.exe.bdf
Normal file
Binary file not shown.
|
@ -17,6 +17,7 @@ EXPORTS
|
|||
PeekMessageW=CORUSR_PeekMessageW
|
||||
PeekMessageA=CORUSR_PeekMessageA
|
||||
EnumThreadWindows=CORUSR_EnumThreadWindows
|
||||
MsgWaitForMultipleObjects=CORUSR_MsgWaitForMultipleObjects
|
||||
MsgWaitForMultipleObjectsEx=CORUSR_MsgWaitForMultipleObjectsEx
|
||||
TranslateMessage=CORUSR_TranslateMessage
|
||||
CharNextExA=CORUSR_CharNextExA
|
||||
|
|
|
@ -121,6 +121,12 @@ BOOL WINAPI CORUSR_InSendMessage()
|
|||
// Reimplementations
|
||||
//
|
||||
|
||||
DWORD WINAPI CORUSR_MsgWaitForMultipleObjects(DWORD nCount, const HANDLE* pHandles, BOOL fWaitAll, DWORD dwMilliseconds, DWORD dwWakeMask)
|
||||
{
|
||||
Trace(TRACE_IMPLEMENTED, "MsgWaitForMultipleObjects");
|
||||
return WaitForMultipleObjects(nCount, pHandles, fWaitAll, dwMilliseconds);
|
||||
}
|
||||
|
||||
DWORD WINAPI CORUSR_MsgWaitForMultipleObjectsEx(DWORD nCount, const HANDLE* pHandles, DWORD dwMilliseconds, DWORD dwWakeMask, DWORD dwFlags)
|
||||
{
|
||||
Trace(TRACE_IMPLEMENTED, "MsgWaitForMultipleObjectsEx");
|
||||
|
|
Loading…
Reference in a new issue