home · contact · privacy
Removed unused client command id.
[plomrogue] / src / client / command_db.h
index 0d4ffbae8e3653a5748b4de3b07bd257ca41215d..9ed55d9f0700dab80cf2a9f66bf561607561a83d 100644 (file)
@@ -15,7 +15,6 @@ struct Command
 {
     char * dsc_short; /* short string name of command to be used internally */
     char * dsc_long;  /* long string description of command for the user */
-    uint8_t id;       /* unique identifier of command */
 };
 
 struct CommandDB
@@ -26,9 +25,6 @@ struct CommandDB
 
 
 
-/* Give short description of command ("dsc_short"), get its ID. */
-extern uint8_t get_command_id(char * dsc_short);
-
 /* Give short description of command ("dsc_short"), get long description. */
 extern char * get_command_longdsc(char * dsc_short);