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

« back to all changes in this revision

Viewing changes to src/arch/win32/uirom.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:
27
27
#ifndef _UIROM_H
28
28
#define _UIROM_H
29
29
 
 
30
#include <tchar.h>
 
31
 
 
32
#define UIROM_TYPE_MAIN  0
 
33
#define UIROM_TYPE_DRIVE 1
 
34
#define UIROM_TYPE_OTHER 2
 
35
#define UIROM_TYPE_MAX   3
 
36
 
30
37
struct uirom_settings_s {
31
 
    const char *realname;
 
38
    unsigned int type;
 
39
    const TCHAR *realname;
32
40
    const char *resname;
33
41
    unsigned int idc_filename;
34
42
    unsigned int idc_browse;
 
43
    unsigned int idc_resource;
35
44
};
36
45
typedef struct uirom_settings_s uirom_settings_t;
37
46
 
38
 
extern void uirom_settings_dialog(HWND hwnd, unsigned int idd_dialog,
 
47
extern void uirom_settings_dialog(HWND hwnd, unsigned int idd_dialog_main,
 
48
                                  unsigned int idd_dialog_drive,
 
49
                                  const unsigned int *idd_dialog_resources,
39
50
                                  const uirom_settings_t *uirom_settings);
40
51
 
41
52
#endif