1  /*
2   * UAE - The Un*x Amiga Emulator
3   *
4   * Interface to the Tcl/Tk GUI
5   *
6   * Copyright 1996 Bernd Schmidt
7   */
8 
9 #include "sysconfig.h"
10 #include "sysdeps.h"
11 
12 #include "options.h"
13 #include "gui.h"
14 
sigchldhandler(int foo)15 static void sigchldhandler(int foo)
16 {
17 }
18 
gui_init(int foo)19 int gui_init (int foo)
20 {
21     return 0;
22 }
23 
gui_update(void)24 int gui_update (void)
25 {
26     return 0;
27 }
28 
gui_exit(void)29 void gui_exit (void)
30 {
31 }
32 
gui_fps(int x)33 void gui_fps (int x)
34 {
35 }
36 
gui_led(int led,int on)37 void gui_led (int led, int on)
38 {
39 }
40 
gui_filename(int num,const char * name)41 void gui_filename (int num, const char *name)
42 {
43 }
44 
getline(char * p)45 static void getline (char *p)
46 {
47 }
48 
gui_handle_events(void)49 void gui_handle_events (void)
50 {
51 }
52 
gui_changesettings(void)53 void gui_changesettings (void)
54 {
55 }
56 
gui_update_gfx(void)57 void gui_update_gfx (void)
58 {
59 }
60 
gui_lock(void)61 void gui_lock (void)
62 {
63 }
64 
gui_unlock(void)65 void gui_unlock (void)
66 {
67 }
68