X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=common%2Fcommand.h;h=dafd4d0f38c0e68de555b08e90fc60d8e7af5ae3;hb=b2aa142ee0a88ae6c38798f33cf5d833b0ae3864;hp=4888f5ee0bbcf5e4de53127e715cc57fc66ce665;hpb=f4125707399d11a7d80587659c464b9bcddb8c56;p=max%2Ftmk_keyboard.git diff --git a/common/command.h b/common/command.h index 4888f5ee..dafd4d0f 100644 --- a/common/command.h +++ b/common/command.h @@ -18,8 +18,8 @@ along with this program. If not, see . #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