Re: mshtml: Implement IHTMLImgElement get_Name

2009-12-13 Thread Jacek Caban
Hi Alistair, On 12/13/09 12:11 PM, Alistair Leslie-Hughes wrote: Hi, Changelog: mshtml: Implement IHTMLImgElement get_Name +nsres = nsIDOMHTMLImageElement_GetName(This->nsimg,&src_str); +if(NS_FAILED(nsres)) { +ERR("GetName failed: %08x\n", nsres); +

Re: mshtml: Implement IHTMLImgElement get_Name

2009-12-13 Thread Paul Vriens
On 12/13/2009 12:11 PM, Alistair Leslie-Hughes wrote: +ok_(__FILE__,line) (!lstrcmpW(sNameImage, tmp), "expected '%s' got '%s'\n", wine_dbgstr_w(sNameImage), wine_dbgstr_w(tmp)); Hi Alistair, Could you use strcmp_wa instead of lstrcmpW as that function is not present on Win9x/WinMe? --