Rob Shearman : user32: Add a stub implementation of RegisterServicesProcess .
Module: wine Branch: master Commit: 91971561c1e1234a36752c6b6b3cbe4a13cd8b30 URL: http://source.winehq.org/git/wine.git/?a=commit;h=91971561c1e1234a36752c6b6b... Author: Rob Shearman <rob(a)codeweavers.com> Date: Tue Jan 1 22:35:41 2008 +0000 user32: Add a stub implementation of RegisterServicesProcess. --- dlls/user32/user32.spec | 2 +- dlls/user32/user_main.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletions(-) diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 417b93e..168ac80 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 e8aadec..01b396d 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; +}
participants (1)
-
Alexandre Julliard