1 /** \file c64ui.c
2 * \brief Headless C64 UI
3 *
4 * \author Marco van den Heuvel <blackystardust68@yahoo.com>
5 * \author Bas Wassink <b.wassink@ziggo.nl>
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
29 #include "vice.h"
30
31 #include <stdio.h>
32
33 #include "ui.h"
34 #include "c64ui.h"
35
36
37 /** \brief Pre-initialize the UI before the canvas window gets created
38 *
39 * \return 0 on success, -1 on failure
40 */
c64ui_init_early(void)41 int c64ui_init_early(void)
42 {
43 /* printf("%s\n", __func__); */
44 return 0;
45 }
46
47
48 /** \brief Initialize the UI
49 *
50 * \return 0 on success, -1 on failure
51 */
c64ui_init(void)52 int c64ui_init(void)
53 {
54 /* printf("%s\n", __func__); */
55 return 0;
56 }
57
58
59 /** \brief Shut down the UI
60 */
c64ui_shutdown(void)61 void c64ui_shutdown(void)
62 {
63 /* printf("%s\n", __func__); */
64 }
65