Code

command: move get_keyboard_command() to keyboard.c
[ncmpc.git] / src / ncmpc.h
index 0b6441850a4972f14cf9921b726ab7868947af1b..2ca79ad55b2f1e07f024743aeae312a4c20c4e4b 100644 (file)
@@ -1,5 +1,5 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2010 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
 
 #include "command.h"
 
-/** put the terminal in a sane mode and stop/suspend ncmpc */
-void
-sigstop(void);
+#include <stdbool.h>
 
 void begin_input_event(void);
 void end_input_event(void);
-int do_input_event(command_t cmd);
+
+/**
+ * @return false if the application shall quit
+ */
+bool
+do_input_event(command_t cmd);
 
 #endif /* NCMPC_H */