- Fix WebBrowser struct declaration to conform with a new WIDL.

svn path=/trunk/; revision=26844
This commit is contained in:
Aleksey Bragin 2007-05-20 11:29:22 +00:00
parent 486714fd5a
commit cc557fcbd2

View file

@ -61,7 +61,7 @@ extern HRESULT SHDOCVW_GetShellInstanceObjectClassObject(REFCLSID rclsid,
typedef struct ConnectionPoint ConnectionPoint; typedef struct ConnectionPoint ConnectionPoint;
typedef struct { struct WebBrowser {
/* Interfaces available via WebBrowser object */ /* Interfaces available via WebBrowser object */
const IWebBrowser2Vtbl *lpWebBrowser2Vtbl; const IWebBrowser2Vtbl *lpWebBrowser2Vtbl;
@ -115,7 +115,7 @@ typedef struct {
ConnectionPoint *cp_wbe2; ConnectionPoint *cp_wbe2;
ConnectionPoint *cp_wbe; ConnectionPoint *cp_wbe;
ConnectionPoint *cp_pns; ConnectionPoint *cp_pns;
} WebBrowser; };
#define WEBBROWSER(x) ((IWebBrowser*) &(x)->lpWebBrowser2Vtbl) #define WEBBROWSER(x) ((IWebBrowser*) &(x)->lpWebBrowser2Vtbl)
#define WEBBROWSER2(x) ((IWebBrowser2*) &(x)->lpWebBrowser2Vtbl) #define WEBBROWSER2(x) ((IWebBrowser2*) &(x)->lpWebBrowser2Vtbl)