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