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

« back to all changes in this revision

Viewing changes to src/arch/win32/resacia.rc

  • 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:
 
1
// ACIA specific resources.
 
2
//
 
3
 
 
4
IDD_ACIA_SETTINGS_DIALOG DIALOG DISCARDABLE  0, 0, 170, 110
 
5
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
 
6
CAPTION "ACIA Settings"
 
7
FONT 8, "MS Sans Serif"
 
8
BEGIN
 
9
    AUTOCHECKBOX    "&Enable ACIA",IDC_ACIA_ENABLE,
 
10
                    7,7,99,10, BS_AUTOCHECKBOX | WS_TABSTOP
 
11
    LTEXT           "ACIA device",
 
12
                    IDC_STATIC,9,24,50,8
 
13
    COMBOBOX        IDC_ACIA_DEVICE,65,22,80,80,CBS_DROPDOWNLIST |
 
14
                    WS_VSCROLL | WS_TABSTOP
 
15
    LTEXT           "ACIA location",
 
16
                    IDC_STATIC,9,44,50,8
 
17
    COMBOBOX        IDC_ACIA_LOCATION,65,42,80,80,CBS_DROPDOWNLIST |
 
18
                    WS_VSCROLL | WS_TABSTOP
 
19
    LTEXT           "ACIA interrupt",
 
20
                    IDC_STATIC,9,64,50,8
 
21
    COMBOBOX        IDC_ACIA_INTERRUPT,65,62,80,80,CBS_DROPDOWNLIST |
 
22
                    WS_VSCROLL | WS_TABSTOP
 
23
    DEFPUSHBUTTON   "OK", IDOK, 25,90,50,14, WS_TABSTOP
 
24
    PUSHBUTTON      "Cancel", IDCANCEL, 85,90,50,14, WS_TABSTOP
 
25
END
 
26