Implement CBES_EX_NOSIZELIMIT style.
[wine] / documentation / samples / config
1 WINE REGISTRY Version 2
2 ;; All keys relative to \\Machine\\Software\\Wine\\Wine\\Config
3
4 ;; If you think it is necessary to show others your complete config for a
5 ;; bug report, filter out empty lines and comments with
6 ;; grep -v "^;" ~/.wine/config | grep '.'
7 ;;
8 ;; MS-DOS drives configuration
9 ;;
10 ;; Each section has the following format:
11 ;; [Drive X]
12 ;; "Path"="xxx"       (Unix path for drive root)
13 ;; "Type"="xxx"       (supported types are 'floppy', 'hd', 'cdrom' and 'network')
14 ;; "Label"="xxx"      (drive label, at most 11 characters)
15 ;; "Serial"="xxx"     (serial number, 8 characters hexadecimal number)
16 ;; "Filesystem"="xxx" (supported types are 'msdos'/'dos'/'fat', 'win95'/'vfat', 'unix')
17 ;;   This is the FS Wine is supposed to emulate on a certain
18 ;;   directory structure.
19 ;;   Recommended:
20 ;;   - "win95" for ext2fs, VFAT and FAT32
21 ;;   - "msdos" for FAT16 (ugly, upgrading to VFAT driver strongly recommended)
22 ;;   DON'T use "unix" unless you intend to port programs using Winelib !
23 ;; "Device"="/dev/xx" (only if you want to allow raw device access)
24 ;;
25 [Drive A]
26 "Path" = "/mnt/fd0"
27 "Type" = "floppy"
28 "Label" = "Floppy"
29 "Filesystem" = "win95"
30 "Serial" = "87654321"
31 "Device" = "/dev/fd0"
32
33 [Drive C]
34 "Path" = "/c"
35 "Type" = "hd"
36 "Label" = "MS-DOS"
37 "Filesystem" = "win95"
38
39 [Drive D]
40 "Path" = "/cdrom"
41 "Type" = "cdrom"
42 "Label" = "CD-Rom"
43 "Filesystem" = "win95"
44 ; make sure that device is correct and has proper permissions !
45 "Device" = "/dev/cdrom"
46
47 [Drive E]
48 "Path" = "/tmp"
49 "Type" = "hd"
50 "Label" = "Tmp Drive"
51 "Filesystem" = "win95"
52
53 [Drive F]
54 "Path" = "${HOME}"
55 "Type" = "network"
56 "Label" = "Home"
57 "Filesystem" = "win95"
58
59 [wine]
60 "Windows" = "c:\\windows"
61 "System" = "c:\\windows\\system"
62 "Temp" = "e:\\"
63 "Path" = "c:\\windows;c:\\windows\\system;e:\\;e:\\test;f:\\"
64 "Profile" = "c:\\windows\\Profiles\\Administrator"
65 "GraphicsDriver" = "x11drv"
66 ; Wine doesn't pass directory symlinks to Windows programs by default.
67 ; Enabling this may crash some programs that do recursive lookups of a whole
68 ; subdir tree in case of a symlink pointing back to itself.
69 ;"ShowDirSymlinks" = "1"
70 "ShellLinker" = "wineshelllink"
71
72 # <wineconf>
73
74 [Version]
75 ; Windows version to imitate (win95,win98,winme,nt351,nt40,win2k,winxp,win20,win30,win31)" },
76 ;"Windows" = "win98"
77 ; DOS version to imitate
78 ;"DOS" = "6.22"
79
80 ; Be careful here, wrong DllOverrides settings have the potential
81 ; to pretty much kill your setup.
82 [DllOverrides]
83 "rpcrt4"       = "builtin, native"
84 "oleaut32"     = "builtin, native"
85 "ole32"        = "builtin, native"
86 "commdlg"      = "builtin, native"
87 "comdlg32"     = "builtin, native"
88 "ver"          = "builtin, native"
89 "version"      = "builtin, native"
90 "shell"        = "builtin, native"
91 "shell32"      = "builtin, native"
92 "shfolder"     = "builtin, native"
93 "shlwapi"      = "builtin, native"
94 "shdocvw"      = "builtin, native"
95 "lzexpand"     = "builtin, native"
96 "lz32"         = "builtin, native"
97 "comctl32"     = "builtin, native"
98 "commctrl"     = "builtin, native"
99 "advapi32"     = "builtin, native"
100 "crtdll"       = "builtin, native"
101 "mpr"          = "builtin, native"
102 "winspool.drv" = "builtin, native"
103 "ddraw"        = "builtin, native"
104 "dinput"       = "builtin, native"
105 "dsound"       = "builtin, native"
106 "opengl32"     = "builtin, native"
107 "msvcrt"       = "native, builtin"
108 "msvideo"      = "builtin, native"
109 "msvfw32"      = "builtin, native"
110 "mcicda.drv"   = "builtin, native"
111 "mciseq.drv"   = "builtin, native"
112 "mciwave.drv"  = "builtin, native"
113 "mciavi.drv"   = "native, builtin"
114 "mcianim.drv"  = "native, builtin"
115 "msacm.drv"    = "builtin, native"
116 "msacm"        = "builtin, native"
117 "msacm32"      = "builtin, native"
118 "midimap.drv"  = "builtin, native"
119 ; you can specify applications too
120 "notepad.exe"  = "native, builtin"
121 ; default for all other dlls
122 "*" = "native, builtin"
123
124 [x11drv]
125 ; Number of colors to allocate from the system palette
126 "AllocSystemColors" = "100"
127 ; Use a private color map
128 "PrivateColorMap" = "N"
129 ; Favor correctness over speed in some graphics operations
130 "PerfectGraphics" = "N"
131 ; Color depth to use on multi-depth screens
132 ;;"ScreenDepth" = "16"
133 ; Name of X11 display to use
134 ;;"Display" = ":0.0"
135 ; Allow the window manager to manage created windows
136 "Managed" = "Y"
137 ; Use a desktop window of 640x480 for Wine
138 ;"Desktop" = "640x480"
139 ; Use XFree86 DGA extension if present
140 ; (make sure /dev/mem is accessible by you !)
141 "UseDGA" = "Y"
142 ; Use XShm extension if present
143 "UseXShm" = "Y"
144 ; Use XVidMode extension if present
145 "UseXVidMode" = "Y"
146 ; Enable DirectX mouse grab
147 "DXGrab" = "N"
148 ; Create the desktop window with a double-buffered visual
149 ; (useful to play OpenGL games)
150 "DesktopDoubleBuffered" = "N"
151 ; Code page used for captions in managed mode
152 ; 0 means default ANSI code page (CP_ACP == 0)
153 "TextCP" = "0"
154 ; Use this if you have more than one port for video on your setup
155 ; (Wine uses for now the first 'input image' it finds).
156 ;; "XVideoPort" = "43"
157 ; Run in synchronous mode (useful for debugging X11 problems)
158 ;;"Synchronous" = "Y"
159
160 [fonts]
161 ;Read the Fonts topic in the Wine User Guide before adding aliases
162 ;See a couple of examples for russian users below
163 "Resolution" = "96"
164 "Default" = "-adobe-helvetica-"
165 "DefaultFixed" = "fixed"
166 "DefaultSerif" = "-adobe-times-"
167 "DefaultSansSerif" = "-adobe-helvetica-"
168
169 ;; default TrueType fonts with russian koi8-r encoding
170 ;"Default" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
171 ;"DefaultFixed" = "-monotype-courier new-*-*-*--*-*-*-*-*-*-koi8-r"
172 ;"DefaultSerif" = "-monotype-times new roman-*-*-*--*-*-*-*-*-*-koi8-r"
173 ;"DefaultSansSerif" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
174 ;; default cyrillic bitmap X fonts
175 ;"Default" = "-cronyx-helvetica-"
176 ;"DefaultFixed" = "fixed"
177 ;"DefaultSerif" = "-cronyx-times-"
178 ;"DefaultSansSerif" = "-cronyx-helvetica-"
179
180 ; the TrueType font dirs you want to make accessible to wine
181 [FontDirs]
182 ;"dir1" = "/usr/X11R6/lib/X11/fonts/TrueType"
183 ;"dir2" = "/usr/share/fonts/truetype"
184 ;"dir3" = "/usr/X11R6/lib/X11/fonts/TT"
185 ;"dir4" = "/usr/share/fonts/TT"
186
187 [serialports]
188 "Com1" = "/dev/ttyS0"
189 "Com2" = "/dev/ttyS1"
190 "Com3" = "/dev/ttyS2"
191 "Com4" = "/dev/modem"
192
193 [parallelports]
194 "Lpt1" = "/dev/lp0"
195
196 [ppdev]
197 ;; key:  io-base of the emulated port
198 ;; value : parport-device{,timeout}
199 ;; timeout for auto closing an open device ( not yet implemented)
200 ;"378" = "/dev/parport0"
201 ;"278" = "/dev/parport1"
202 ;"3bc" = "/dev/parport2"
203
204 [spooler]
205 "FILE:" = "tmp.ps"
206 "LPT1:" = "|lpr"
207 "LPT2:" = "|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -"
208 "LPT3:" = "/dev/lp3"
209
210 [ports]
211 ;"read"  = "0x779,0x379,0x280-0x2a0"
212 ;"write" = "0x779,0x379,0x280-0x2a0"
213
214 [Debug]
215 ;"RelayExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
216 ;"RelayInclude" = "user32.CreateWindowA"
217 ;"SnoopExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
218 ;"SpyExclude" = "WM_SIZE;WM_TIMER;"
219
220 [registry]
221 ;These are all booleans.  Y/y/T/t/1 are true, N/n/F/f/0 are false.
222 ;Defaults are read all, write to Home
223 ; Global registries (stored in /etc)
224 "LoadGlobalRegistryFiles" = "Y"
225 ; Home registries (stored in ~user/.wine/)
226 "LoadHomeRegistryFiles" = "Y"
227 ; Load Windows registries from the Windows directory
228 "LoadWindowsRegistryFiles" = "Y"
229 ; TRY to write all changes to home registries
230 "WritetoHomeRegistryFiles" = "Y"
231 ; Registry periodic save timeout in seconds
232 ; "PeriodicSave" = "600"
233 ; Save only modified keys
234 "SaveOnlyUpdatedKeys" = "Y"
235
236 [Tweak.Layout]
237 ;; supported styles are 'Win31'(default), 'Win95', 'Win98'
238 ;; this has *nothing* to do with the windows version Wine returns:
239 ;; set the "Windows" value in the [Version] section if you want that.
240 "WineLook" = "Win95"
241
242 [Console]
243 ;"Drivers" = "tty"
244 ;"XtermProg" = "nxterm"
245 ;"InitialRows" = "25"
246 ;"InitialColumns" = "80"
247 ;"TerminalType" = "nxterm"
248
249 [Clipboard]
250 "ClearAllSelections" = "0"
251 "PersistentSelection" = "1"
252
253 ; List of all directories directly contain .AFM files
254 [afmdirs]
255 "1" = "/usr/share/ghostscript/fonts"
256 "2" = "/usr/share/a2ps/afm"
257 "3" = "/usr/share/enscript"
258 "4" = "/usr/X11R6/lib/X11/fonts/Type1"
259
260 [WinMM]
261 "Drivers" = "wineoss.drv"
262 #"Drivers" = "winearts.drv"
263 "WaveMapper" = "msacm.drv"
264 "MidiMapper" = "midimap.drv"
265
266 [dsound]
267 ;; HEL only: Number of waveOut fragments ahead to mix in new buffers.
268 ;"HELmargin" = "5"
269 ;; HEL only: Number of waveOut fragments ahead to queue to driver.
270 ;"HELqueue" = "5"
271 ;; Max number of fragments to prebuffer
272 ;"SndQueueMax" = "28"
273 ;; Min number of fragments to prebuffer
274 ;"SndQueueMin" = "12"
275
276 ;; sample AppDefaults entries
277 ;[AppDefaults\\iexplore.exe\\DllOverrides]
278 ;"shlwapi" = "native"
279 ;"rpcrt4" = "native"
280 ;"ole32" = "native"
281 ;"shdocvw" = "native"
282 ;"wininet" = "native"
283 ;"shfolder" = "native"
284 ;"shell32" = "native"
285 ;"shell" = "native"
286 ;"comctl32" = "native"
287 ;
288 ;[AppDefaults\\setup.exe\\x11drv]
289 ;"Desktop" = "800x600"
290 ;
291 ;[AppDefaults\\sol.exe\\Version]
292 ;"Windows" = "nt40"
293 ;
294 ;; Some games (Quake 2, UT) refuse to accept emulated dsound devices.
295 ;; You can add an AppDefault entry like this for such cases.
296 ;[AppDefaults\\pickygame.exe\\dsound]
297 ;"EmulDriver" = "N"
298
299 # </wineconf>