mprapi: Add stub for MprConfigServerConnect().
Fixes ARK Park start failure. Signed-off-by: Paul Gofman <pgofman@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e3a738b156
commit
2cb4bdb10a
|
@ -60,3 +60,15 @@ BOOL APIENTRY MprAdminIsServiceRunning(LPWSTR server)
|
|||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MprConfigServerConnect (MPRAPI.@)
|
||||
*/
|
||||
DWORD APIENTRY MprConfigServerConnect(LPWSTR server_name, HANDLE *hmprconfig)
|
||||
{
|
||||
FIXME("server_name %s, hmprconfig %p stub.\n", debugstr_w(server_name), hmprconfig);
|
||||
|
||||
*hmprconfig = NULL;
|
||||
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
@ stub MprConfigInterfaceTransportRemove
|
||||
@ stub MprConfigInterfaceTransportSetInfo
|
||||
@ stub MprConfigServerBackup
|
||||
@ stub MprConfigServerConnect
|
||||
@ stdcall MprConfigServerConnect(wstr ptr)
|
||||
@ stub MprConfigServerDisconnect
|
||||
@ stub MprConfigServerGetInfo
|
||||
@ stub MprConfigServerInstall
|
||||
|
|
Loading…
Reference in New Issue