~ubuntu-branches/ubuntu/maverick/vice/maverick

« back to all changes in this revision

Viewing changes to src/arch/unix/uisettings.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050201113026-3eyakzsmmheclvjg
Tags: 1.16-1
* New upstream version
* Fixes crash on 64-bit architectures (closes: #287640)
* x128 working again (closes: #286767)
* Works fine with /dev/dsp in use (not in the main changelog, but tested
  on my local machine as working).  Presumably, this also takes care of
  the issue with dsp being held.  I'm not sure if this is because I'm
  testing it on a 2.6 kernel now -- if you are still having problems
  with /dev/dsp, please reopen the bugs. (closes: #152952, #207942)
* Don't kill Makefile.in on clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#ifndef _UI_SETTINGS_H
29
29
#define _UI_SETTINGS_H
30
30
 
31
 
#include "uimenu.h"
32
 
 
33
31
extern struct ui_menu_entry_s ui_performance_settings_menu[];
34
32
extern struct ui_menu_entry_s ui_fullscreen_settings_menu[];
35
33
extern struct ui_menu_entry_s ui_fullscreen_settings_submenu[];
36
 
extern struct ui_menu_entry_s ui_keyboard_settings_menu[];
37
34
extern struct ui_menu_entry_s ui_settings_settings_menu[];
38
35
extern struct ui_menu_entry_s ui_debug_settings_menu[];
39
 
extern UI_CALLBACK(ui_set_romset);
40
 
extern UI_CALLBACK(ui_load_romset);
41
 
extern UI_CALLBACK(ui_load_rom_file);
42
 
extern UI_CALLBACK(ui_unload_rom_file);
43
 
extern UI_CALLBACK(ui_dump_romset);
44
36
 
45
37
#endif
46
38