Release 940505
[wine/multimedia.git] / README
blob668a0c60f2adbb103bd74522411e2517e8ced644
1 Copyright  Robert J. Amstadt, 1993.  All code is provided without
2 warranty.  All code is covered by the license contained in the file
3 LICENSE unless explicitly stated in the individual source file.
7 1. COMPILATION:
9 You must have one of:
11         Linux version 0.99.13 or above
12         NetBSD-current
13         FreeBSD-current or FreeBSD 1.1
15 To build Wine, first do a "./Configure" and then a "make".  The
16 executable "wine" will be built.  "wine" will load and run 16-bit
17 Windows' executables. 
21 2. SETUP:
23 Wine requires you to have a file /usr/local/etc/wine.conf (you can
24 supply a different name when configuring wine) or a file called .winerc
25 in your homedirectory.
27 The formatstyle of this config file is just like a windows .ini file.
29 Here's an explanation of each section:
31 * [drives]
33 format: <driveletter> = <rootdirectory>
34 default: none
36 This section is used to specify the root directory of each `dos'drive 
37 as windows' applications require a dos/mswindows based diskdrive & 
38 directory scheme. 
40 If you mounted you dos-partition as /dos and installed microsoft windows 
41 in c:\windows than you should specify c=/dos in the drives section.
43 * [wine]
45 format: windows = <directory>
46 default: c:\windows
48 Used to specify an different windows directory.
50 format: system = <directory>
51 default: c:\windows\system
53 Used to specify an different system directory.
55 format: temp = <directory>
56 default: c:\temp
58 Used to specify a directory where windows applications can store temporary
59 files.
61 format: path = <directories separated by semi-colons>
62 default: c:\windows;c:\windows\system
64 Used to specify the path which will be used to find executables and DLL's.
66 format: systemresources = <filename>
67 default: c:\temp
69 Used to specify the name of sysres.dll, a dll which is used by wine itself.
71 * [serialports]
73 format: com[12345678] = <devicename>
74 default: none
76 Used to specify the devices which are used as com1 - com8.
78 * [parallelports]
80 format: lpt[12345678] = <devicename>
81 default: none
83 Used to specify the devices which are used as lpt1 - lpt8.
85 * [spy]
87 format: file = <filename or CON when logging to stdout>
88 default: none
90 used to specify the file which will be used as logfile.
92 format: exclude = <message names separated by semicolons>
93 default: none
95 Used to specify which messages will be excluded from the logfile.
97 format: include = <message names separated by semicolons>
98 default: none
100 Used to specify which messages will be included in the logfile.
104 3. RUNNING PROGRAMS
106 When invoking wine, you must specify the entire path to the executable,
107 or a filename only.
109 For example: to run Windows' solitaire:
111         wine sol                   (using the searchpath to locate the file)
112         wine sol.exe
114         wine c:\\windows\\sol.exe  (using a dosfilename)
116         wine /usr/windows/sol.exe  (using a unixfilename)
118 note: the path of the file will also be added to the path when
119       a full name is supplied on the commandline.
121 Have a nice game of solitaire, but be careful.  Emulation isn't perfect.
122 So, occassionally it will crash.
126 4. EXAMPLE CONFIGFILE
128 ----------------------------------------------------------------------------
129 [drives]
130 a=/mnt/fd0
131 c=/dos
132 d=~/Wine
134 [wine]
135 windows=c:\windows
136 system=c:\windows\system
137 temp=c:\temp
138 path=c:\windows;c:\windows\system;c:\winapps\word\;c:\winapps\pctools
139 systemresources=./sysres.dll
141 [serialports]
142 com1=/dev/cua1
143 com2=/dev/cua1
145 [parallelports]
146 lpt1=/dev/lp0
148 [spy]
149 ;File=CON
150 ;File=spy.log
151 Exclude=WM_TIMER;WM_SETCURSOR;WM_MOUSEMOVE;WM_NCHITTEST;WM_NCACTIVATE;WM_GETDLGCODE;
152 Include=WM_COMMAND;
154 ----------------------------------------------------------------------------
157 5. BUILD:
159     The documentation for the build program is in the file build-spec.txt
162 6. FINALE:
164 Good luck,
166         If you successfully add anything, please send me a copy.
168 Bob Amstadt
169 bob@amscons.com
172 7. WHAT'S NEW
174 WHAT'S NEW with Wine-940505: (see ChangeLog for details)
175         - faster color_stretch()
176         - SetSysMenu(), GetCursor(), GetDesktopWindow()
177         - WSAGetXbyY() now non-blocking 
178         - and many many bug fixes!
180 WHAT'S NEW with Wine-940420: (see ChangeLog for details)
181         - new property functions
182         - new listbox and combo box functions
183         - GrayString() and CallGrayStringProc()
184         - and many many bug fixes!
186 WHAT'S NEW with Wine-940412: (see ChangeLog for details)
187         - menuing improvements
188         - drawing performance improvements
189         - beginnings of hooks
190         - MDI maximizing and tiling
191         - improvements in winsock implementation
192         - and many many bug fixes!
194 WHAT'S NEW with Wine-940405: (see ChangeLog for details)
195         - Mouse activation of menus working again
196         - GetprocAddress()
197         - SetDIBitsToDevice()
198         - FindWindow()
199         - int 10hm 25h and 26h
200         - in, inb, out, outb emulation
201         - and many many bug fixes!
203 WHAT'S NEW with Wine-940329: (see ChangeLog for details)
204         - MDI: child windows can be created, activated and cascaded.
205         - -depth option
206         - support for dithered brushes
207         - GetNearestColor(), RealizeDefaultPalette(), 
208           GetSystemPaletteEntries(), and SelectPalette()
209         - System colors read from WIN.INI
210         - Keyboard menu manipulation (mouse is temporarily broken)
211         - GetFreeSystemResources()
212         - and many many bug fixes!
214 WHAT'S NEW with Wine-940322: (see ChangeLog for details)
215         - Speed improvements in bitmaps and mouse messages
216         - More MDI support.  More to come next week...
217         - and many many bug fixes!
219 WHAT'S NEW with Wine-940315: (see ChangeLog for details)
220         - Beginnings of MDI support.  More to come next week...
221         - Stress DLL
222         - and many many bug fixes!
224 WHAT'S NEW with Wine-940309: (see ChangeLog for details)
225         - New "exclude" and "include" filters for spy feature.  See sample
226           wine.ini for details.
227         - -desktop and -name options (see ChangeLog)
228         - GetFreeSpace() and CreateIcon()
229         - and many many bug fixes!
231 WHAT'S NEW with Wine-940301: (see ChangeLog for details)
232         - NEW Configure script to set compile time options!
233         - Support for filesystems with short (less than 14 chars) filenames.
234         - Clipboard functions!
235         - and more...
237 WHAT'S NEW with Wine-940223: (see ChangeLog for details)
238         - FreeBSD support
239         - FloodFill()
240         - Desktop window support
241         - Menu fixes
242         - and more...
244 WHAT'S NEW with Wine-940216: (see ChangeLog for details)
245         - Many many bug fixes
246         - Switched to using Imakefile's instead of Makefile's.
247         - Lot's of changes for libwine.a
249 WHAT'S NEW with Wine-940209: (see ChangeLog for details)
250         - Many many bug fixes
251         - Minor directory structure reorganization
252         - New GetModule*() functions.
253         - WINSOCK DLL
254         - First stab at Wine as a library
256 WHAT'S NEW with Wine-940201: (see ChangeLog for details)
257         - Support for huge data structures.
258         - FreeBSD support.
259         - Many many bug fixes
261 WHAT'S NEW with version 0.8: (see ChangeLog for details)
262         - Eliminated Xt-dependent code.  Thanks to Alexandre and Martin.
263         - EnumWindows() and EnumChildWindows()
264         - Activating and deactivating of windows.
265         - More work on system menus.
267 WHAT'S NEW with version 0.7: (see ChangeLog for details)
268         - Eliminated Xt-dependent code.  Thanks to Alexandre and Martin.
269         - Other bug fixes.
270         - IsWIndowEnabled() and EnableWindow() now implemented.
271         - New command line options.
273 WHAT'S NEW with version 0.6: (see ChangeLog for details)
274         - Working towards elimination of Xt-dependent code.  Thanks to
275           Alexandre and Martin.
276         - Other bug fixes.
277         - I added a rudimentary spy facility which can be turned
278           on from the wine.ini file.  See the sample wine.ini
279           for details
281 WHAT'S NEW with version 0.5: (see ChangeLog for details)
282         - Working towards elimination of Xt-dependent code.
283         - StretchBlt()
284         - GetClassName() & GetClassInfo()
285         - Implemented loader relocation types 5 and 6.
287 WHAT'S NEW with version 0.4.14: (see ChangeLog for details)
288         - Bug fixes and enhancements
289         - Comm functions
290         - Text caret functions
292 WHAT'S NEW with version 0.4.13: (see ChangeLog for details)
293         - Bug fixes
294         - GetCapture()
295         - More keyboard handling
296         - Polyline() and Polygon()
298 WHAT'S NEW with version 0.4.12: (see ChangeLog for details)
299         - Bug fixes
300         - New DOS file functions
301         - Experimental Imakefiles
303 WHAT'S NEW with version 0.4.11: (see ChangeLog for details)
304         - Bug fixes
305         - New cursor functions
306         - New file system handling
307         - Atoms
309 WHAT'S NEW with version 0.4.10: (see ChangeLog for details)
310         - Bug fixes
311         - More scroll bar functions
312         - More icon and cursor handling
314 WHAT'S NEW with version 0.4.9: (see ChangeLog for details)
315         - Bug fixes
316         - real MessageBox()
317         - New resource functions
318         - Icon functions
319         - Selector manipulation functions
320         - Catch()/Throw()
322 WHAT'S NEW with version 0.4.7: (see ChangeLog for details)
323         - More dialog box functions
324         - More DOS interrupts
325         - NetBSD compatibility patches
327 WHAT'S NEW with version 0.4.5: (see ChangeLog for details)
328         - Bug fixes
329         - focus routines
330         - dialog box functions
331         - improvements to control windows
333 WHAT'S NEW with version 0.4.4: (see ChangeLog for details)
334         - Bug fixes
335         - New static control class
336         - Preliminary listbox, combobox and scrollbar controls
337         - System initialization file is now called "wine.ini", and
338           may be located in the user's current directory, the
339           user's home directory or any directory specified by
340           the WINEPATH environment variable.
341         - The loader now searches the directories specified by the
342           WINEPATH environment variable for programs and DLLs.
343         - Internal debugger now works on 386BSD.
345 WHAT'S NEW with version 0.4.3: (see ChangeLog for details)
346         - Bug fixes
347         - Resource loading now able to load DLL resources
348         - Button control now based on GDI calls
349         - Preliminary system color support
350         - Miscellaneous window functions
351         - Limited debugging facility (sometimes hangs)
353 WHAT'S NEW with version 0.4.2: (see ChangeLog for details)
354         - Bug fixes
355         - 32-bit callback functions allowed
356         - .INI file handling
357         - lstr* functions and ANSI<->OEM conversion functions.
359 WHAT'S NEW with version 0.4.1: (see ChangeLog for details)
360         - Bug fixes
361         - Memory usage changes.
363 WHAT'S NEW with version 0.4.0: (see ChangeLog for details)
364         - Wine now compiles and runs under NetBSD.  Patches are
365           required for NetBSD.
366         - Wine stat patches included.  Add "-DWINESTAT" to the definition
367           of COPTS in the main Makefile to activate.
368         - Preliminary keyboard handling.
369         - Button control window implemented.
370         - many other new functions added.
372 WHAT'S NEW with version 0.3.1: (see ChangeLog for details)
373         - LineDDA() completed
374         - numerous bug fixes
375         - INT 1Ah implemented
376         - SOUND DLL implemented
377         - More of WIN87EM DLL implemented
378         - OpenFile() and friends implemented
380 WHAT'S NEW with version 0.3.0: (see ChangeLog for details)
381         - Mouse capture
382         - Text justification and underlining
383         - Clipping
384         - LoadBitmap() completed
385         - Code generated by the Borland compiler should now work
387 WHAT'S NEW with version 0.2.8: (see ChangeLog for details)
388         - Text functions from Alexandre
389         - INT 21h from Eric
390         - Menu improvements from David
391         - Bug fixes and GetProcAddress() stub from me
393 WHAT'S NEW with version 0.2.7: (see ChangeLog for details)
394     - sol.exe gets further.  I did some debugging and now solitaire
395       stops when it tries to call GetTextExtent().  Any volunteers?
396     - Many DC updates from Alexandre.
397     - Menu updates to support underlining characters from David Metcalfe.
399 WHAT'S NEW with version 0.2.6: (see ChangeLog for details)
400     - More region updates from Alexandre
402 WHAT'S NEW with version 0.2.5: (see ChangeLog for details)
403     - Regions implemented by Alexandre
404     - More menuing code from me
406 WHAT'S NEW with version 0.2.4: (see ChangeLog for details)
407     - Many improvements to GDI from Alexandre
408     - Many improvements to menu handling by me.
410 WHAT'S NEW with version 0.2.3: (see ChangeLog for details)
411     - Bug fixes with SendMessage() and PostMessage()
412     - Preliminary menu support
414 WHAT'S NEW with version 0.2.2: (see ChangeLog for details)
415     - Misc bug fixes
416     - More bitmap code
417     - Timers
418     - Memory DC's
420 WHAT'S NEW with version 0.2.1:
421     - I have placed things into sub-directories.  The organization is
422       not finalized.  I imagine that the directory structure will
423       change as is necessary.  Files in the ./misc directory need
424       to be split apart and placed in apropriate directories.
425     - Tons of code from Alexandre.  He has constructed the framework
426       for handling GDI objects.  He has also provided code for DCEs.
427     - Local heap functions have been completed.
428     - Bug fixes in global.c and win.c
429     - New function GlobalQuickAlloc() combines GlobalAlloc() and
430       GlobalLock() into a single function call.
431     - New patch kit for Linux 0.99 pl11 kernel.  Thanks to Linus
432       who has graciously included our patches into the ALPHA patch
433       release cycle.
435 WHAT'S NEW with version 0.2.0:
436     - Alexandre Julliard has provided a replacement for the Tcl code.
437       The new code uses Xlib and Xt directly with no intervening
438       interpretted language.  This should reduce the learning
439       curve for casual hackers.
440     - I changed all GLOBAL_ names to Global.
442 WHAT'S NEW with version 0.1.1:
443     - I have completed global memory allocation, but I don't like it.
444       It is not 100% compatible with Windows.  I need some more kernel
445       modifications for 100% compatibility.
446     - Alexandre Julliard has provided written better emulation for
447       the Windows message queue.
449 WHAT'S NEW with version 0.1.0:
450     - Latest patches from Alexandre Julliard.
451     - minor bug fix in if1632.S
453 WHAT'S NEW with version 0.0.5:
454     - Patches from Alexandre Julliard.  Some integration with Tcl.
455     - Generic interface for callback procedures.  This will allow
456       callbacks into DLLs.
457     - MakeProcInstance() has been implemented but untested.
459 WHAT'S NEW with version 0.0.4:
460     - Eric Youngdale modified wine.c and selector.c to allow loading
461       of Windows DLLs.
462     - Added global memory allocation routines (GlobalAlloc, GlobalFree,
463       and GlobalLock)
464     - Bitmap resource loading into global memory.
466 WHAT'S NEW with version 0.0.3:
467     - Fixed bug with sector sizes.
468     - Registers at program startup are now set correctly.
469     - Segment fixups for relocatable-segment internal entry points.
470     - Fixed bug in DOS PSP structure.
471     - Some resource loading is done.
472     - Added "return" ordinal type to build program.
473     - Added comment capability to build program.
475 WHAT'S NEW with version 0.0.2:
477     - Again thanks to Eric Youngdale for some very useful comments.
478     - The Windows startup code created by Micrsoft C 7.0 now runs 
479       to completion.
480     - Added a new patch to the kernel to increase the usable size of
481       the ldt to the full 32 entries currently allowed.
482     - Imported name relocations are now supported.
483     - Source code for my infamous test program is now included.
484     - A handful of basic Windows functions are now emulated.  See
485       "kernel.spec" for examples of how to use the build program.
487 WHAT'S NEW with version 0.0.1:
489     - Eric Youngdale contributed countless improvements in memory
490       efficiency, bug fixes, and relocation.
491     - The build program has been completed.  It now lets you specify
492       how the main DLL entry point should interface to your emulation
493       library routines.  A brief description of how to build these
494       specifications is included in the file "build-spec.txt".
495     - The code to dispatch builtin DLL calls is complete, but untested.