diff options
Diffstat (limited to '')
-rw-r--r-- | src/wreadln.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wreadln.h b/src/wreadln.h index e1ac67318..e745025d3 100644 --- a/src/wreadln.h +++ b/src/wreadln.h @@ -11,6 +11,8 @@ #include <ncurses.h> #endif +#ifndef NCMPC_MINI + /* completion callback data */ extern void *wrln_completion_callback_data; @@ -23,6 +25,8 @@ typedef void (*wrln_gcmp_post_cb_t) (GCompletion *gcmp, gchar *s, GList *l, void *data); extern wrln_gcmp_post_cb_t wrln_post_completion_callback; +#endif + /* Note, wreadln calls curs_set() and noecho(), to enable cursor and * disable echo. wreadln will not restore these settings when exiting! */ gchar *wreadln(WINDOW *w, /* the curses window to use */ |