mirror of
https://github.com/ipxe/ipxe
synced 2025-12-22 21:11:03 +03:00
Added execv() and system().
This commit is contained in:
22
src/include/gpxe/command.h
Normal file
22
src/include/gpxe/command.h
Normal file
@@ -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 */
|
||||
Reference in New Issue
Block a user