aboutsummaryrefslogtreecommitdiff
path: root/android-commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'android-commands.h')
-rw-r--r--android-commands.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/android-commands.h b/android-commands.h
new file mode 100644
index 0000000000..a8a9075897
--- /dev/null
+++ b/android-commands.h
@@ -0,0 +1,19 @@
+/* hand-written for now; consider .hx autogen */
+
+static mon_cmd_t android_cmds[] = {
+ {
+ .name = "help|h|?",
+ .args_type = "name:S?",
+ .params = "",
+ .help = "print a list of commands",
+ .mhandler.cmd = do_help_cmd,
+ },
+ {
+ .name = "kill",
+ .args_type = "",
+ .params = "",
+ .help = "kill the emulator instance",
+ .mhandler.cmd = android_console_kill,
+ },
+ { NULL, NULL, },
+};