forked from tonioni/WinUAE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnogui.cpp
88 lines (68 loc) · 946 Bytes
/
nogui.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
* UAE - The Un*x Amiga Emulator
*
* Interface to the Tcl/Tk GUI
*
* Copyright 1996 Bernd Schmidt
*/
#include "sysconfig.h"
#include "sysdeps.h"
#include "config.h"
#include "options.h"
#include "gui.h"
static void sigchldhandler(int foo)
{
}
int gui_init (void)
{
return 0;
}
int gui_update (void)
{
return 0;
}
void gui_exit (void)
{
}
void gui_fps (int x)
{
}
void gui_led (int led, int on)
{
}
void gui_hd_led (int led)
{
}
void gui_cd_led (int led)
{
}
void gui_filename (int num, const char *name)
{
}
static void getline (char *p)
{
}
void gui_handle_events (void)
{
}
void gui_changesettings (void)
{
}
void gui_update_gfx (void)
{
}
void gui_lock (void)
{
}
void gui_unlock (void)
{
}
void gui_message (const char *format,...)
{
char msg[2048];
va_list parms;
va_start (parms,format);
vsprintf ( msg, format, parms);
va_end (parms);
write_log (msg);
}