Add definition for IXMLAttribute.

oldstable
Vijay Kiran Kamuju 2005-06-22 18:29:35 +00:00 committed by Alexandre Julliard
parent 234dc4b2d2
commit 9feda99e3c
1 changed files with 14 additions and 0 deletions

View File

@ -176,6 +176,20 @@ typedef struct _xml_error {
DWORD _reserved2;
} XML_ERROR;
[
local,
object,
uuid(d4d4a0fc-3b73-11d1-b2b4-00c04fb92596)
]
interface IXMLAttribute : IDispatch
{
[propget, id(DISPID_XMLATTRIBUTE_NAME)]
HRESULT name( [retval, out] BSTR *p );
[propget, id(DISPID_XMLATTRIBUTE_VALUE)]
HRESULT value( [retval, out] BSTR *p );
}
[
local,
object,