mirror of
https://github.com/reactos/reactos.git
synced 2026-06-02 01:11:03 +08:00
[MPRAPI] Add MprConfigServerConnect stub
This stub is required to make WinXPs ifmon.dll work when the user runs netsh.exe and changes into the interface context.
This commit is contained in:
@@ -81,3 +81,20 @@ BOOL APIENTRY MprAdminIsServiceRunning(LPWSTR server)
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MprConfigServerConnect (MPRAPI.@)
|
||||
*/
|
||||
DWORD
|
||||
APIENTRY
|
||||
MprConfigServerConnect(
|
||||
_In_ LPWSTR lpwsServerName,
|
||||
_Out_ HANDLE *phMprConfig)
|
||||
{
|
||||
FIXME("(%s %p): stub!\n", debugstr_w(lpwsServerName), phMprConfig);
|
||||
|
||||
if (phMprConfig == NULL)
|
||||
return ERROR_INVALID_PARAMETER;
|
||||
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
@@ -82,7 +82,7 @@
|
||||
@ stub MprConfigInterfaceTransportRemove
|
||||
@ stub MprConfigInterfaceTransportSetInfo
|
||||
@ stub MprConfigServerBackup
|
||||
@ stub MprConfigServerConnect
|
||||
@ stdcall MprConfigServerConnect(wstr ptr)
|
||||
@ stub MprConfigServerDisconnect
|
||||
@ stub MprConfigServerGetInfo
|
||||
@ stub MprConfigServerInstall
|
||||
|
||||
Reference in New Issue
Block a user