david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/command.h
2006-12-08 01:23:11 +00:00

23 lines
428 B
C

#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 */