61 int defvals[MAX_MAXARGS]; |
61 int defvals[MAX_MAXARGS]; |
62 CommandDef* next; |
62 CommandDef* next; |
63 }; |
63 }; |
64 |
64 |
65 void ReadCommands (); |
65 void ReadCommands (); |
66 CommandDef* GetCommandByName (str a); |
66 CommandDef* FindCommand (str a); |
67 int GetReturnTypeByString (str token); |
67 int GetCommandType (str token); |
68 str GetReturnTypeName (int r); |
68 str GetReturnTypeName (int r); |
69 str GetCommandPrototype (CommandDef* comm); |
69 str GetCommandPrototype (CommandDef* comm); |
70 |
70 |
71 #ifndef __COMMANDS_CXX__ |
71 #ifndef __COMMANDS_CXX__ |
72 extern |
72 extern |