#include <ExDisp.h>
void CAddFavoriteDlg::OnButtonAddFavorite()
{
CoInitialize(0);
IShellUIHelper* pShell = NULL;
HRESULT hr = CoCreateInstance(
CLSID_ShellUIHelper,
NULL,
CLSCTX_SERVER,
IID_IShellUIHelper,
( void** )&pShell
);
if( SUCCEEDED(hr) ) {
COleVariant vtTitle("Hahaha......Microsoft");
pShell->AddFavorite( OLESTR("http://www.microsoft.com"),&vtTitle );
pShell->Release();
}
CoUninitialize();
}