IEBrowser class added

This commit is contained in:
MusicalProgrammer
2018-07-07 20:55:18 -04:00
parent ee1258b177
commit fe65f8945c
9 changed files with 147 additions and 47 deletions

15
IEBrowser.h Normal file
View File

@@ -0,0 +1,15 @@
//#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;
};