diff options
Diffstat (limited to 'src/include/gpxe/command.h')
| -rw-r--r-- | src/include/gpxe/command.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/include/gpxe/command.h b/src/include/gpxe/command.h new file mode 100644 index 000000000..95f6c5ed5 --- /dev/null +++ b/src/include/gpxe/command.h @@ -0,0 +1,22 @@ +#ifndef _GPXE_COMMAND_H +#define _GPXE_COMMAND_H + +#include <gpxe/tables.h> + +/** A command-line command */ +struct command { + /** Name of the command */ + const char *name; + /** + * Function implementing the command + * + * @v argc Argument count + * @v argv Argument list + * @ret rc Return status code + */ + int ( * exec ) ( int argc, char **argv ); +}; + +#define __command __table ( commands, 01 ) + +#endif /* _GPXE_COMMAND_H */ |
