|
|
1.1 root 1: /*
2: * UAE - The Un*x Amiga Emulator
3: *
4: * GUI interface (to be done).
5: * Calls AREXX interface.
6: *
7: * Copyright 1996 Bernd Schmidt, Samuel Devulder
8: */
9:
10: #include "sysconfig.h"
11: #include "sysdeps.h"
12:
13: #include "options.h"
14: #include "gui.h"
15:
16: /****************************************************************************/
17:
18: extern void rexx_led(int led, int on); /* ami-rexx.c */
19: extern void rexx_filename(int num, const char *name);
20: extern void rexx_handle_events(void);
21: extern void main_window_led(int led, int on); /* ami-win.c */
22:
23: /****************************************************************************/
24:
25: int gui_init(void)
26: {
27: return 0;
28: }
29:
30: /****************************************************************************/
31:
32: void gui_exit(void)
33: {
34: }
35:
36: /****************************************************************************/
37:
38: int gui_update(void)
39: {
40: return 0;
41: }
42:
43: /****************************************************************************/
44:
45: void gui_led(int led, int on)
46: {
47: main_window_led(led, on);
48: rexx_led(led, on);
49: }
50:
51: /****************************************************************************/
52:
53: void gui_filename(int num, const char *name)
54: {
55: rexx_filename(num, name);
56: }
57:
58: /****************************************************************************/
59:
60: void gui_handle_events(void)
61: {
62: rexx_handle_events();
63: }
64:
65: /****************************************************************************/
66:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.