diff options
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 |