Added RegisterSystemThread stub.
This commit is contained in:
parent
0c12f37afd
commit
af50474298
|
@ -436,7 +436,7 @@ init MAIN_UserInit
|
|||
432 stdcall RegisterClipboardFormatW(wstr) RegisterClipboardFormatW
|
||||
433 stdcall RegisterHotKey(long long long long) RegisterHotKey
|
||||
434 stdcall RegisterLogonProcess(long long) RegisterLogonProcess
|
||||
435 stub RegisterSystemThread
|
||||
435 stdcall RegisterSystemThread(long long) RegisterSystemThread
|
||||
436 stdcall RegisterTasklist (long) RegisterTaskList
|
||||
437 stdcall RegisterWindowMessageA(str) RegisterWindowMessageA
|
||||
438 stdcall RegisterWindowMessageW(wstr) RegisterWindowMessageW
|
||||
|
|
|
@ -564,3 +564,11 @@ BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
|
|||
{ FIXME(win32,"(%08x,%08x),stub!\n", hcur, id);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RegisterSystemThread (USER32.435)
|
||||
*/
|
||||
void RegisterSystemThread(DWORD flags, DWORD reserved)
|
||||
{
|
||||
FIXME(win32, "(%08lx, %08lx)\n", flags, reserved);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue