Top |
#define | RYGEL_TYPE_SEARCH_EXPRESSION |
struct | RygelSearchExpression |
struct | RygelSearchExpressionClass |
#define RYGEL_TYPE_SEARCH_EXPRESSION (rygel_search_expression_get_type ())
The type for RygelSearchExpression.
struct RygelSearchExpression { GTypeInstance parent_instance; volatile int ref_count; RygelSearchExpressionPrivate * priv; gpointer op; gpointer operand1; gpointer operand2; };
Represents a SearchExpression tree.
struct RygelSearchExpressionClass { GTypeClass parent_class; void (*finalize) (RygelSearchExpression *self); gboolean (*satisfied_by) (RygelSearchExpression* self, RygelMediaObject* media_object); gchar* (*to_string) (RygelSearchExpression* self); };
The class structure for RYGEL_TYPE_SEARCH_EXPRESSION
. All the fields in this structure are private and should never be accessed directly.