user32: Add a stub implementation of RegisterServicesProcess.

This commit is contained in:
Rob Shearman 2008-01-01 22:35:41 +00:00 committed by Alexandre Julliard
parent 92e7fed80c
commit 91971561c1
2 changed files with 10 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}