diff options
author | Todd Zullinger <tmz@pobox.com> | 2008-08-01 14:29:34 -0400 |
---|---|---|
committer | Todd Zullinger <tmz@pobox.com> | 2008-11-14 12:12:59 -0500 |
commit | 34fd4b1612e2834b298ef37e350fbcfd6085d617 (patch) | |
tree | c651d79bfe52b33c0237295ca9ead8fb67d38744 | |
parent | f378f9bae5d33111aa78c692bb101c404b7d2237 (diff) | |
download | libgpod-34fd4b1612e2834b298ef37e350fbcfd6085d617.tar.gz libgpod-34fd4b1612e2834b298ef37e350fbcfd6085d617.tar.xz libgpod-34fd4b1612e2834b298ef37e350fbcfd6085d617.zip |
Documentation: add Itdb_SPLPref
-rw-r--r-- | src/itdb.h | 34 |
1 files changed, 24 insertions, 10 deletions
@@ -605,18 +605,32 @@ typedef enum { ITDB_SPLFIELD_ALBUMARTIST = 0x47 } ItdbSPLField; +/** + * Itdb_SPLPref: + * @liveupdate: Live Updating + * @checkrules: Match this number of rules. If set to 0, ignore rules. + * @checklimits: Limit to this number of @limittype. If 0, no limits. + * @limittype: an #ItdbLimitType + * @limitsort: an #ItdbLimitSort + * @limitvalue: The value typed next to "Limit type" + * @matchcheckedonly: Match only checked songs + * @reserved_int1: Reserved for future use + * @reserved_int2: Reserved for future use + * @reserved1: Reserved for future use + * @reserved2: Reserved for future use + * + * Smart Playlist preferences are for various flags that are not strictly smart + * playlist "rules." + */ struct _Itdb_SPLPref { - guint8 liveupdate; /* "live Updating" check box */ - guint8 checkrules; /* "Match X of the following - conditions" check box */ - guint8 checklimits; /* "Limit To..." check box */ - guint32 limittype; /* See types defined above */ - guint32 limitsort; /* See types defined above */ - guint32 limitvalue; /* The value typed next to "Limit - type" */ - guint8 matchcheckedonly; /* "Match only checked songs" check box */ - /* reserved for future use */ + guint8 liveupdate; + guint8 checkrules; + guint8 checklimits; + guint32 limittype; + guint32 limitsort; + guint32 limitvalue; + guint8 matchcheckedonly; gint32 reserved_int1; gint32 reserved_int2; gpointer reserved1; |