Commit ca042b29 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

inetcpl: Implement LaunchInternetControlPanel.

parent 6d9e5162
......@@ -162,3 +162,24 @@ LONG CALLBACK CPlApplet(HWND hWnd, UINT command, LPARAM lParam1, LPARAM lParam2)
return FALSE;
}
/*********************************************************************
* LaunchInternetControlPanel (inetcpl.@)
*
* Launch the Internet Control Panel dialog
*
* PARAMS
* parent [I] Handle for the parent window
*
* RETURNS
* Success: TRUE
*
* NOTES
* rundll32 callable function: rundll32 inetcpl.cpl,LaunchInternetControlPanel
*
*/
BOOL WINAPI LaunchInternetControlPanel(HWND parent)
{
display_cpl_sheets(parent);
return TRUE;
}
......@@ -8,7 +8,7 @@
@ stub ImportExportPFX
@ stub LaunchAddSitesDialog
@ stub LaunchConnectionDialog
@ stub LaunchInternetControlPanel
@ stdcall LaunchInternetControlPanel(long)
@ stub LaunchPerSitePrivacyActionDialog
@ stub LaunchPopupWindowManagementDialog
@ stub LaunchPrivacyDialog
......
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