Added a couple of prototypes.
[wine/multimedia.git] / wine.ini
blob268fcc1f43cc9e1132c509bc227db2596464f0e0
1 ;;
2 ;; MS-DOS drives configuration
3 ;;
4 ;; Each section has the following format:
5 ;; [Drive X]
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)
10 ;; Filesystem=xxx (supported types are 'msdos'/'dos'/'fat', 'win95'/'vfat', 'unix')
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 !
17 ;; Device=/dev/xx (only if you want to allow raw device access)
19 [Drive A]
20 Path=/mnt/fd0
21 Type=floppy
22 Label=Floppy
23 Serial=87654321
24 Device=/dev/fd0
26 [Drive C]
27 Path=/c
28 Type=hd
29 Label=MS-DOS
30 Filesystem=win95
32 [Drive D]
33 Path=/cdrom
34 Type=cdrom
35 Label=CD-Rom
36 Filesystem=win95
37 ; make sure that device is correct and has proper permissions !
38 Device=/dev/cdrom
40 [Drive E]
41 Path=/tmp
42 Type=hd
43 Label=Tmp Drive
44 Filesystem=win95
46 [Drive F]
47 Path=${HOME}
48 Type=network
49 Label=Home
50 Filesystem=win95
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:\
57 SymbolTableFile=./wine.sym
59 # <wineconf>
61 [DllDefaults]
62 EXTRA_LD_LIBRARY_PATH=${HOME}/wine/cvs/lib
63 DefaultLoadOrder = native, elfdll, so, builtin
65 [DllPairs]
66 krnl386 = kernel32
67 gdi = gdi32
68 user = user32
69 commdlg = comdlg32
70 commctrl= comctl32
71 ver = version
72 shell = shell32
73 lzexpand= lz32
74 mmsystem= winmm
75 msvideo = msvfw32
76 winsock = wsock32
78 [DllOverrides]
79 kernel32, gdi32, user32 = builtin
80 krnl386, gdi, user = builtin
81 toolhelp = builtin
82 comdlg32, commdlg = elfdll, builtin, native
83 version, ver = elfdll, builtin, native
84 shell32, shell = builtin, native
85 lz32, lzexpand = builtin, native
86 commctrl, comctl32 = builtin, native
87 wsock32, winsock = builtin
88 advapi32, crtdll, ntdll = builtin, native
89 mpr, winspool.drv = builtin, native
90 ddraw, dinput, dsound = builtin, native
91 winmm, mmsystem = builtin
92 msvideo, msvfw32 = builtin, native
93 mcicda.drv, mciseq.drv = builtin, native
94 mciwave.drv = builtin, native
95 mciavi.drv, mcianim.drv = native, builtin
96 msacm.drv, midimap.drv = builtin, native
97 w32skrnl = builtin
98 wnaspi32, wow32 = builtin
99 system, display, wprocs = builtin
100 wineps = builtin
101 icmp = builtin
103 [options]
104 AllocSystemColors=100
106 [fonts]
107 ;Read documentation/fonts before adding aliases
108 Resolution = 96
109 Default = -adobe-times-
111 [serialports]
112 Com1=/dev/ttyS0
113 Com2=/dev/ttyS1
114 Com3=/dev/modem,38400
115 Com4=/dev/modem
117 [parallelports]
118 Lpt1=/dev/lp0
120 [spooler]
121 LPT1:=|lpr
122 LPT2:=|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -
123 LPT3:=/dev/lp3
125 [ports]
126 ;read=0x779,0x379,0x280-0x2a0
127 ;write=0x779,0x379,0x280-0x2a0
129 [spy]
130 Exclude=WM_SIZE;WM_TIMER;
132 [registry]
133 ; Paths must be given in /dir/dir/file.reg format.
134 ; Wine will not understand dos file names here...
136 ; alternate registry file name: HKCU
137 AltCurrentUserFile=
138 ; alternate registry file name: HKU
139 AltUserFile=
140 ; alternate registry file name: HKLM
141 AltLocalMachineFile=
142 ;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false.
143 ;Defaults are read all, write to Home and Alt
144 ;Note: it is pointless to specify alt files and neither load nor write to them.
145 ; Global registries (stored in /etc)
146 LoadGlobalRegistryFiles=Y
147 ; Home registries (stored in ~user/.wine/)
148 LoadHomeRegistryFiles=Y
149 ; Load above registries.
150 LoadAltRegistryFiles=Y
151 ; TRY to write all changes to home registries
152 WritetoHomeRegistryFiles=Y
153 ; TRY to write all changes to alt registries
154 WritetoAltRegistryFiles=Y
155 ; Use new file format
156 UseNewFormat=N
157 ; Registry periodic save timeout in seconds
158 ; PeriodicSave=600
160 ; Windows registries in windows path
161 LoadWin311RegistryFiles=Y
162 LoadWin95RegistryFiles=Y
163 LoadWinNTRegistryFiles=N
164 ;user the private registry is taken from
165 ;(profiles/<username>/ntuser.dat)
166 ;NTUser=username
168 [Tweak.Layout]
169 ;; WineLook=xxx (supported styles are 'Win31'(default), 'Win95', 'Win98')
170 ;WineLook=Win95
172 [programs]
173 Default=
174 Startup=
176 [Console]
177 ;XtermProg=nxterm
178 ;InitialRows=25
179 ;InitialColumns=80
180 ;TerminalType=nxterm
182 [Clipboard]
183 ClearAllSelections=0
184 PersistentSelection=1
186 # </wineconf>