1 /** \file   uimon-fallback.h
2  * \brief   Fallback implementation for the ML-Monitor for when the VTE library
3  *          is not available - header
4  *
5  * \author  groepaz <groepaz@gmx.net>
6  */
7 
8 /*
9  * This file is part of VICE, the Versatile Commodore Emulator.
10  * See README for copyright notice.
11  *
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2 of the License, or
15  *  (at your option) any later version.
16  *
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; if not, write to the Free Software
24  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25  *  02111-1307  USA.
26  */
27 
28 #ifndef VICE_UIMONFALLBACK_H
29 #define VICE_UIMONFALLBACK_H
30 
31 #include "vice.h"
32 
33 #include <gtk/gtk.h>
34 
35 int consolefb_close_all(void);
36 int consolefb_init(void);
37 int consolefb_out(console_t *log, const char *format, ...);
38 console_t *uimonfb_window_open(void);
39 void uimonfb_window_close(void);
40 void uimonfb_window_suspend( void );
41 console_t *uimonfb_window_resume(void);
42 int uimonfb_out(const char *buffer);
43 char *uimonfb_get_in(char **ppchCommandLine, const char *prompt);
44 void uimonfb_notify_change( void );
45 void uimonfb_set_interface(struct monitor_interface_s **monitor_interface_init, int count);
46 
47 #endif
48