comparison audacious/titlestring.h @ 1588:15d92c51bde6 trunk

[svn] - modified time (mtime) has been introduced into tuple - playlist makes use of mtime for scan control - xspf records and reads mtime
author yaz
date Wed, 23 Aug 2006 07:46:33 -0700
parents 705d4c089fce
children 936135be464f
comparison
equal deleted inserted replaced
1587:c073fd82ded6 1588:15d92c51bde6
30 * passing the struct to xmms_get_titlestring() it should be filled 30 * passing the struct to xmms_get_titlestring() it should be filled
31 * with appropriate field values. 31 * with appropriate field values.
32 */ 32 */
33 33
34 typedef struct { 34 typedef struct {
35 gint __size; /* Set by XMMS_NEW_TITLEINPUT() */ 35 gint __size; /* Set by bmp_title_input_new() */
36 gint __version; /* Ditto */ 36 gint __version; /* Ditto */
37 37
38 gchar *performer; /* %p */ 38 gchar *performer; /* %p */
39 gchar *album_name; /* %a */ 39 gchar *album_name; /* %a */
40 gchar *track_name; /* %t */ 40 gchar *track_name; /* %t */
44 gchar *genre; /* %g */ 44 gchar *genre; /* %g */
45 gchar *comment; /* %c */ 45 gchar *comment; /* %c */
46 gchar *file_name; /* %f */ 46 gchar *file_name; /* %f */
47 const gchar *file_ext; /* %e *//* is not always strdup'ed, see xmms_input_get_song_info and plugins! */ 47 const gchar *file_ext; /* %e *//* is not always strdup'ed, see xmms_input_get_song_info and plugins! */
48 gchar *file_path; /* %F */ 48 gchar *file_path; /* %F */
49 gint length; /* not displayable */ 49 gint length; /* not displayable */
50 gchar *formatter; /* not displayable */ 50 gchar *formatter; /* not displayable */
51 time_t mtime; /* time of modified */
51 } TitleInput; 52 } TitleInput;
52 53
53 typedef TitleInput BmpTitleInput; 54 typedef TitleInput BmpTitleInput;
54 55
55 56