Re: msxml3: Add IDispatchEx support to IXMLDOMElement (resend 2)

2009-09-09 Thread Alexandre Julliard
Alistair Leslie-Hughes leslie_alist...@hotmail.com writes: Hi, Feedback if something is wrong would be great. domdoc.c:601: warning: ISO C90 forbids mixed declarations and code -- Alexandre Julliard julli...@winehq.org

Re: msxml3: Add IDispatchEx support to IXMLDOMElement

2009-08-31 Thread Jacek Caban
Hi Alistair, Alistair Leslie-Hughes wrote: Hi, Changelog: msxml3: Add IDispatchEx support to IXMLDOMElement +static const tid_t domelem_iface_tids[] = { +IXMLDOMNode_tid, +IXMLDOMElement_tid, IXMLDOMElement inherits from IXMLDOMNode, so there is not need to add IXMLDOMNode

Re: [2/2] msxml3: Add IDispatchEx support to IXMLDOMElement

2009-08-20 Thread Jacek Caban
Hi Alistair, Alistair Leslie-Hughes wrote: Hi, Changelog: msxml3: Add IDispatchEx support to IXMLDOMElement +else if( IsEqualGUID( riid, IID_IDispatch ) || + IsEqualGUID( riid, IID_IDispatchEx ) ) +{ +xmlnode *node = impl_from_IXMLDOMNode( This-node

Re: [1/2] msxml3: Add IDispatchEx support to IXMLDOMElement

2009-08-12 Thread Jacek Caban
Alistair Leslie-Hughes wrote: Hi, Changelog: msxml3: Add IDispatchEx support to IXMLDOMElement @@ -46,6 +47,9 @@ typedef struct _domelem LONG ref; IUnknown *node_unk; IXMLDOMNode *node; + +/* IDispatchEx */ +DispatchEx dispex; } domelem; It would be probably