blog

枪手亨利

博客园 首页 新随笔 联系 订阅 管理

 #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();
}

posted on 2005-11-01 13:21  henry  阅读(271)  评论(0)    收藏  举报