Added RegisterSystemThread stub.

This commit is contained in:
Bertho Stultiens 1999-04-11 12:04:33 +00:00 committed by Alexandre Julliard
parent 0c12f37afd
commit af50474298
2 changed files with 9 additions and 1 deletions

View File

@ -436,7 +436,7 @@ init MAIN_UserInit
432 stdcall RegisterClipboardFormatW(wstr) RegisterClipboardFormatW 432 stdcall RegisterClipboardFormatW(wstr) RegisterClipboardFormatW
433 stdcall RegisterHotKey(long long long long) RegisterHotKey 433 stdcall RegisterHotKey(long long long long) RegisterHotKey
434 stdcall RegisterLogonProcess(long long) RegisterLogonProcess 434 stdcall RegisterLogonProcess(long long) RegisterLogonProcess
435 stub RegisterSystemThread 435 stdcall RegisterSystemThread(long long) RegisterSystemThread
436 stdcall RegisterTasklist (long) RegisterTaskList 436 stdcall RegisterTasklist (long) RegisterTaskList
437 stdcall RegisterWindowMessageA(str) RegisterWindowMessageA 437 stdcall RegisterWindowMessageA(str) RegisterWindowMessageA
438 stdcall RegisterWindowMessageW(wstr) RegisterWindowMessageW 438 stdcall RegisterWindowMessageW(wstr) RegisterWindowMessageW

View File

@ -564,3 +564,11 @@ BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
{ FIXME(win32,"(%08x,%08x),stub!\n", hcur, id); { FIXME(win32,"(%08x,%08x),stub!\n", hcur, id);
return TRUE; return TRUE;
} }
/***********************************************************************
* RegisterSystemThread (USER32.435)
*/
void RegisterSystemThread(DWORD flags, DWORD reserved)
{
FIXME(win32, "(%08lx, %08lx)\n", flags, reserved);
}