Changeset 300

Show
Ignore:
Timestamp:
09/28/08 23:32:15 (2 months ago)
Author:
sleets
Message:

fixed mshtml

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/win32/mshtml.d

    r299 r300  
    121121    HRESULT get__newEnum(IUnknown*); 
    122122    HRESULT item(VARIANT,VARIANT,IDispatch* pDisp); 
    123     HRESULT tags(VARIANT,out IDispatch* pdisp); 
     123    HRESULT tags(VARIANT,IDispatch* pdisp); 
    124124} 
    125125alias IHTMLElementCollection LPHTMLELEMENTCOLLECTION; 
     
    282282 
    283283interface IHTMLElement : public IDispatch { 
    284     HRESULT setAttribute(BSTR,VARIANT,long); 
    285     HRESULT getAttribute(BSTR,long,VARIANT*); 
    286     HRESULT removeAttribute(BSTR,long,VARIANT_BOOL*); 
     284    HRESULT setAttribute(BSTR,VARIANT,LONG); 
     285    HRESULT getAttribute(BSTR,LONG,VARIANT*); 
     286    HRESULT removeAttribute(BSTR,LONG,VARIANT_BOOL*); 
    287287    HRESULT put_className(BSTR); 
    288     HRESULT get_className(out BSTR); 
     288    HRESULT get_className(ref BSTR); 
    289289    HRESULT put_id(BSTR); 
    290     HRESULT get_id(out BSTR); 
    291     HRESULT get_tagName(out BSTR); 
     290    HRESULT get_id(ref BSTR); 
     291    HRESULT get_tagName(ref BSTR); 
    292292    HRESULT get_parentElement(LPHTMLELEMENT*); 
    293293    HRESULT get_style(LPHTMLSTYLE*); 
     
    316316    HRESULT get_document(IDispatch*); 
    317317    HRESULT put_title(BSTR); 
    318     HRESULT get_title(out BSTR); 
     318    HRESULT get_title(ref BSTR); 
    319319    HRESULT put_language(BSTR); 
    320     HRESULT get_language(out BSTR); 
     320    HRESULT get_language(ref BSTR); 
    321321    HRESULT put_onselectstart(VARIANT); 
    322322    HRESULT get_onselectstart(VARIANT*); 
     
    326326    HRESULT get_recordNumber(VARIANT*); 
    327327    HRESULT put_lang(BSTR); 
    328     HRESULT get_lang(out BSTR); 
     328    HRESULT get_lang(ref BSTR); 
    329329    HRESULT get_offsetLeft(long*); 
    330330    HRESULT get_offsetTop(long*); 
     
    335335    HRESULT get_innerHTML(out BSTR); 
    336336    HRESULT put_innerText(BSTR); 
    337     HRESULT get_innerText(out BSTR); 
     337    HRESULT get_innerText(ref BSTR); 
    338338    HRESULT put_outerHTML(BSTR); 
    339     HRESULT get_outerHTML(out BSTR); 
     339    HRESULT get_outerHTML(ref BSTR); 
    340340    HRESULT put_outerText(BSTR); 
    341     HRESULT get_outerText(out BSTR); 
     341    HRESULT get_outerText(ref BSTR); 
    342342    HRESULT insertAdjacentHTML(BSTR,BSTR); 
    343343    HRESULT insertAdjacentText(BSTR,BSTR);