|
PatchworkOS
|
Structure defining a ctl command. More...
#include <ctl.h>
Data Fields | |
| const char * | name |
| The name of the command. | |
| ctl_func_t | func |
| The function to call for the command. | |
| uint64_t | argcMin |
| The minimum number of arguments accepted by func. | |
| uint64_t | argcMax |
| The maximum number of arguments accepted by func. | |
| uint64_t ctl_t::argcMax |
The maximum number of arguments accepted by func.
Definition at line 66 of file ctl.h.
Referenced by ctl_dispatch().
| uint64_t ctl_t::argcMin |
| ctl_func_t ctl_t::func |
The function to call for the command.
Definition at line 64 of file ctl.h.
Referenced by ctl_dispatch().
| const char* ctl_t::name |