Code

main: do_input_event() returns bool
[ncmpc.git] / src / ncmpc.h
index a2f3aed4910c793075816ab29b036ac24bbccc79..5ac3ce5a5406e36e7564621b85c571d5ba8ac8a1 100644 (file)
 
 #include "command.h"
 
+#include <stdbool.h>
+
 /** put the terminal in a sane mode and stop/suspend ncmpc */
 void
 sigstop(void);
 
 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 */