user32: Add a stub implementation of RegisterServicesProcess.
This commit is contained in:
parent
92e7fed80c
commit
91971561c1
|
@ -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 )
|
||||||
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue