mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-20 03:51:18 +00:00
15 lines
177 B
C
15 lines
177 B
C
|
#ifndef BMPX_H_
|
||
|
#define BMPX_H_
|
||
|
|
||
|
void update_bmpx(void);
|
||
|
struct bmpx_s {
|
||
|
char *title;
|
||
|
char *artist;
|
||
|
char *album;
|
||
|
char *uri;
|
||
|
int bitrate;
|
||
|
int track;
|
||
|
};
|
||
|
|
||
|
#endif /*BMPX_H_*/
|