1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 23:19:08 +00:00
conky/src/xmms2.h

28 lines
356 B
C
Raw Normal View History

#ifndef XMMS2_H_
#define XMMS2_H_
struct xmms2_s {
char *artist;
char *album;
char *title;
char *genre;
char *comment;
char *url;
char *date;
char* playlist;
int tracknr;
int bitrate;
unsigned int id;
int duration;
int elapsed;
int timesplayed;
float size;
float progress;
char *status;
};
void update_xmms2(void);
#endif /*XMMS2_H_*/