Files
Blocks3D/IEBrowser.h
MusicalProgrammer fe65f8945c IEBrowser class added
2018-07-07 20:55:18 -04:00

16 lines
290 B
C++

//#include "WindowFunctions.h"
#include <mshtml.h>
#include <exdisp.h>
//#include <Mshtmhst.h>
class IEBrowser {
public:
IEBrowser(HWND attachHWnd);
~IEBrowser(void);
bool navigateSyncURL(wchar_t* url);
private:
IWebBrowser2* webBrowser;
HWND hwnd;
IDispatch* spDocument;
};