16 Sep
2025
16 Sep
'25
2:15 p.m.
Rémi Bernon (@rbernon) commented about dlls/windows.devices.enumeration/main.c:
+ struct aqs_expr *expr; + LONG ref; +}; + +static inline struct devquery_params *impl_from_IUnknown( IUnknown *iface ) +{ + return CONTAINING_RECORD( iface, struct devquery_params, IUnknown_iface ); +} + +static HRESULT WINAPI devquery_params_QueryInterface( IUnknown *iface, REFIID iid, void **out ) +{ + TRACE( "iface %p, iid %s, out %p\n", iface, debugstr_guid( iid ), out ); + + if (IsEqualGUID( iid, &IID_IUnknown )) + { + IUnknown_AddRef(( iface ));
IUnknown_AddRef( iface );
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8890#note_115968