Author: fireball
Date: Sun May 20 15:29:22 2007
New Revision: 26844
URL:
http://svn.reactos.org/svn/reactos?rev=26844&view=rev
Log:
- Fix WebBrowser struct declaration to conform with a new WIDL.
Modified:
trunk/reactos/dll/win32/shdocvw/shdocvw.h
Modified: trunk/reactos/dll/win32/shdocvw/shdocvw.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shdocvw/shdocvw.…
==============================================================================
--- trunk/reactos/dll/win32/shdocvw/shdocvw.h (original)
+++ trunk/reactos/dll/win32/shdocvw/shdocvw.h Sun May 20 15:29:22 2007
@@ -61,7 +61,7 @@
typedef struct ConnectionPoint ConnectionPoint;
-typedef struct {
+struct WebBrowser {
/* Interfaces available via WebBrowser object */
const IWebBrowser2Vtbl *lpWebBrowser2Vtbl;
@@ -115,7 +115,7 @@
ConnectionPoint *cp_wbe2;
ConnectionPoint *cp_wbe;
ConnectionPoint *cp_pns;
-} WebBrowser;
+};
#define WEBBROWSER(x) ((IWebBrowser*) &(x)->lpWebBrowser2Vtbl)
#define WEBBROWSER2(x) ((IWebBrowser2*) &(x)->lpWebBrowser2Vtbl)