summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/command.h
diff options
context:
space:
mode:
authorMichael Brown2006-12-08 02:23:11 +0100
committerMichael Brown2006-12-08 02:23:11 +0100
commitf3d817d512f0f0a33f3476c11da657f7bbe3c2f5 (patch)
tree009271f20f0808f79bf75243291e36b2e621aeaa /src/include/gpxe/command.h
parentAdded missing include of stdint.h (diff)
downloadipxe-f3d817d512f0f0a33f3476c11da657f7bbe3c2f5.tar.gz
ipxe-f3d817d512f0f0a33f3476c11da657f7bbe3c2f5.tar.xz
ipxe-f3d817d512f0f0a33f3476c11da657f7bbe3c2f5.zip
Added execv() and system().
Diffstat (limited to 'src/include/gpxe/command.h')
-rw-r--r--src/include/gpxe/command.h22
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 00000000..95f6c5ed
--- /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 */