summaryrefslogtreecommitdiffstats
path: root/common/command.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-10-16 04:20:49 +0200
committertmk <nobody@nowhere>2012-10-17 08:55:37 +0200
commite451c059296a4c9af7a476577fee64afb9965bca (patch)
tree2009c5193d43a47fa9f6973e46004cba583b57ba /common/command.h
parentf7a445e537243f886d9cb022bede18859c9bfd12 (diff)
downloadqmk_firmware-e451c059296a4c9af7a476577fee64afb9965bca.tar.gz
qmk_firmware-e451c059296a4c9af7a476577fee64afb9965bca.tar.xz
Fix commands
Diffstat (limited to 'common/command.h')
-rw-r--r--common/command.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/command.h b/common/command.h
index 4888f5ee0..dafd4d0f3 100644
--- a/common/command.h
+++ b/common/command.h
@@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef COMMAND_H
#define COMMAND
-uint8_t command_proc(void);
+bool command_proc(uint8_t code);
/* This allows to extend commands. Return 0 when command is not processed. */
-uint8_t command_extra(void);
+bool command_extra(uint8_t code);
#endif