Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2cb4bdb1
Commit
2cb4bdb1
authored
Mar 04, 2021
by
Paul Gofman
Committed by
Alexandre Julliard
Mar 04, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
>
parent
e3a738b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
mprapi.c
dlls/mprapi/mprapi.c
+12
-0
mprapi.spec
dlls/mprapi/mprapi.spec
+1
-1
No files found.
dlls/mprapi/mprapi.c
View file @
2cb4bdb1
...
@@ -60,3 +60,15 @@ BOOL APIENTRY MprAdminIsServiceRunning(LPWSTR server)
...
@@ -60,3 +60,15 @@ BOOL APIENTRY MprAdminIsServiceRunning(LPWSTR server)
return
FALSE
;
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
;
}
dlls/mprapi/mprapi.spec
View file @
2cb4bdb1
...
@@ -82,7 +82,7 @@
...
@@ -82,7 +82,7 @@
@ stub MprConfigInterfaceTransportRemove
@ stub MprConfigInterfaceTransportRemove
@ stub MprConfigInterfaceTransportSetInfo
@ stub MprConfigInterfaceTransportSetInfo
@ stub MprConfigServerBackup
@ stub MprConfigServerBackup
@ st
ub MprConfigServerConnect
@ st
dcall MprConfigServerConnect(wstr ptr)
@ stub MprConfigServerDisconnect
@ stub MprConfigServerDisconnect
@ stub MprConfigServerGetInfo
@ stub MprConfigServerGetInfo
@ stub MprConfigServerInstall
@ stub MprConfigServerInstall
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment