File:  [UNIX Amiga Emulator] / uae / src / od-pOS / pos-gui.c
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 17:17:23 2018 UTC (8 years, 3 months ago) by root
Branches: MAIN, BSchmidt
CVS tags: uae0826, HEAD
uae-0.8.26

 /*
  * UAE - The Un*x Amiga Emulator
  *
  * GUI interface (to be done).
  * Calls AREXX interface.
  *
  * Copyright 1996 Bernd Schmidt, Samuel Devulder
  */

#include "sysconfig.h"
#include "sysdeps.h"

#include "options.h"
#include "gui.h"

int quit_program;

/****************************************************************************/

extern void rexx_led(int led, int on);          /* amirexx.c */
extern void rexx_filename(int num, const char *name);
extern void rexx_handle_events(void);
extern void main_window_led(int led, int on);   /* amiga.c */

/****************************************************************************/

int gui_init(void)
{
    quit_program = 0;
    return 0;
}

/****************************************************************************/

void gui_exit(void)
{
}

/****************************************************************************/

int gui_update(void)
{
 return 0;
}

/****************************************************************************/

void gui_led(int led, int on)
{
    main_window_led(led, on);
    rexx_led(led, on);
}

/****************************************************************************/

void gui_filename(int num, const char *name)
{
    rexx_filename(num, name);
}

/****************************************************************************/

void gui_handle_events(void)
{
    rexx_handle_events();
}

/****************************************************************************/


unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.