static HRESULT WINAPI HTMLStyleSheetsCollection_get_length(IHTMLStyleSheetsCollection *iface, LONG *p) { HTMLStyleSheetsCollection *This = impl_from_IHTMLStyleSheetsCollection(iface); UINT32 len = 0; TRACE("(%p)->(%p)\n", This, p); if(This->nslist) nsIDOMStyleSheetList_GetLength(This->nslist, &len); *p = len; return S_OK; }
static HRESULT WINAPI HTMLStyleSheetsCollection_get_length(IHTMLStyleSheetsCollection *iface, long *p) { HTMLStyleSheetsCollection *This = HTMLSTYLESHEETSCOL_THIS(iface); PRUint32 len = 0; TRACE("(%p)->(%p)\n", This, p); if(This->nslist) nsIDOMStyleSheetList_GetLength(This->nslist, &len); *p = len; return S_OK; }