Skip to content
Snippets Groups Projects
Commit 2cb4bdb1 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard
Browse files

mprapi: Add stub for MprConfigServerConnect().


Fixes ARK Park start failure.

Signed-off-by: default avatarPaul Gofman <pgofman@codeweavers.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent e3a738b1
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment