Re: ole32: implement IEnumFORMATETC_Next_Stub (2/2)
2008/10/23 Austin English <austinenglish(a)gmail.com>:
- FIXME(":stub\n"); - return E_NOTIMPL; + + HRESULT hr; + *pceltFetched = 0; + hr = IEnumFORMATETC_Next(This, + celt, + rgelt, + pceltFetched); + if (hr == S_OK) *pceltFetched = celt; + return hr;
This file uses 4-space indentation. -- Rob Shearman
2008/10/24 Rob Shearman <robertshearman(a)gmail.com>:
2008/10/23 Austin English <austinenglish(a)gmail.com>:
- FIXME(":stub\n"); - return E_NOTIMPL; + + HRESULT hr; + *pceltFetched = 0; + hr = IEnumFORMATETC_Next(This, + celt, + rgelt, + pceltFetched); + if (hr == S_OK) *pceltFetched = celt; + return hr;
This file uses 4-space indentation.
Also, since this function is very closely related to IEnumFORMATETC_Next_Proxy, you should send the two changes in the same patch. -- Rob Shearman
participants (1)
-
Rob Shearman