1 /** \file   cbm2ui.c
2  * \brief   Headless CBM2 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 "cbm2ui.h"
34 
35 
36 /** \brief  Pre-initialize the UI before the canvas window gets created
37  *
38  * \return  0 on success, -1 on failure
39  */
cbm2ui_init_early(void)40 int cbm2ui_init_early(void)
41 {
42     /* printf("%s\n", __func__); */
43 
44     return 0;
45 }
46 
47 
48 /** \brief  Initialize the UI
49  *
50  * \return  0 on success, -1 on failure
51  */
cbm2ui_init(void)52 int cbm2ui_init(void)
53 {
54     /* printf("%s\n", __func__); */
55 
56     return 0;
57 }
58 
59 
60 /** \brief  Shut down the UI
61  */
cbm2ui_shutdown(void)62 void cbm2ui_shutdown(void)
63 {
64     /* printf("%s\n", __func__); */
65 
66     /* NOP */
67 }
68