diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 417b93ef354..168ac803a9d 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -563,7 +563,7 @@ # @ stub RegisterMessagePumpHook @ stub RegisterNetworkCapabilities @ stdcall RegisterRawInputDevices(ptr long long) -@ stub RegisterServicesProcess +@ stdcall RegisterServicesProcess(long) @ stdcall RegisterShellHookWindow (long) @ stdcall RegisterSystemThread(long long) @ stdcall RegisterTasklist (long) diff --git a/dlls/user32/user_main.c b/dlls/user32/user_main.c index e8aadecd055..01b396d0a50 100644 --- a/dlls/user32/user_main.c +++ b/dlls/user32/user_main.c @@ -331,3 +331,12 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reason ) CloseHandle( pi.hThread ); return TRUE; } + +/*********************************************************************** + * RegisterServicesProcess (USER32.@) + */ +int WINAPI RegisterServicesProcess(DWORD ServicesProcessId) +{ + FIXME("(0x%x): stub\n", ServicesProcessId); + return 0; +}