8 Aug
2025
8 Aug
'25
10:17 a.m.
Piotr Caban (@piotr) commented about dlls/vccorlib140/vccorlib.c:
return RoGetActivationFactory(str, iid, out); } + +HRESULT WINAPI GetIidsFn(UINT32 len, UINT32 *copied, const GUID *src, GUID **dest) +{ + FIXME("(%I32u, %p, %p, %p) stub\n", len, copied, src, dest);
Could you please use `unsigned int` instead of `UINT32` and print it with `%u` format string? Also, it looks like `count` is a better name for first argument. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8741#note_112489