diff options
Diffstat (limited to 'plugins/IEView/src/IEView.h')
-rw-r--r-- | plugins/IEView/src/IEView.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/IEView/src/IEView.h b/plugins/IEView/src/IEView.h index bb464d45e0..18f060a57e 100644 --- a/plugins/IEView/src/IEView.h +++ b/plugins/IEView/src/IEView.h @@ -374,6 +374,11 @@ extern "C" { #endif
+enum JS_FUNCTIONS
+{
+ DISPID_JS_DB_GET = 652
+};
+
class IEViewSink :public DWebBrowserEvents2 {
private:
int m_cRef;
@@ -508,6 +513,8 @@ private: STDMETHOD(SetZoneMapping)(DWORD dwZone, LPCWSTR lpszPattern, DWORD dwFlags);
STDMETHOD(GetZoneMappings)(DWORD dwZone, IEnumString **ppenumString, DWORD dwFlags);
+ STDMETHOD(SayHello)();
+
IHTMLDocument2 *getDocument();
WCHAR* getHrefFromAnchor(CComPtr<IHTMLElement> element);
WCHAR* getSelection();
|