Code

mpdclient: removed the mpdclient_t typedef
[ncmpc.git] / src / filelist.h
index 7904016bc07e86dfbadad2d4058a7071bfc521a4..0f1f0c09d30cb77cc3f001234352f91d3f4496d0 100644 (file)
 
 struct mpd_song;
 
-typedef struct filelist_entry {
+struct filelist_entry {
        guint flags;
        struct mpd_entity *entity;
-} filelist_entry_t;
+};
 
-typedef struct filelist {
+struct filelist {
        /* the list */
        GPtrArray *entries;
-} mpdclient_filelist_t;
+};
 
 struct filelist *
 filelist_new(void);