Rémi Bernon (@rbernon) commented about dlls/winegstreamer/unix_private.h:
GST_DEBUG_CATEGORY_EXTERN(wine); #define GST_CAT_DEFAULT wine
+#define ELEMENT_HAS_PROPERTY(element, property) \
(!!g_object_class_find_property(G_OBJECT_CLASS(GST_ELEMENT_GET_CLASS((element))), (property)))
Any reason for this to be a macro? Why not inline it in the if?