Commit 91971561 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

user32: Add a stub implementation of RegisterServicesProcess.

parent 92e7fed8
...@@ -563,7 +563,7 @@ ...@@ -563,7 +563,7 @@
# @ stub RegisterMessagePumpHook # @ stub RegisterMessagePumpHook
@ stub RegisterNetworkCapabilities @ stub RegisterNetworkCapabilities
@ stdcall RegisterRawInputDevices(ptr long long) @ stdcall RegisterRawInputDevices(ptr long long)
@ stub RegisterServicesProcess @ stdcall RegisterServicesProcess(long)
@ stdcall RegisterShellHookWindow (long) @ stdcall RegisterShellHookWindow (long)
@ stdcall RegisterSystemThread(long long) @ stdcall RegisterSystemThread(long long)
@ stdcall RegisterTasklist (long) @ stdcall RegisterTasklist (long)
......
...@@ -331,3 +331,12 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reason ) ...@@ -331,3 +331,12 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reason )
CloseHandle( pi.hThread ); CloseHandle( pi.hThread );
return TRUE; return TRUE;
} }
/***********************************************************************
* RegisterServicesProcess (USER32.@)
*/
int WINAPI RegisterServicesProcess(DWORD ServicesProcessId)
{
FIXME("(0x%x): stub\n", ServicesProcessId);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment