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

« back to all changes in this revision

Viewing changes to src/arch/win32/archdep.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:
37
37
#define FSDEV_EXT_SEP_CHR      '.'
38
38
 
39
39
/* Path separator.  */
40
 
#define FINDPATH_SEPARATOR_CHAR         ';'
41
 
#define FINDPATH_SEPARATOR_STRING       ";"
 
40
#define ARCHDEP_FINDPATH_SEPARATOR_CHAR         ';'
 
41
#define ARCHDEP_FINDPATH_SEPARATOR_STRING       ";"
42
42
 
43
43
/* Modes for fopen().  */
44
44
#define MODE_READ              "r"
50
50
#define MODE_APPEND_READ_WRITE "a+"
51
51
 
52
52
/* Printer default devices.  */
53
 
#define PRINTER_DEFAULT_DEV1 "viceprnt.out"
54
 
#define PRINTER_DEFAULT_DEV2 "LPT1:"
55
 
#define PRINTER_DEFAULT_DEV3 "LPT2:"
 
53
#define ARCHDEP_PRINTER_DEFAULT_DEV1 "viceprnt.out"
 
54
#define ARCHDEP_PRINTER_DEFAULT_DEV2 "LPT1:"
 
55
#define ARCHDEP_PRINTER_DEFAULT_DEV3 "LPT2:"
56
56
 
57
57
/* Video chip scaling.  */
58
 
#define ARCHDEP_VICII_DSIZE 1
59
 
#define ARCHDEP_VICII_DSCAN 1
60
 
#define ARCHDEP_VDC_DSIZE   1
61
 
#define ARCHDEP_VDC_DSCAN   1
62
 
#define ARCHDEP_VIC_DSIZE   1
63
 
#define ARCHDEP_VIC_DSCAN   1
64
 
#define ARCHDEP_CRTC_DSIZE  1
65
 
#define ARCHDEP_CRTC_DSCAN  1
66
 
#define ARCHDEP_TED_DSIZE   1
67
 
#define ARCHDEP_TED_DSCAN   1
 
58
#define ARCHDEP_VICII_DSIZE   1
 
59
#define ARCHDEP_VICII_DSCAN   1
 
60
#define ARCHDEP_VICII_HWSCALE 0
 
61
#define ARCHDEP_VDC_DSIZE     1
 
62
#define ARCHDEP_VDC_DSCAN     1
 
63
#define ARCHDEP_VDC_HWSCALE   0
 
64
#define ARCHDEP_VIC_DSIZE     1
 
65
#define ARCHDEP_VIC_DSCAN     1
 
66
#define ARCHDEP_VIC_HWSCALE   0
 
67
#define ARCHDEP_CRTC_DSIZE    1
 
68
#define ARCHDEP_CRTC_DSCAN    1
 
69
#define ARCHDEP_CRTC_HWSCALE  0
 
70
#define ARCHDEP_TED_DSIZE     1
 
71
#define ARCHDEP_TED_DSCAN     1
 
72
#define ARCHDEP_TED_HWSCALE   0
68
73
 
69
74
/* Default location of raw disk images.  */
70
75
#define ARCHDEP_RAWDRIVE_DEFAULT "A:"
74
79
#define ARCHDEP_W_OK 2
75
80
#define ARCHDEP_X_OK 1
76
81
#define ARCHDEP_F_OK 0
 
82
 
 
83
/* Standard line delimiter.  */
 
84
#define ARCHDEP_LINE_DELIMITER "\r\n"
 
85
 
 
86
/* Ethernet default device */
 
87
#define ARCHDEP_ETHERNET_DEFAULT_DEVICE ""
77
88
 
78
89
#endif
79
90