blob: 26c82505c5621832dafee2a8d6dff6229615057f [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 Maydell2cb027d2014-06-16 16:51:41 +010025void android_console_redir(Monitor *mon, const QDict *qdict);
26void android_console_redir_list(Monitor *mon, const QDict *qdict);
27void android_console_redir_add(Monitor *mon, const QDict *qdict);
28void android_console_redir_del(Monitor *mon, const QDict *qdict);
Peter Maydelld8a26e92014-06-13 15:52:32 +010029
30#endif