~ubuntu-branches/ubuntu/precise/vice/precise

« back to all changes in this revision

Viewing changes to src/arch/unix/gui/uilib.h

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2010-02-11 18:30:16 UTC
  • mfrom: (1.1.8 upstream) (9.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100211183016-f6n8usn3tzp0u6dp
Tags: 2.2.dfsg-1
* New upstream release, C64 DTV is included so update package description
  and add it to the menu.
* Drop patch fixing build failure with gcc-4.4 , applied upstream.
* Fix some lintian problems and clean up debian/rules .

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 *
25
25
 */
26
26
 
27
 
#ifndef _UILIB_H
28
 
#define _UILIB_H
29
 
 
30
 
extern void uilib_select_string(const char *resname, const char *title,
31
 
                                const char *name);
 
27
#ifndef VICE_UILIB_H
 
28
#define VICE_UILIB_H
 
29
 
 
30
extern void uilib_select_string(const char *resname, const char *title, const char *name);
 
31
 
 
32
typedef enum uilib_file_filter_enum_s {
 
33
    UILIB_FILTER_ALL,
 
34
    UILIB_FILTER_PALETTE,
 
35
    UILIB_FILTER_SNAPSHOT,
 
36
    UILIB_FILTER_DISK,
 
37
    UILIB_FILTER_TAPE,
 
38
    UILIB_FILTER_CARTRIDGE,
 
39
    UILIB_FILTER_CRT_CARTRIDGE,
 
40
    UILIB_FILTER_FLIPLIST,
 
41
    UILIB_FILTER_ROMSET_FILE,
 
42
    UILIB_FILTER_ROMSET_ARCHIVE,
 
43
    UILIB_FILTER_KEYMAP,
 
44
    UILIB_FILTER_PRGP00,
 
45
    UILIB_FILTER_WAV,
 
46
    UILIB_FILTER_VOC,
 
47
    UILIB_FILTER_IFF,
 
48
    UILIB_FILTER_AIFF,
 
49
    UILIB_FILTER_MP3,
 
50
    UILIB_FILTER_SERIAL,
 
51
    UILIB_FILTER_VIC20CART,
 
52
    UILIB_FILTER_SID,
 
53
    UILIB_FILTER_DTVROM,
 
54
} uilib_file_filter_enum_t;
32
55
 
33
56
#endif
34