GeckoWrapper.dll V22 release

来源:互联网 发布:商场女装品牌 知乎 编辑:程序博客网 时间:2024/06/08 04:17

geckoWrapper V22 mainly wrapper gecko v22.0 to geckoWrapper.dll,you can use it on your project freely.
download (136MB):  geckoWrapperV22.rar

1.at first:

   
    COhuiApp theApp;
    theApp.InitXpCom();//Init xpcom
    CMainFrame* pMainFrame=new CMainFrame();
    HWND hWnd = pMainFrame->Create((HWND)0, 0, hInstance, dwStyle); // create window

2.second:

    pMainFrame->m_pBrowserWrapper->CreateBrowser(hWnd); //create gecko wrapper
    pMainFrame->m_pBrowserWrapper->LoadURL(sUrl.c_str()); //load url
....

3.at last.release resource.
    delete pMainFrame;
    theApp.ExitXpCom();

that's all.


原创粉丝点击