[1/2] mshtml: Add support for IHTMLStyle3 interface

Jacek Caban jacek at codeweavers.com
Mon Feb 2 08:34:27 CST 2009


Alistair Leslie-Hughes wrote:
> Hi,
>
> Changelog:
>     mshtml: Add support for IHTMLStyle3 interface
>

+
+    hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle3, (void**)&style3);
+    ok(hres == S_OK, "Could not get IHTMLStyle3 iface: %08x\n", hres);
+    if(SUCCEEDED(hres)) {
+        IHTMLStyle3_Release(style3);
+    }

Please use style_iids to test QueryInterface calls.


Jacek






More information about the wine-devel mailing list