inetcpl: Implement LaunchInternetControlPanel.
This commit is contained in:
parent
6d9e5162d6
commit
ca042b2922
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue