Peter Maydell | d8a26e9 | 2014-06-13 15:52:32 +0100 | [diff] [blame] | 1 | /* 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 | |
| 24 | void android_console_kill(Monitor *mon, const QDict *qdict); |
Peter Maydell | 6c40c33 | 2014-06-16 18:58:02 +0100 | [diff] [blame] | 25 | void android_console_quit(Monitor *mon, const QDict *qdict); |
Peter Maydell | 2cb027d | 2014-06-16 16:51:41 +0100 | [diff] [blame] | 26 | void android_console_redir(Monitor *mon, const QDict *qdict); |
| 27 | void android_console_redir_list(Monitor *mon, const QDict *qdict); |
| 28 | void android_console_redir_add(Monitor *mon, const QDict *qdict); |
| 29 | void android_console_redir_del(Monitor *mon, const QDict *qdict); |
Peter Maydell | d8a26e9 | 2014-06-13 15:52:32 +0100 | [diff] [blame] | 30 | |
Peter Maydell | 3a037cb | 2014-06-17 12:28:43 +0100 | [diff] [blame] | 31 | void android_monitor_print_error(Monitor *mon, const char *fmt, ...); |
| 32 | |
Peter Maydell | d8a26e9 | 2014-06-13 15:52:32 +0100 | [diff] [blame] | 33 | #endif |