Code

Update copyright notices
[ncmpc.git] / src / screen_browser.h
index 8589e75f6855ee502d7f6185b0a2c76ab2220560..6ba092194833ef9bf6756921dcefeaac4defef06 100644 (file)
@@ -1,5 +1,5 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2009 The Music Player Daemon Project
+ * (c) 2004-2010 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
 
  * This program is free software; you can redistribute it and/or modify
 
 #include <stdbool.h>
 
+#ifdef HAVE_NCURSESW_NCURSES_H
+#include <ncursesw/ncurses.h>
+#else
+#include <ncurses.h>
+#endif
+
 struct mpdclient;
 struct mpdclient_playlist;
 struct filelist;
@@ -54,6 +60,10 @@ screen_browser_sync_highlights(G_GNUC_UNUSED struct filelist *fl,
 
 #endif
 
+void
+screen_browser_paint_directory(WINDOW *w, unsigned width,
+                              bool selected, const char *name);
+
 void
 screen_browser_paint(const struct screen_browser *browser);