blob: 2786b64e03fdfbe06da7e3a14d16d45667e41f33 [file] [log] [blame]
Peter Maydelld8a26e92014-06-13 15:52:32 +01001/* Android console interface
2 *
3 * Copyright (c) 2014 Linaro Limited
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2 or later, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 */
18
19#ifndef ANDROID_CONSOLE_H
20#define ANDROID_CONSOLE_H
21
22#include "qemu-common.h"
23
24void android_console_kill(Monitor *mon, const QDict *qdict);
Peter Maydell6c40c332014-06-16 18:58:02 +010025void android_console_quit(Monitor *mon, const QDict *qdict);
Peter Maydell2cb027d2014-06-16 16:51:41 +010026void android_console_redir(Monitor *mon, const QDict *qdict);
27void android_console_redir_list(Monitor *mon, const QDict *qdict);
28void android_console_redir_add(Monitor *mon, const QDict *qdict);
29void android_console_redir_del(Monitor *mon, const QDict *qdict);
Peter Maydelld8a26e92014-06-13 15:52:32 +010030
Peter Maydell3a037cb2014-06-17 12:28:43 +010031void android_monitor_print_error(Monitor *mon, const char *fmt, ...);
32
Peter Maydelld8a26e92014-06-13 15:52:32 +010033#endif