diff options
author | tmk <nobody@nowhere> | 2012-10-16 11:20:49 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-10-17 15:55:37 +0900 |
commit | e451c059296a4c9af7a476577fee64afb9965bca (patch) | |
tree | 2009c5193d43a47fa9f6973e46004cba583b57ba /common/command.h | |
parent | f7a445e537243f886d9cb022bede18859c9bfd12 (diff) |
Fix commands
Diffstat (limited to 'common/command.h')
-rw-r--r-- | common/command.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/command.h b/common/command.h index 4888f5ee0b..dafd4d0f38 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 |