diff options
Diffstat (limited to 'src/screen_browser.h')
-rw-r--r-- | src/screen_browser.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/screen_browser.h b/src/screen_browser.h index 5441f41c7..eb1133610 100644 --- a/src/screen_browser.h +++ b/src/screen_browser.h @@ -26,6 +26,8 @@ #include "mpdclient.h" #include "config.h" +#include <stdbool.h> + struct list_window; struct list_window_state; @@ -67,4 +69,8 @@ int browser_handle_mouse_event(struct screen_browser *browser, mpdclient_t *c); #define browser_handle_mouse_event(browser, c) (0) #endif +bool +browser_cmd(struct screen_browser *browser, struct screen *screen, + struct mpdclient *c, command_t cmd); + #endif |