Commit 2cb4bdb1 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

mprapi: Add stub for MprConfigServerConnect().

Fixes ARK Park start failure. Signed-off-by: 's avatarPaul Gofman <pgofman@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent e3a738b1
......@@ -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
......
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