Re: [1/3] scrrun: Implement IDictionary_Add and Count
Oct. 8, 2012
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
4918
Age (days ago)
4918
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard