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 |
Andreas Mohr | 1fe9334 | 2000-01-29 21:11:47 +0000 | [diff] [blame] | 37 | ; make sure that device is correct and has proper permissions ! |
| 38 | Device=/dev/cdrom |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 39 | |
| 40 | [Drive E] |
| 41 | Path=/tmp |
| 42 | Type=hd |
| 43 | Label=Tmp Drive |
Andreas Mohr | e3728cd | 1999-02-05 10:16:19 +0000 | [diff] [blame] | 44 | Filesystem=win95 |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 45 | |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 46 | [Drive F] |
| 47 | Path=${HOME} |
| 48 | Type=network |
| 49 | Label=Home |
Andreas Mohr | e3728cd | 1999-02-05 10:16:19 +0000 | [diff] [blame] | 50 | Filesystem=win95 |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 51 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 52 | [wine] |
| 53 | Windows=c:\windows |
| 54 | System=c:\windows\system |
| 55 | Temp=e:\ |
| 56 | Path=c:\windows;c:\windows\system;e:\;e:\test;f:\ |
Juergen Schmied | 8573cc7 | 2000-01-30 03:03:23 +0000 | [diff] [blame] | 57 | Profile=c:\windows\Profiles\Administrator |
Patrik Stridvall | a4ecb41 | 2000-04-25 20:12:55 +0000 | [diff] [blame] | 58 | GraphicsDriver=x11drv |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 59 | |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 60 | # <wineconf> |
| 61 | |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 62 | [DllDefaults] |
| 63 | EXTRA_LD_LIBRARY_PATH=${HOME}/wine/cvs/lib |
Alexandre Julliard | 318f4ce | 2000-01-31 05:02:49 +0000 | [diff] [blame] | 64 | DefaultLoadOrder = native, builtin, elfdll, so |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 65 | |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 66 | [DllOverrides] |
| 67 | kernel32, gdi32, user32 = builtin |
Eric Pouech | 448b34a | 1999-10-13 16:02:40 +0000 | [diff] [blame] | 68 | krnl386, gdi, user = builtin |
Marcus Meissner | b3bd754 | 1999-04-19 16:20:21 +0000 | [diff] [blame] | 69 | toolhelp = builtin |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 70 | comdlg32, commdlg = elfdll, builtin, native |
| 71 | version, ver = elfdll, builtin, native |
| 72 | shell32, shell = builtin, native |
| 73 | lz32, lzexpand = builtin, native |
| 74 | commctrl, comctl32 = builtin, native |
| 75 | wsock32, winsock = builtin |
| 76 | advapi32, crtdll, ntdll = builtin, native |
Huw D M Davies | 8bd7585 | 1999-09-04 11:05:41 +0000 | [diff] [blame] | 77 | mpr, winspool.drv = builtin, native |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 78 | ddraw, dinput, dsound = builtin, native |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 79 | winmm, mmsystem = builtin |
| 80 | msvideo, msvfw32 = builtin, native |
Eric Pouech | 281c927 | 1999-05-02 10:21:49 +0000 | [diff] [blame] | 81 | mcicda.drv, mciseq.drv = builtin, native |
| 82 | mciwave.drv = builtin, native |
| 83 | mciavi.drv, mcianim.drv = native, builtin |
Eric Pouech | abe7227 | 1999-10-31 02:23:49 +0000 | [diff] [blame] | 84 | msacm.drv, midimap.drv = builtin, native |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 85 | w32skrnl = builtin |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 86 | wnaspi32, wow32 = builtin |
| 87 | system, display, wprocs = builtin |
| 88 | wineps = builtin |
Francois Gouget | edf3e43 | 1999-11-07 21:22:17 +0000 | [diff] [blame] | 89 | icmp = builtin |
Bertho Stultiens | 1bbc5de | 1999-04-18 12:10:42 +0000 | [diff] [blame] | 90 | |
Alexandre Julliard | fe08568 | 2000-03-18 21:56:10 +0000 | [diff] [blame] | 91 | [x11drv] |
| 92 | ; Number of colors to allocate from the system palette |
| 93 | AllocSystemColors = 100 |
| 94 | ; Use a private color map |
| 95 | PrivateColorMap = N |
| 96 | ; Favor correctness over speed in some graphics operations |
| 97 | PerfectGraphics = N |
| 98 | ; Color depth to use on multi-depth screens |
| 99 | ;;ScreenDepth = 16 |
Alexandre Julliard | 8e3e6b5 | 2000-05-15 02:46:44 +0000 | [diff] [blame] | 100 | ; Name of X11 display to use |
| 101 | ;;Display = :0.0 |
| 102 | ; Allow the window manager to manage created windows |
| 103 | Managed = N |
Alexandre Julliard | fe08568 | 2000-03-18 21:56:10 +0000 | [diff] [blame] | 104 | ; Use XFree86 DGA extension if present |
| 105 | UseDGA = Y |
| 106 | ; Use XShm extension if present |
| 107 | UseXShm = Y |
| 108 | ; Enable DirectX mouse grab |
| 109 | DXGrab = N |
Lionel Ulmer | 7e5c2c0 | 2000-05-23 01:20:08 +0000 | [diff] [blame] | 110 | ; Create the desktop window with a double-buffered visual |
| 111 | ; (useful to play OpenGL games) |
| 112 | DesktopDoubleBuffered = N |
Dmitry Timoshkov | 04da8b8 | 2000-07-10 12:09:31 +0000 | [diff] [blame] | 113 | ; Code page used for captions in managed mode |
| 114 | ; 0 means default ANSI code page (CP_ACP == 0) |
| 115 | TextCP=0 |
Lionel Ulmer | fc67be9 | 2000-09-26 00:38:03 +0000 | [diff] [blame] | 116 | ; Use this if you have more than one port for video on your setup |
| 117 | ; (Wine uses for now the first 'input image' it founds). |
| 118 | ;; XVideoPort = 43 |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 119 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 120 | [fonts] |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 121 | ;Read documentation/fonts before adding aliases |
| 122 | Resolution = 96 |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 123 | Default = -adobe-times- |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 124 | |
| 125 | [serialports] |
James Juran | dd5b80e | 1999-05-17 15:03:47 +0000 | [diff] [blame] | 126 | Com1=/dev/ttyS0 |
| 127 | Com2=/dev/ttyS1 |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 128 | Com3=/dev/modem,38400 |
| 129 | Com4=/dev/modem |
| 130 | |
| 131 | [parallelports] |
| 132 | Lpt1=/dev/lp0 |
| 133 | |
Alexandre Julliard | 23946ad | 1997-06-16 17:43:53 +0000 | [diff] [blame] | 134 | [spooler] |
| 135 | LPT1:=|lpr |
| 136 | LPT2:=|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q - |
| 137 | LPT3:=/dev/lp3 |
| 138 | |
| 139 | [ports] |
| 140 | ;read=0x779,0x379,0x280-0x2a0 |
| 141 | ;write=0x779,0x379,0x280-0x2a0 |
| 142 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 143 | [spy] |
| 144 | Exclude=WM_SIZE;WM_TIMER; |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 145 | |
Nathaniel | 7bf36ad | 1999-10-24 19:35:47 +0000 | [diff] [blame] | 146 | [registry] |
Nathan Zorich | bd3771c | 1999-03-14 15:12:48 +0000 | [diff] [blame] | 147 | ; Paths must be given in /dir/dir/file.reg format. |
| 148 | ; Wine will not understand dos file names here... |
| 149 | |
Nathaniel | 7bf36ad | 1999-10-24 19:35:47 +0000 | [diff] [blame] | 150 | ;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false. |
Alexandre Julliard | c970904 | 2000-04-16 17:21:13 +0000 | [diff] [blame] | 151 | ;Defaults are read all, write to Home |
Marcus Meissner | 1133291 | 1999-10-31 01:37:02 +0000 | [diff] [blame] | 152 | ; Global registries (stored in /etc) |
| 153 | LoadGlobalRegistryFiles=Y |
| 154 | ; Home registries (stored in ~user/.wine/) |
| 155 | LoadHomeRegistryFiles=Y |
Juergen Schmied | 8573cc7 | 2000-01-30 03:03:23 +0000 | [diff] [blame] | 156 | ; Load Windows registries from the Windows directory |
| 157 | LoadWindowsRegistryFiles=Y |
Marcus Meissner | 1133291 | 1999-10-31 01:37:02 +0000 | [diff] [blame] | 158 | ; TRY to write all changes to home registries |
| 159 | WritetoHomeRegistryFiles=Y |
Alexandre Julliard | 705686e | 1999-11-24 19:34:32 +0000 | [diff] [blame] | 160 | ; Use new file format |
Alexandre Julliard | 08b289d | 2000-04-06 20:37:37 +0000 | [diff] [blame] | 161 | UseNewFormat=Y |
Alexandre Julliard | 705686e | 1999-11-24 19:34:32 +0000 | [diff] [blame] | 162 | ; Registry periodic save timeout in seconds |
| 163 | ; PeriodicSave=600 |
Alexandre Julliard | 08b289d | 2000-04-06 20:37:37 +0000 | [diff] [blame] | 164 | ; Save only modified keys |
| 165 | SaveOnlyUpdatedKeys=Y |
Nathaniel | 7bf36ad | 1999-10-24 19:35:47 +0000 | [diff] [blame] | 166 | |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 167 | [Tweak.Layout] |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 168 | ;; WineLook=xxx (supported styles are 'Win31'(default), 'Win95', 'Win98') |
Dmitry Timoshkov | 3853f0f | 2000-04-28 20:01:03 +0000 | [diff] [blame] | 169 | WineLook=Win95 |
Chad Powell | edda687 | 1998-10-21 16:03:16 +0000 | [diff] [blame] | 170 | |
| 171 | [programs] |
| 172 | Default= |
Joseph Pranevich | 2f38cff | 1999-02-14 11:16:37 +0000 | [diff] [blame] | 173 | Startup= |
| 174 | |
| 175 | [Console] |
Alexandre Julliard | 431cf32 | 2000-02-19 20:51:01 +0000 | [diff] [blame] | 176 | ;Drivers=tty |
Joseph Pranevich | 2f38cff | 1999-02-14 11:16:37 +0000 | [diff] [blame] | 177 | ;XtermProg=nxterm |
Joseph Pranevich | 5229112 | 1999-02-20 16:41:29 +0000 | [diff] [blame] | 178 | ;InitialRows=25 |
| 179 | ;InitialColumns=80 |
| 180 | ;TerminalType=nxterm |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 181 | |
Francis Beaudet | 56ab55d | 1999-10-24 20:22:24 +0000 | [diff] [blame] | 182 | [Clipboard] |
| 183 | ClearAllSelections=0 |
| 184 | PersistentSelection=1 |
| 185 | |
Eric Pouech | ef80cb1 | 1999-04-25 12:16:49 +0000 | [diff] [blame] | 186 | # </wineconf> |
| 187 | |