diff options
author | Christian Hesse <mail@eworm.de> | 2024-06-19 10:32:18 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2024-06-19 21:42:47 +0200 |
commit | 25448507c67822a3fa3433eebcb35a784bfe5be2 (patch) | |
tree | f7ce613c932e47df32751e6acd999fd3635911df /mpd-notification.h | |
parent | a07e7ec5d4e8477f731b12e1226d6775f5622f14 (diff) | |
download | mpd-notification-25448507c67822a3fa3433eebcb35a784bfe5be2.tar.gz mpd-notification-25448507c67822a3fa3433eebcb35a784bfe5be2.tar.zst |
support custom format at build time...
... and drop the option for oneline formatting. That can be
achived differently now.
Diffstat (limited to 'mpd-notification.h')
-rw-r--r-- | mpd-notification.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mpd-notification.h b/mpd-notification.h index a7f9453..6a07efc 100644 --- a/mpd-notification.h +++ b/mpd-notification.h @@ -56,8 +56,8 @@ void received_signal(int signal); /*** retrieve_artwork ***/ GdkPixbuf * retrieve_artwork(const char * music_dir, const char * uri); -/*** append_string ***/ -char * append_string(char * string, const char * format, const char delim, const char * s); +/*** format_text ***/ +char * format_text(const char* format, const char* title, const char* artist, const char* album); /*** main ***/ int main(int argc, char ** argv); |