8 Sep
2025
8 Sep
'25
9:45 a.m.
Rémi Bernon (@rbernon) commented about dlls/windows.devices.enumeration/aqs.h:
+}; + +struct expr_compare +{ + enum operator_compare op; + IPropertyDescription *prop_desc; + PROPVARIANT val; +}; + +struct aqs_expr +{ + enum operator_type op_type; + union { + struct expr_boolean boolean; + struct expr_compare compare; + } u;
};
I think nameless unions are usually preferred. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8890#note_115231