8 Oct
2012
8 Oct
'12
3:37 p.m.
Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> writes:
static HRESULT WINAPI dictionary_get_Count(IDictionary *iface, LONG *pCount) { dictionary *This = impl_from_IDictionary(iface);
- FIXME("(%p)->(%p)\n", This, pCount); + TRACE("(%p)->(%p)\n", This, pCount);
- *pCount = 0; + *pCount = list_count(&This->items);
You don't want to use list_count(). -- Alexandre Julliard julliard(a)winehq.org