Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 1 | ;; |
| 2 | ;; MS-DOS drives configuration |
| 3 | ;; |
| 4 | ;; Each section has the following format: |
| 5 | ;; [Drive X] |
Alexandre Julliard | 1e37a18 | 1996-08-18 16:21:52 +0000 | [diff] [blame] | 6 | ;; Path=xxx (Unix path for drive root) |
| 7 | ;; Type=xxx (supported types are 'floppy', 'hd', 'cdrom' and 'network') |
| 8 | ;; Label=xxx (drive label, at most 11 characters) |
| 9 | ;; Serial=xxx (serial number, 8 characters hexadecimal number) |
Andreas Mohr | 11db496 | 1999-02-28 10:05:44 +0000 | [diff] [blame] | 10 | ;; Filesystem=xxx (supported types are 'msdos'/'dos'/'fat', 'win95'/'vfat', 'unix') |
Andreas Mohr | e3728cd | 1999-02-05 10:16:19 +0000 | [diff] [blame] | 11 | ;; This is the FS Wine is supposed to emulate on a certain |
| 12 | ;; directory structure. |
| 13 | ;; Recommended: |
| 14 | ;; - "win95" for ext2fs, VFAT and FAT32 |
| 15 | ;; - "msdos" for FAT16 (ugly, upgrading to VFAT driver strongly recommended) |
| 16 | ;; DON'T use "unix" unless you intend to port programs using Winelib ! |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 17 | ;; Device=/dev/xx (only if you want to allow raw device access) |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 18 | ;; |
| 19 | [Drive A] |
| 20 | Path=/mnt/fd0 |
| 21 | Type=floppy |
| 22 | Label=Floppy |
| 23 | Serial=87654321 |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 24 | Device=/dev/fd0 |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 25 | |
| 26 | [Drive C] |
| 27 | Path=/c |
| 28 | Type=hd |
| 29 | Label=MS-DOS |
Andreas Mohr | e3728cd | 1999-02-05 10:16:19 +0000 | [diff] [blame] | 30 | Filesystem=win95 |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 31 | |
| 32 | [Drive D] |
| 33 | Path=/cdrom |
| 34 | Type=cdrom |
| 35 | Label=CD-Rom |
Andreas Mohr | e3728cd | 1999-02-05 10:16:19 +0000 | [diff] [blame] | 36 | Filesystem=win95 |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 37 | |
| 38 | [Drive E] |
| 39 | Path=/tmp |
| 40 | Type=hd |
| 41 | Label=Tmp Drive |
Andreas Mohr | e3728cd | 1999-02-05 10:16:19 +0000 | [diff] [blame] | 42 | Filesystem=win95 |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 43 | |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 44 | [Drive F] |
| 45 | Path=${HOME} |
| 46 | Type=network |
| 47 | Label=Home |
Andreas Mohr | e3728cd | 1999-02-05 10:16:19 +0000 | [diff] [blame] | 48 | Filesystem=win95 |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 49 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 50 | [wine] |
| 51 | Windows=c:\windows |
| 52 | System=c:\windows\system |
| 53 | Temp=e:\ |
| 54 | Path=c:\windows;c:\windows\system;e:\;e:\test;f:\ |
| 55 | SymbolTableFile=./wine.sym |
| 56 | |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 57 | # <wineconf> |
| 58 | |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 59 | [DllDefaults] |
| 60 | EXTRA_LD_LIBRARY_PATH=${HOME}/wine/cvs/lib |
| 61 | DefaultLoadOrder = native, elfdll, so, builtin |
| 62 | |
| 63 | [DllPairs] |
| 64 | kernel = kernel32 |
| 65 | gdi = gdi32 |
| 66 | user = user32 |
| 67 | commdlg = comdlg32 |
| 68 | commctrl= comctl32 |
| 69 | ver = version |
| 70 | shell = shell32 |
| 71 | lzexpand= lz32 |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 72 | mmsystem= winmm |
| 73 | msvideo = msvfw32 |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 74 | winsock = wsock32 |
| 75 | |
| 76 | [DllOverrides] |
| 77 | kernel32, gdi32, user32 = builtin |
| 78 | kernel, gdi, user = builtin |
Marcus Meissner | b3bd754 | 1999-04-19 16:20:21 +0000 | [diff] [blame] | 79 | toolhelp = builtin |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 80 | comdlg32, commdlg = elfdll, builtin, native |
| 81 | version, ver = elfdll, builtin, native |
| 82 | shell32, shell = builtin, native |
| 83 | lz32, lzexpand = builtin, native |
| 84 | commctrl, comctl32 = builtin, native |
| 85 | wsock32, winsock = builtin |
| 86 | advapi32, crtdll, ntdll = builtin, native |
Huw D M Davies | 8bd7585 | 1999-09-04 11:05:41 +0000 | [diff] [blame] | 87 | mpr, winspool.drv = builtin, native |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 88 | ddraw, dinput, dsound = builtin, native |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 89 | winmm, mmsystem = builtin |
| 90 | msvideo, msvfw32 = builtin, native |
Eric Pouech | 281c927 | 1999-05-02 10:21:49 +0000 | [diff] [blame] | 91 | mcicda.drv, mciseq.drv = builtin, native |
| 92 | mciwave.drv = builtin, native |
| 93 | mciavi.drv, mcianim.drv = native, builtin |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 94 | w32skrnl = builtin |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 95 | wnaspi32, wow32 = builtin |
| 96 | system, display, wprocs = builtin |
| 97 | wineps = builtin |
| 98 | |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 99 | [options] |
| 100 | AllocSystemColors=100 |
| 101 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 102 | [fonts] |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 103 | ;Read documentation/fonts before adding aliases |
| 104 | Resolution = 96 |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 105 | Default = -adobe-times- |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 106 | |
| 107 | [serialports] |
James Juran | dd5b80e | 1999-05-17 15:03:47 +0000 | [diff] [blame] | 108 | Com1=/dev/ttyS0 |
| 109 | Com2=/dev/ttyS1 |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 110 | Com3=/dev/modem,38400 |
| 111 | Com4=/dev/modem |
| 112 | |
| 113 | [parallelports] |
| 114 | Lpt1=/dev/lp0 |
| 115 | |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 116 | [spooler] |
| 117 | LPT1:=|lpr |
| 118 | LPT2:=|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q - |
| 119 | LPT3:=/dev/lp3 |
| 120 | |
| 121 | [ports] |
| 122 | ;read=0x779,0x379,0x280-0x2a0 |
| 123 | ;write=0x779,0x379,0x280-0x2a0 |
| 124 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 125 | [spy] |
| 126 | Exclude=WM_SIZE;WM_TIMER; |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 127 | |
Nathan Zorich | bd3771c | 1999-03-14 15:12:48 +0000 | [diff] [blame] | 128 | [Registry] |
| 129 | ; Paths must be given in /dir/dir/file.reg format. |
| 130 | ; Wine will not understand dos file names here... |
| 131 | |
| 132 | ;UserFileName=xxx ; alternate registry file name (user.reg) |
| 133 | ;LocalMachineFileName=xxx ; (system.reg) |
| 134 | |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 135 | [Tweak.Layout] |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 136 | ;; WineLook=xxx (supported styles are 'Win31'(default), 'Win95', 'Win98') |
| 137 | ;WineLook=Win95 |
Chad Powell | edda687 | 1998-10-21 16:03:16 +0000 | [diff] [blame] | 138 | |
| 139 | [programs] |
| 140 | Default= |
Joseph Pranevich | 2f38cff | 1999-02-14 11:16:37 +0000 | [diff] [blame] | 141 | Startup= |
| 142 | |
| 143 | [Console] |
| 144 | ;XtermProg=nxterm |
Joseph Pranevich | 5229112 | 1999-02-20 16:41:29 +0000 | [diff] [blame] | 145 | ;InitialRows=25 |
| 146 | ;InitialColumns=80 |
| 147 | ;TerminalType=nxterm |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 148 | |
| 149 | # </wineconf> |
| 150 | |