[MPR] Implement the function WNetDisconnectDialog(). (#1522)

CORE-13516, CORE-13518
This commit is contained in:
Jared Smudde 2019-04-23 00:46:28 -05:00 committed by Hermès Bélusca-Maïto
parent d1404a7a2a
commit bf431dd278
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -2812,10 +2812,22 @@ DWORD WINAPI WNetConnectionDialog1W( LPCONNECTDLGSTRUCTW lpConnDlgStruct )
*/
DWORD WINAPI WNetDisconnectDialog( HWND hwnd, DWORD dwType )
{
#ifdef __REACTOS__
DWORD dwRet;
HMODULE hDll = LoadLibraryW(L"netplwiz.dll");
static BOOL (WINAPI *pSHDisconnectNetDrives)(PVOID);
pSHDisconnectNetDrives = (VOID *) GetProcAddress(hDll, "SHDisconnectNetDrives");
dwRet = pSHDisconnectNetDrives(NULL);
FreeLibrary(hDll);
return dwRet;
#else
FIXME( "(%p, %08X): stub\n", hwnd, dwType );
SetLastError(WN_NO_NETWORK);
return WN_NO_NETWORK;
#endif
}
/*********************************************************************