X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fsong_paint.h;h=46fbfe8bd653cf37438dcfe4ff6ca870c6a90f05;hb=3af5c3a185fc23b8fb9d528a9c0a14f70093ac70;hp=9136fba89c875a884aa8786dac9f475cde326f16;hpb=5acc319b99f1e179f81e0034ca6714954831467c;p=ncmpc.git diff --git a/src/song_paint.h b/src/song_paint.h index 9136fba..46fbfe8 100644 --- a/src/song_paint.h +++ b/src/song_paint.h @@ -1,5 +1,5 @@ /* ncmpc (Ncurses MPD Client) - * (c) 2004-2009 The Music Player Daemon Project + * (c) 2004-2017 The Music Player Daemon Project * Project homepage: http://musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -15,18 +15,15 @@ * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -*/ + */ #ifndef NCMPC_SONG_PAINT_H #define NCMPC_SONG_PAINT_H -#include +#include "config.h" +#include "ncmpc_curses.h" -#ifdef HAVE_NCURSESW_NCURSES_H -#include -#else -#include -#endif +#include struct mpd_song; struct hscroll; @@ -42,10 +39,11 @@ struct hscroll; * @param highlight true if the row is highlighted * @param song the song object * @param hscroll an optional hscroll object + * @param format the song format */ void paint_song_row(WINDOW *w, unsigned y, unsigned width, bool selected, bool highlight, const struct mpd_song *song, - struct hscroll *hscroll); + struct hscroll *hscroll, const char *format); #endif