aboutsummaryrefslogtreecommitdiff
path: root/android-commands.h
blob: a8a9075897ff894e9b1274c0818feed90d1fd028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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, },
};