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.