2013-07-06 04:37:13 +00:00
|
|
|
/*
|
2013-06-11 07:08:15 +00:00
|
|
|
* Apple // emulator for Linux: Exported menu routines
|
|
|
|
*
|
|
|
|
* Copyright 1994 Alexander Jean-Claude Bottema
|
|
|
|
* Copyright 1995 Stephen Lee
|
|
|
|
* Copyright 1997, 1998 Aaron Culliney
|
|
|
|
* Copyright 1998, 1999, 2000 Michael Deutschmann
|
|
|
|
*
|
|
|
|
* This software package is subject to the GNU General Public License
|
2013-07-06 04:37:13 +00:00
|
|
|
* version 2 or later (your choice) as published by the Free Software
|
2013-06-11 07:08:15 +00:00
|
|
|
* Foundation.
|
|
|
|
*
|
2013-07-06 04:37:13 +00:00
|
|
|
* THERE ARE NO WARRANTIES WHATSOEVER.
|
2013-06-11 07:08:15 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef A2_INTERFACE_H
|
|
|
|
#define A2_INTERFACE_H
|
|
|
|
|
2013-10-06 08:31:58 +00:00
|
|
|
void c_interface_print( int x, int y, int cs, const char *s );
|
2013-07-06 04:37:13 +00:00
|
|
|
void c_interface_redo_bottom(); /* bit of a HACK? */
|
|
|
|
void c_load_interface_font();
|
|
|
|
void c_interface_keyboard_layout();
|
|
|
|
void c_interface_parameters();
|
|
|
|
void c_interface_exit();
|
|
|
|
void c_interface_translate_screen(char screen[24][41]);
|
|
|
|
void c_interface_select_diskette(int);
|
2013-06-11 07:08:15 +00:00
|
|
|
#endif
|