Release 960528
[wine/gsoc-2012-control.git] / ChangeLog
blob488637b44a97325378f041d2f9cf0ddb6a402dea
1 ----------------------------------------------------------------------
2 Tue May 28 19:36:36 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
4         * [controls/combo.c]
5         Destroy the listbox and edit control when destroying the
6         combo. This should prevent crashes on application exit.
8         * [misc/system.c] [if1632/system.spec]
9         Implemented InquireSystem().
11         * [loader/task.c] [windows/message.c] [windows/queue.c]
12         First attempt at inter-task SendMessage(). Still has a lot of
13         problems.
15 Tue May 28 14:26:04 1996  Peter Bajusz  <hyp-x@inf.bme.hu>
17         * [windows/mdi.c]
18         Fixed MDITile with iconic children.
20 Mon May 27 20:28:18 1996  Albrecht Kleine  <kleine@ak.sax.de>
22         * [misc/commdlg.c]
23         ChooseFont dialog:
24         - complete rewrite of FontFamilyEnumProc() and FontStyleEnumProc()
25           not real available font types (e.g. "Bold") can not selected
26         - supporting more CF_LIMITSIZE- and CF_...ONLY- flags
28         * [objects/font.c]
29         In FONT_MatchFont perform check if "lfFaceName" is family from X11
30         only if "lfFaceName" is a windows font family then do a call of
31         FONT_TranslateName() : this results in better font selections in 
32         ChooseFont() or applications like charmap.exe or write.exe.
33         Added a ParseFontParms() call if necessary in function 
34         FONT_MatchFont(): we need a font name as basis for GetTextFace() 
35         even if there isn't one...
37         * [resources/TODO]
38         Inventory of resource translations in sysres_??.rc
40 Fri May 24 16:33:28 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
42         * [misc/registry.c]
43         _w95_loadreg: use offset to determine next RGDB position too.
45 Thu May 23 19:35:38 1996  Greg Kreider <kreider@natlab.research.philips.com>
47         * [controls/combo.c]
48         Fixed size of combo, lbox, and button (lb sometimes off by 2 pixels).
50         * [misc/main.c]
51         Result of option "-fixedmap" is to turn flag on.
53 Thu May 23 19:15:41 1996  Waider  <root@waider.ie>
55         * [misc/shell.c]
56         ShellExecute and FindExecutable now both use common code to
57         determine the required executable file.
59 ----------------------------------------------------------------------
60 Tue May 21 14:06:07 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
62         * [controls/button.c]
63         Made ButtonWndProc a 32-bit window procedure.
65         * [controls/desktop.c]
66         Made DesktopWndProc a 32-bit window procedure.
67         Added handling of WM_SETCURSOR.
69         * [controls/menu.c]
70         Allocate menu items and strings on the 32-bit system heap.
71         Implemented Win32 versions for ChangeMenu, InsertMenu, ModifyMenu,
72         AppendMenu and LoadMenuIndirect.
74         * [controls/widgets.c]
75         Added possibility to have 32-bit built-in classes.
77         * [files/drive.c]
78         Implemented GetLogicalDrive() and GetLogicalDriveStrings().
80         * [misc/spy.c] [include/spy.h]
81         Added support for spying Win32 messages.
83         * [loader/builtin.c]
84         Fixed bug in -dll option parsing.
86         * [memory/local.c]
87         Added back the change by Huw D. M. Davies to free the block in
88         LocalRealloc() before allocating the new one.
90         * [objects/bitmap.c] [objects/cursoricon.c] [objects/oembitmap.c]
91         Fixed bug in bitmap size that caused memory corruption for 24bpp.
93         * [windows/defwnd.c]
94         Implemented Win32 version of DefWindowProc().
96         * [windows/dialog.c]
97         Implemented Win32 version of SendDlgItemMessage,
98         Get/SetDlgItemText and Get/SetDlgItemInt.
100         * [windows/mdi.c]
101         Implemented Win32 version of DefFrameProc() and DefMDIChildProc().
102         Don't make a copy of the OBM bitmaps for every MDI window.
104         * [windows/message.c]
105         Implemented Win32 version of SendMessage().
106         
107         * [windows/winproc.c] [windows/class.c] [windows/win.c]
108         New scheme for 32-bit window procedures to replace aliases. All
109         32-bit window procedure get a 16-bit address pointing to a
110         WINDOWPROC structure.
111         Implemented Ansi<->Unicode translation for CallWindowProc().
112         Added translation of WM_DRAWITEM between Win16 and Win32.
114         * [windows/win.c] [include/callback.h]
115         Added ugly hack to build CREATESTRUCT on the stack when sending
116         WM_NCCREATE.
117         Implemented Win32 version of Get/SetWindowWord/Long and
118         Get/SetWindowText.
119         
120 Fri May 17 10:20:16 1996  Albrecht Kleine  <kleine@ak.sax.de>
122         * [controls/button.c]
123         Avoid gray text on gray background in disabled push buttons
124         using a b/w raster and some raster operations (PatBlt,BitBlt).
126         * [objects/text.c]
127         DrawText(): don't draw an underbar anymore if DT_CALCRECT is set.
129 ----------------------------------------------------------------------
130 Thu May 16 13:35:31 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
132         * [*/*.c]
133         Renamed RECT, POINT and SIZE structures to RECT16, POINT16 and
134         SIZE16. Implemented Win32 version of most functions that take
135         these types as parameters.
137         * [configure]
138         Patched autoconf to attempt to correctly detect -lnsl and
139         -lsocket. Please check this out.
140         
141         * [controls/button.c]
142         Added support for Win32 BM_* messages.
144         * [controls/menu.c]
145         Avoid sending extra WM_MENUSELECT messages. This avoids crashes
146         with Excel.
148         * [memory.heap.c] [include/heap.h]
149         Added support for SEGPTRs in Win32 heaps. Added a few macros to
150         make using SEGPTRs easier. They are a bit slower than MAKE_SEGPTR,
151         but they work with Win32.
153         * [memory/atom.c]
154         Implemented Win32 atom functions.
156         * [memory/local.c]
157         Fixed LocalReAlloc() changes to avoid copying the whole block twice.
159         * [win32/memory.c]
160         Use /dev/zero instead of MAP_ANON for VirtualAlloc().
162         * [windows/class.c]
163         Properly implemented the Win32 class functions.
165         * [windows/winproc.c] (New file)
166         New file handling the message translation between Win16 and Win32.
168 Mon May 13 18:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
170         * [windows/mdi.c] [windows/menu.c]
171         Improved WM_MDICREATE and WM_MDICASCADE handling.
173         * [windows/event.c] [objects/bitblt.c]
174         Handle GraphicsExpose event for BitBlt from screen to screen.
176         * [windows/event.c] [windows/win.c] [windows/nonclient.c]
177         Bunch of fixes for problems with -managed.
179         * [windows/win.c] [windows/winpos.c]
180         Changed conditions for WM_SIZE, WM_MOVE, and WM_GETMINMAXINFO
181         in CreateWindow.
183         * [windows/win.c] [windows/queue.c] [misc/user.c]
184         Do not send WM_PARENTNOTIFY when in AppExit and call WH_SHELL
185         on window creation/destruction.
187         * [objects/palette.c]
188         Crude RealizePalette(). At least something is visible in LviewPro.
190 Sun May 12 02:05:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
192         * [if1632/gdi32.spec]
193         Added Rectangle (use win16 version).
195         * [if1632/kernel32.spec]
196         Added GetWindowsDirectoryA (use win16 GetWindowsDirectory).
198         * [if1632/user32.spec]
199         Added GetSubMenu, MoveWindow, SetScrollPos, SetScrollRange (use win16
200         versions).
201         Added SetWindowsHookExA (empty stub for now).
203         * [include/handle32.h]
204         Changed #include <malloc.h> to #include <stdlib.h> to prevent
205         hate message from FreeBSD compiler.
207         * [win32/newfns.c]
208         Added new function SetWindowsHookEx32A (empty stub for now).
210         * [win32/user32.c]
211         Removed redundant debugging printf statement.
213 Sun May 12 01:24:57 1996  Huw D. M. Davies <h.davies1@physics.oxford.ac.uk>
215         * [memory/local.c]
216         Avoid creating adjacent free blocks.
217         Free the block in LocalReAlloc() before allocating a new one.
218         Fixed LocalReAlloc() for discarded blocks.
219         
220 Fri May 10 23:05:12 1996  Jukka Iivonen <iivonen@cc.helsinki.fi>
222         * [resources/sysres_Fi.rc]
223         ChooseFont and ChooseColor dialogs updated.
225 Fri May 10 17:19:33 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
227         * [files/drive.c,if1632/kernel.spec]
228         GetCurrentDirectory(),SetCurrentDirectory() implemented.
230         * [if1632/advapi32.spec] [if1632/kernel.spec] [if1632/shell.spec]
231           [include/windows.h] [include/winreg.h] [loader/main.c]
232           [misc/main.c] [misc/shell.c] [misc/registry.c]
233         Registry fixes:
234         - loads win95 registry databases,
235         - save only updated keys on default,
236         - now adhers to the new function naming standard,
237         - minor cleanups.
239 Tue May 7 22:36:13 1996  Albrecht Kleine  <kleine@ak.sax.de>
241         * [combo.c]
242         Added WM_COMMAND-handling for interaction between EDIT and COMBOLBOX
243         and synchronized mine with Greg Kreider's works.
245         * [commdlg.c]
246         Bugfix in ChooseFont: font size handling.
248 ----------------------------------------------------------------------
249 Mon May  6 12:56:26 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
251         * [DEVELOPERS-HINTS]
252         Added paragraph on naming conventions for Win16/Win32/Winelib.
254         * [controls/menu.c]
255         Create a default system menu that is the same for all windows
256         instead of making a copy every time.
258         * [include/wintypes.h]
259         Added WINELIB_NAME and DECL_WINELIB_TYPE macros.
260         Added xx16 and xx32 definitions for most types. General clean-up.
262         * [memory/global.c] [memory/local.c] [*/*]
263         Renamed Global and Local heap functions to xxx16. Added all xxx32
264         versions of the same functions.
266         * [memory/selector.c]
267         Mask out lower bits of selector in FreeSelector().
269         * [misc/lstr.c]
270         Fixed wvsprintf().
272         * [windows/class.c]
273         Changed the class structure to make Win32 support easier.
275         * [windows/defwnd.c]
276         Added handling of WM_INITMENUPOPUP for system menu to gray out
277         invalid options.
279         * [windows/winpos.c]
280         Bug fix: the WINDOSPOS structure pointer in WM_NCCALCSIZE must be
281         a SEGPTR.
283 Sun May  5 03:51:26 1996  Huw D. M. Davies <h.davies1@physics.oxford.ac.uk>
285         * [memory/local.c]
286         Implementation of moveable and (rudimentary) support for
287         discardable local memory, plus several bug fixes.
289 Sat May  4 18:33:35 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
291         * [include/windows.h] [windows/win.c] [if1632/user.spec] 
292         FindWindowEx() implemented (someone reported it was missing
293         for FrameMaker 4.1).
295         * [if1632/kernel32.spec] [if1632/user32.spec] [win32/memory.c]
296           [win32/resource.c]
297         Misc small stubs/small functions which bring win95 binaries
298         further down the road. (IsBadCodePtr, LocalReAlloc,GetCursorPos)
299         Small fix in WIN32_LoadAcceleratorsA.
301 Fri May  3 19:43:12 1996  Frans van Dorsselaer <dorssel@rulhm1.LeidenUniv.nl>
303         * [controls/edit.c] [controls/EDIT.TODO]
304         Changed / fixed some types and typecasts.
305         Fixed the scrollbar reset after WM_SETHANDLE / WM_SETTEXT.
306         Added heap initialization in WM_CREATE.
308 Fri May  3 19:30:02 1996  Greg Kreider <kreider@natlab.research.philips.com>
310         * [controls/combo.c] [controls/listbox.c]
311         Pass WM_[HV]SCROLL to listbox, but not combo.
312         Don't try to redraw non-existant scroll bars (changes dwStyle flags).
313         Combo box gets border.
314         Combo box includes button (otherwise button won't trigger dropdown).
315         Proper border around RectButton.
316         Check size consistancy of combo, listbox, and button after resizing 
317         or before painting.  These routines still aren't completely correct.
318         Localize size checks in separate routines.
319         Listboxes are white.
321 Thu May  2 19:21:23 1996  Albrecht Kleine  <kleine@ak.sax.de>
323         * [controls/combo.c][include/commdlg.h][include/commdlg.c]
324           [resources/sysres_De.rc][resources/sysres_En.rc]
325         Introduced ChooseFont dialog, but needed some patches in 
326         handling of comboboxes with edit controls.
328 Tue Apr 30 00:33:27 1996  Ulrich Schmid  <uschmid@mail.hh.provi.de>
330         * [programs/winhelp/*]
331         Added a help viewer and a simple `.hlp' to `.sgml' converter.
333 Mon Apr 29 14:17:57 1996  Tristan Tarrant <tst@sthinc.demon.co.uk>
335         * [resources/sysres_*.rc] [misc/shell.c]
336         Modified size of "About" dialog boxes.
338 Sat Apr 27 18:10:11 Martin von Loewis <loewis@informatik.hu-berlin.de>
340         * [if1632/Makefile.in][loader/builtin.c]
341         crtdll.spec, ntdll.spec, wsock32.spec: new files.
343         * [loader/pe_image.c]
344         Fix error message if import by ordinal failed.
346 ----------------------------------------------------------------------
347 Sun Apr 28 14:32:43 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
349         * [Makefile.in]
350         Subdir memory is now also compiled for Winelib, in order to get
351         the Win32 heap functions.
353         * [if1632/Makefile.in]
354         Renamed winprocs and winprocs32 to wprocs and wprocs32 to avoid
355         DLL names > 8 characters.
357         * [loader/builtin.c] (New file)
358         Grouped all built-in DLLs code in a single file.
360         * [memory/global.c]
361         Use the Win32 heap code instead of malloc() to allocate linear
362         memory. This will help test the heap code.
364         * [memory/local.c]
365         Fixed FreeSelector() to clear DS and ES correctly for huge blocks.
367         * [tools/build.c] [if1632/relay.c]
368         Removed 'id' directive in spec files. For relay debugging, the DLL
369         entry point is now computed from the CS:IP entry point address.
370         Added 'heap' directive to specifiy a local heap for the DLL. USER
371         and GDI heap are now created this way.
373         * [windows/class.c] [include/class.h]
374         Changed the class structure to use pointers instead of handles.
375         Changed Get/SetClassWord/Long to use a switch statement; this
376         allows changing the layout of the CLASS structure.
378         * [windows/win.c] [include/win.h]
379         Use a CLASS * instead of a handle for the window class.
381 Sat Apr 27 18:10:11 Martin von Loewis <loewis@informatik.hu-berlin.de>
383         * [if1632/kernel32.spec] [memory/global.c]
384           [win32/memory.c] [win32/process.c]
385         GetProcessAffinityMask,GlobalLock,IsBadReadPtr,IsBadWritePtr,
386         LocalLock,SetThreadAffinityMask: new relays.
388         * [win32/cursoricon32.c]
389         Return same handle if a cursor is loaded multiple times.
391 Sat Apr 27 15:13:37 1996  Bang Jun Young <bangjy@nownuri.nowcom.co.kr>
393         * [resources/sysres_Ko.rc]
394         Added support for Korean [Ko] language.
396 Fri Apr 26 00:49:05 1996  Huw D. M. Davies <h.davies1@physics.oxford.ac.uk>
398         * [objects/dc.c] [objects/font.c]
399         Fixed problem with SaveDC()/RestoreDC() and font cache 'used' count.
401         * [objects/metafile.c] [objects/dcvalues.c]
402         Fixed broken SetTextAlign() on metafiles.
404         * [objects/metafile.c]
405         Delete objects in handle table at end of PlayMetaFile().
407 Wed Apr 24 19:21:01  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
409         * [if1632/ver.spec] [misc/ver.c] [include/ver.h] (New files)
410         VER.DLL (partially) implemented (VerFindFile,VerInstallFile)
411         [If it doesn't work for you, use -dll -ver and report it to me]
413         * [if1632/user32.spec] [if1632/kernel32.spec] [if1632/shell.spec]
414           [if1632/shell32.spec] [misc/ole2nls.c] [windows/message.c]
415           [windows/graphics.c]
416         Simple win32 functions, where we can just use the win16 counterpart.
417         Misc. stubs. 
419         * [misc/lstr.c]
420         Someone reported a _lstrlen(NULL). NULL is a valid argument. Fixed.
422         * [misc/registry.c]
423         Some alloclens were off by 1, one double fclose() fixed.
424         Requesting value 0 of a key with no values returns an error 
425         (should we always return a made up value NULL? what does win3.1?)
427 Tue Apr 23 17:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
429         * [misc/shell.c]
430         Implemented FindEnvironmentString(), DoEnvironmentSubst(),
431         ExtractIcon(), InternalExtractIcon() and ExtractAssociatedIcon().
433         * [misc/user.c]
434         Do extensive cleanup on application exit.
436         * [windows/hook.c] [windows/win.c] [windows/class.c]
437         Added miscellaneous cleanup routines.
439         * [controls/menu.c]
440         More efficient popup menu window handling.
442 Mon Apr 22 21:35:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
444         * [include/windows.h][objects/oembitmap.c][include/bitmaps/obm_trtype]
445         Added "TT-bitmap" for later usage in a ChooseFont() ownerdraw combobox.
447 ----------------------------------------------------------------------
448 Sat Apr 20 23:23:16 1996  Robert Pouliot <krynos@qbc.clic.net>
450         * [resources/sysres_Fr.rc] [resources/TODO]
451         Made changes for Choose_Color dialog.
453 Sat Apr 20 15:43:49 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
455         * [controls/button.c]
456         Fixed test that got miscompiled by some old gcc versions.
458         * [memory/local.c]
459         Fixed the layout of handle tables so that moveable handle entries
460         can be freed on LocalFree().
461         Implemented LocalFlags(), LocalCountFree(), LocalHandleDelta() and
462         GetHeapSpaces().
464         * [misc/main.c] [ANNOUNCE]
465         Update the list of contributors. Please let me know if I forgot
466         someone.
468 Fri Apr 19 20:07:20 1996  Frans van Dorsselaer  <dorssel@rulhm1.leidenuniv.nl>
470         * [controls/edit.c] [controls/EDIT.TODO]
471         Fixed EM_SETHANDLE / WM_CREATE / EDIT_MakeFir() buffer allocation.
472         Fixed ES_NOHIDESEL / WM_MOUSEMOVE / WM_LBUTTONDOWN implementation.
473         Added WM_ENABLE implementation (gray text).
474         Fixed buffer > 32767 bug.
475         Fixed argument types / typecasting.
476         Faster selection (re)drawing.
478 Thu Apr 18 13:38:26 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
480         * [misc/registry.c] [include/winreg.h]
481         Changed savefile format again to human readable/editable
482         (UNICODE chars >0xff are specified by \uXXXX, data by XX).
483         Has now global / local registry databases (including merging them).
484         HKEY_CLASSES_ROOT == HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes.
485         HKEY_CURRENT_USER == HKEY_USERS\\<loginname>.
487         * [misc/comm.c]
488         Allow " " as COMx: ... spec delimiter too.
489         (AOL-CD setup.exe tries to initialize modem2 as "9600,x,x x" (can't 
490         remember the x).
492 Thu Apr 18 09:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
494         * [windows/mdi.c]
495         Miscellaneous changes.
497         * [windows/winpos.c] 
498         Use BitBlt whenever possible in SetWindowPos.
500         * [windows/painting.c]
501         Fix incompatibilities with hrgnUpdate being 1.
503 Wed Apr 17 19:19:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
505         * [misc/commdlg.c]
506         Many bugfixes in ChooseColor dialog.
507         Added a user defined dialog title in FileOpen-/FileSave- dialog.
509         * [misc/commdlg.c][include/commdlg.h]
510           [if1632/commdlg.spec][if1632/winprocs.spec]
511         Introduced dialog-, callback- and enum- stub functions
512         for ChooseFont dialog
514 Wed Apr 17 19:08:38 1996  Niels de Carpentier  <niels@cindy.et.tudelft.nl>
516         * [objects/metafile.c] [include/metafile.h] [if1632/gdi.spec]
517         Implemented EnumMetaFile and CopyMetaFile. Removed METAFILE struct.
518         Implemented META_STRETCHDIB in PlayMetaFileRecord, several bug 
519         fixes.
521         * [windows/winpos.c]
522         Don't try to hide the window if it's already hidden.
524         * [windows/message.c]
525         Let MSG_PeekHardwareMsg fill the message queue with events if
526         it's empty.
528 Wed Apr 17 17:54:04 1996  Tristan Tarrant <tst@sthinc.demon.co.uk>
530         * [resources/sysres_It.rc]
531         Updated to support the new CHOOSE_COLOR_DIALOG.
533 Tue Apr 16 11:50:00 1996  Anand Kumria <akumria@ozemail.com.au>
535         * [if1632/Makefile] [if1632/relay.c] [if1631/w32sys.spec]
536           [include/w32sys.h] [include/dlls.h]
537           [misc/Makefile] [misc/w32sys.c]
538         W32SYS.DLL partially implemented.
540 ----------------------------------------------------------------------
541 Sun Apr 14 12:51:27 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
543         * [controls/menu.c] [include/dialog.h] [windows/dialog.c]
544         Made the resource loading code always use the correct Windows
545         layout for Winelib on other CPUs.
547         * [include/module.h] [loader/module.c]
548         Added self handle in NE_MODULE structure, so we can use a pointer
549         instead of a handle.
550         Added function MODULE_GetPtr() to validate a HMODULE.
552         * [memory/heap.c]
553         Implemented Win32 heap management.
555         * [memory/selector.c]
556         Fix selector limit for huge blocks.
558 Sat Apr 13 00:19:12 1996  Huw D. M. Davies <h.davies1@physics.oxford.ac.uk>
560         * [objects/metafile.c]
561         Fixed memcpy bug to allow memory based metafiles to work.
563 Fri Apr 12 19:25:41 1996  Frans van Dorsselaer  <dorssel@rulhm1.leidenuniv.nl>
565         * [controls/edit.c] [controls/EDIT.TODO]
566         Complete rewrite.  Everything changed: new features, new bugs.
567         Main addition: WordWrap.
569 Fri Apr 12 20:29:55 1996  Tristan Tarrant <tst@dcs.ed.ac.uk>
571         * [resources/sysres_It.rc]
572         Fixed a few mistakes in the file and resized some of the controls.
574 Fri Apr 12 09:55:13 1996  John Harvey <john@division.co.uk>
576         * [misc/winsocket.c]
577         Fixed broken #if defined that stopped unixware compiling.
579         * [win32/resource.c]
580         Added missing return to end of FindResource32.
582 Thu Apr 11 18:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
584         * [windows/keyboard.c] [windows/event.c]
585         Fixed GetKeyState for mouse buttons.
587         * [windows/message.c]
588         WM_MOUSEACTIVATE wasn't sent in some cases.
590 Wed Apr 10 18:59:53 1996  Niels de Carpentier  <niels@cindy.et.tudelft.nl>
592         * [objects/font.c]
593         Match slightly bigger font if height negative.
595 Mon Apr  8 13:46:15 1996  Deano Calver <deano@rattie.demon.co.uk>
597         * [multimedia/mmsystem.c]
598         Changed read's to FILE_read's in mmsystem to fix mmio bug.
600 Sun Apr  7 21:40:29 1996  Albrecht Kleine  <kleine@ak.sax.de>
602         * [misc/commdlg.c] [resources/sysres_En.rc] [resources/sysres_De.rc]
603         Introduced ColorDlgProc() for ChooseColor() and replaced fitting
604         En-,De- resources. 
605         As written in TODO: some national language support is needed here.
607 ----------------------------------------------------------------------
608 Fri Apr  5 15:22:55 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
610         * [controls/button.c] [controls/static.c]
611         Changes to use WND * wherever possible.
613         * [debugger/dbg.y] [debugger/debug.l]
614         Added 'info module' and 'walk module' commands.
616         * [if1632/Makefile.in] [if1632/relay.c] [tools/build.c]
617         Added assembly code generation to call from Wine into 32-bit code.
618         Changed all 'call32' references in 'callfrom16' to avoid confusion
619         with Win32 routines.
621         * [include/callback.h]
622         Added prototypes for 32-bit callbacks.
624         * [loader/module.c] [if1632/relay32.c] [tools/build.c]
625         Unified 16- and 32-bit modules. The fake module for 32-bit DLLs is
626         now generated by the build program.
628         * [include/module.h]
629         Added extra info to NE_MODULE for Win32 modules to point to the PE
630         module data.
632         * [include/pe_image.h] [loader/pe_image.c] [win32/resource.c]
633         Removed the wine_files list. The PE data for a module can now be
634         accessed with the NE_WIN32_MODULE macro.
636         * [loader/signal.c] [miscemu/instr.c]
637         Don't start the BIOS timer at startup, but only after an access to
638         the 0x40 segment.
640         * [memory/local.c]
641         Changed LOCAL_Lock() to return a 32-bit pointer.
643         * [misc/main.c] [include/dlls.h]
644         Some built-in DLLs (like KERNEL) can no longer be disabled from
645         the command-line.
646         
647 Thu Apr  4 19:54:39 1996  Keith Reynolds <keithr@sco.COM>
649         * [*/*]
650         A lot of small changes to support SCO OpenServer 5.
652 Thu Apr  4 15:38:13 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
654         * [controls/edit.c]
655         Fixed GetKeyState() call to use 0x8000 convention.
657         * [include/windows.h]
658         Added undocumented messages EM_SCROLL and EM_GETTHUMB.
660 Thu Apr  4 09:52:52 1996  John Harvey <john@division.co.uk>
662         * [if1632/except.S]
663         Modified code to assemble on unixware.
665 Wed Apr  3 09:38:26 1996  Juergen Marquardt <marqu@lunar.advantest.de>
667         * [objects/font.c]
668         Implementation of a second font cache which will be updated
669         dynamically.
671 Mon Apr  1 16:47:40 1996  Robert Pouliot <krynos@qbc.clic.net>
673         * [resources/sysres_Cz.rc] [resources/sysres_Da.rc]
674           [resources/sysres_De.rc] [resources/sysres_Eo.rc]
675           [resources/sysres_Es.rc] [resources/sysres_Fi.rc]
676           [resources/sysres_No.rc] [resources/TODO]
677         Updated FIND_TEXT and REPLACE_TEXT to work like the English version.
679 ----------------------------------------------------------------------
680 Sun Mar 31 13:54:46 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
682         * [tools/build.c]
683         Changed BuildSpec32Files() to generate assembly instead of C code.
684         Unified -spec16 and -spec32 options; DLL type is now determined by
685         the 'type' declaration in the .spec file.
686         New -stdcall option to build all stdcall assembly relays.
688         * [if1632/relay.c] [if1632/relay32.c] [include/dlls.h]
689         Started to unify 16- and 32-bit builtin DLLs.
691         * [loader/module.c]
692         Added MODULE_GetWndProcEntry32() to mirror MODULE_GetWndProcEntry16().
694         * [loader/pe_image.c] [loader/resource.c]
695         All modules now have a NE signature, and can be distinguished by
696         the NE_FFLAGS_WIN32 flag.
698         * [windows/alias.c]
699         Aliases for built-in window procedures are now all created at
700         startup in ALIAS_Init().
702 Fri Mar 29 14:56:39 1996  Greg Kreider <kreider@natlab.research.philips.com>
704         * [controls/combo.c]
705         Limit rectangle to clear to size of item when painting combo, not
706         default.  Only draw items in list when there is enough room for them.
708         * [controls/listbox.c]
709         Get the measure of every item that's added and store in the item's
710         data structure.  Scroll listbox if mouse near edge of box.  Only
711         draw items in list when there is enough room.
713 Fri Mar 29 12:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
715         * [windows/defwnd.c] [windows/dialog.c] [windows/mdi.c]
716           [windows/nonclient.c] [controls/menu.c] 
717         Various changes for better keyboard handling. 
719         * [windows/event.c] [windows/message.c] [misc/keyboard.c]
720         Proper keyboard message ordering, working GetKeyState() (finally!), 
721         improvements in ToAscii().
723         * [windows/win.c] [windows/message.c]
724         Small improvements in WIN_FindWinToRepaint.
726         * [windows/win.c] [windows/painting.c] [windows/nonclient.c]
727         Put update region in WM_NCPAINT wParam.
729         * [loader/task.c]
730         Kill task timers when task is deleted, switch timers to the
731         new queue in SetTaskQueue().
733         * [loader/signal.c] [miscemu/dosmem.c]
734         Added SIGALRM signal handler to increment BIOS clock. 
736         * [windows/win.c] [windows/winpos.c] [windows/mdi.c]
737         Fixed ChildWindowFromPoint(), WM_PARENTNOTIFY and its handling by
738         MDI client.
740         * [windows/winpos.c]
741         Improvements in handling of owned popups. "Floating" toolboxes 
742         work better now. 
744 Thu Mar 28 12:38:29 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
746         * [misc/registry.c]
747         New file, registry rewrite including win32 extensions
748         - Unicode
749         - multiple valus per key
750         - different datatypes for values
751         - multiple rootkeys
752         - saving and loading in different registries.
754         * [include/winreg.h]
755         New file, definitions and structs for registry.
757         * [include/winerror.h]
758         Some new error defines added... there are more, someone please
759         check a (real-)windows winerror.h.
760         
761         * [if1632/shell.spec] [if1632/advapi32.spec] [if1632/kernel.spec]
762         Registry specs added.
764         * [if1632/relay.c]
765         Switch internal SHELL.DLL to default 'used'.
767         * [win32/string32.c] [include/string32.h]
768         Some new functions added.
769         char should be unsigned char when converting to 16bit ints.
771         * [misc/shell.c] [include/shell.h] [win32/advapi.c]
772         Removed old registry functions.
774 Tue Mar 26 15:01:46 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
776         * [include/bitmaps/ocr_ibeam]
777         Fixed the position of the hotspot.
779         * [objects/text.c]
780         Fixed a few bugs in TEXT_TabbedTextOut().
782         * [windows/event.c]
783         Fixed the order of the bits in the KeyStateTable.
784         0x80 is the up/down-bit.  0x01 is the toggle bit.
786         * [loader/resource.c] [windows/mdi.c] [controls/edit.c]
787         Fixed the calls to GetKeyState().
789 Tue Mar 26 08:43:15 1996  Robert Pouliot <krynos@qbc.clic.net>
791         * [resources/sysres_Fr.rc] [resources/TODO]
792         Updated FIND_TEXT and REPLACE_TEXT to work like the English version.
794 Mon Mar 25 17:38:59 1996  Tristan Tarrant <tst@dcs.ed.ac.uk>
796         * [resources/sysres_it.rc]
797         Added support for Italian [It] language.
799 ----------------------------------------------------------------------
800 Sun Mar 24 13:13:11 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
802         * [include/win.h] [windows/*.c]
803         Replaced next, parent, child and owner handles by pointers in WND
804         structure. This should improve performance, and should be
805         reasonably safe since Microsoft did the same in Win95.
807         * [include/wintypes.h] [*/*]
808         Redefined HANDLE to be UINT instead of a pointer for Winelib. This
809         allows removing a lot of unnecessary casts and NPFMTs.
811         * [windows/caret.c]
812         Create the caret brush upon CreateCaret(); use the bitmap
813         dimensions for the caret.
814         Fixed CARET_DisplayCaret() to use PatBlt().
816 Fri Mar 22 16:00:00 1996  Anand Kumria <akumria@ozemail.com.au>
818         * [misc/winsocket.c]
819         More sanity checks, fixup some erroneous return codes.
821         * [documentation/winsock]
822         Description of how compatible the winsock is currently.
824 Fri Mar 22 13:05:34 1996  Ulrich Schmid  <uschmid@mail.hh.provi.de>
826         * [library/winmain.c]
827         Set `lpszCmdParam' by concatenating arguments.
829         * [loader/module.c]
830         WinExec: accept Unix commands, use Wine emulator.
832 Mon Mar 18 12:16:27 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
834         * [if1632/kernel32.spec][win32/thread.c][include/kernel32.h]
835         DeleteCriticalSection, EnterCriticalSection,
836         InitializeCriticalSection, LeaveCriticalSection, TlsAlloc,
837         TlsFree, TlsGetValue, TlsSetValue: new functions.
838         CRITICAL_SECTION: new structure.
840         * [if1632/kernel32.spec][win32/code_page.c]
841         WideCharToMultiByte: new function.
843         * [if1632/kernel32.spec][win32/file.c]
844         GetFileAttributesA: new function.
846         * [if1632/kernel32.spec][misc/main.c]
847         GetEnvironmentStringsW, FreeEnvironmentStringsA,
848         FreeEnvironmentStringsW: new functions.
849         
850         * [if1632/user.spec][win32/cursoricon32.c][win32/Makefile.in]
851         cursoricon32.c: new file.
852         LoadCursorA, LoadCursorW: modified implementation from LoadCursor
853         to WIN32_*.
854         LoadIconA, LoadIconW: modified implementation from LoadIconA32
855         to WIN32_*.
857         * [include/struct32.h]
858         pragma pack inserted.
859         CURSORICON32 structures added.
861         * [include/winnls.h]
862         Constants CP_* and WC_* added.
864         * [loader/pe_image.c]
865         PE_LoadModule: call PE_InitDLL with hModule rather than wpnt.
867 Sun Mar 17 16:59:12 1996  Albrecht Kleine  <kleine@ak.sax.de>
869         * [misc/commdlg.c]
870         Introduced hook function handling in file dialog.
871         Removed an unnecessary ShowWindow call in FILEDLG_WMCommand().
873 Thu Mar 14 10:50:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
875         * [if1632/gdi32.spec]
876         Added GetNearestColor.
878         * [if1632/kernel32.spec]
879         Added GlobalAddAtomA.
881         * [win32/param32.c]
882         Added stackframe.h to includes.
883         WIN32_GlobalAddAtomA() - new function.
885 ----------------------------------------------------------------------
886 Wed Mar 13 19:46:50 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
888         * [controls/edit.c]
889         Removed calls to memmove (not portable).
891         * [debugger/dbg.y] [debugger/debug.l]
892         Prefixed all token with 't' to avoid conflicts with type
893         definitions.
894         Added 'walk queue', 'walk class' and 'info class' commands.
896         * [debugger/info.c]
897         Moved queue and window information functions to windows/queue.c
898         and windows/win.c respectively.
900         * [loader/signal.c]
901         Added SIGHUP handling to force entry into built-in debugger.
902         Cleaned up a bit.
904         * [misc/spy.c]
905         General cleanup and performance improvements.
907         * [windows/class.c]
908         Added CLASS_DumpClass() and CLASS_WalkClasses() functions for
909         debugger.
911         * [windows/event.c]
912         Pressing Ctrl-Alt-Return forces an entry into the debugger. Not
913         sure if this key combination is a good choice...
915         * [windows/message.c] [windows/queue.c] (New file)
916         Moved message queue handling functions to windows/queue.c.
918 Tue Mar 12 14:55:16 1996  Onno Hovers  <onno@stack.urc.tue.nl>
920         * [if1632/except.S] [include/except.h] [win32/except.c] (New files)
921         Implemented Win32 exception functions: RaiseException(),
922         RtlUnwind(), SetUnhandledExceptionFilter() and
923         UnhandledExceptionFilter().
925 Mon Mar 11 19:23:29 1996  Albrecht Kleine  <kleine@ak.sax.de>
927         * [controls/listbox.c] [include/listbox.h]
928         Special handling for COMBOLBOX styles introduced via extension of
929         HEADLIST structure: lphl->dwStyle.
931 Mon Mar 11 13:31:06 1996  Greg Kreider <kreider@natlab.research.philips.com>
933         * [controls/combo.c]
934         Any mouse movement within a small distance (defined by CBLMM_EDGE)
935         of the top or bottom edge causes the window to scroll.  Also moved 
936         some assignments so the routine works correctly.
938         * [controls/listbox.c]
939         Changing selection in ListBoxSetCurSel now updates PrevFocused.
940         Added to LBSetFont and CreateListBoxStruct a fake hdc that tests 
941         and sets the standard text height.
943 Sun Mar 10 08:39:23 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
945         * [windows/dce.c]
946         Fixed memory leak in DCE_ClipWindows().
948 ----------------------------------------------------------------------
949 Fri Mar  8 19:07:18 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
951         * [configure.in]
952         Quote '[' and ']' in the test program for the strength-reduce
953         bug. This should work much better...
955         * [files/file.c]
956         Augmented DOS_FILE structure. Most internal functions now return a
957         DOS_FILE* instead of a Unix handle.
958         Added a local file array to replace the PDB list upon startup, to
959         allow using file I/O functions before the first task is created.
960         Added FILE_SetDateTime() and FILE_Sync() functions.
961         
962         * [loader/module.c]
963         Use the DOS file I/O functions in MODULE_LoadExeHeader().
965         * [objects/bitblt.c]
966         Use visible region instead of GC clip region to clip source
967         area. This fixes the card drawing bug in freecell.
969         * [objects/region.c]
970         Fixed CombineRgn() to allow src and dest regions to be the same.
972 Fri Mar  8 16:32:23 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
974         * [controls/EDIT.TODO]
975         Updated so it reflects the current status.
977         * [controls/edit.c]
978         Implemented internal EDIT_WordBreakProc().
979         Implemented ES_READONLY.
980         Implemented WM_LBUTTONDBLCLK to select whole words.
981         Fixed a lot of types in the function definitions.
983 Wed Mar  6 19:55:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
985         * [debugger/info.c]
986         Added "walk window" command to walk window list. 
988         * [windows/mdi.c]
989         Added proper(?) WM_MDISETMENU message handling.
991 Wed Mar  6 09:27:12 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
993         * [if1632/callback.c][if1632/relay32.c]
994         RELAY32_CallWindowProcConvStruct: new function.
996         * [win32/struct32.c][win32/Makefile.in][win32/param.c][win32/user32.c]
997         struct32.c: new file. Moved all structure conversions into that file
998         PARAM32_POINT32to16,MSG16to32,USER32_RECT32to16: 
999         renamed to STRUCT32_POINT32to16, ...
1000         WIN32_POINT,WIN32_MSG,WIN32_RECT,WIN32_PAINTSTRUCT: renamed to
1001         POINT32, ...
1002         New conversion functions for NCCALCSIZE_PARAMS, WINDOWPOS,
1003         CREATESTRUCT.
1005         * [include/windows.h][misc/exec.c]
1006         WINHELP, MULTIKEYHELP, HELPWININFO: new structures
1007         WinHelp: Reimplemented. Thanks to Peter Balch
1008         (100710.2566@compuserve.com) for his valuable research.
1010         * [win32/winprocs.c]
1011         WIN32_CallWindowProcTo16: new function, call in
1012         USER32_DefWindowProcA,...
1014 Mon Mar  4 23:22:40 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
1016         * [include/wintypes.h]
1017         Added "#define __export".
1019         * [objects/bitblt.c]
1020         Put in a few hacks to make bitblt-ing work when upside-down and/or
1021         mirrored.  BITBLT_StretchImage should really be checked over
1022         thoroughly.
1024         * [programs/progman/main.c]
1025         Added "#include <resource.h>" for definition of HAVE_WINE_CONSTRUCTOR.
1027         * [rc/parser.h] [rc/parser.l] [rc/parser.y] [rc/winerc.c]
1028         Eliminated shift/reduce conflict in style definition.
1029         Added crude error message support: "stdin:%d: parse error before '%s'".
1030         Implemented string table support to the best of my ability (it works
1031         with LoadString() calls).
1033         * [windows/nonclient.c]
1034         Fixed bug in NC_DoSizeMove() that made system menu pop up when title
1035         bar of non-iconized window was clicked (checked for iconization).
1037 Mon Mar 04 20:55:19 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
1039         * [if1632/lzexpand.spec] [if1632/relay.c]
1040           [include/lzexpand.h][misc/lzexpand.c]
1041         LZEXPAND.DLL added.
1043 Sun Mar 03 18:10:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
1045         * [windows/win.c]
1046         Prevent usage of invalid HWNDs in WIN_EnumChildWin(),
1047         this prevents too early termination of EnumChildWindows().
1049 ----------------------------------------------------------------------
1050 Sat Mar  2 18:19:06 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1052         * [controls/scroll.c]
1053         Fixed SCROLL_THUMB painting fixes from Alex Korobka to store the
1054         current tracking window.
1056         * [files/file.c]
1057         Fixed two file descriptor leaks in FILE_OpenFile().
1059         * [if1632/relay32.c] [loader/module.c] [loader/pe_image.c]
1060           [tools/build.c]
1061         Replaced LOADEDFILEINFO structure by OFSTRUCT.
1063         * [memory/atom.c]
1064         Reload the pointer to the atom table in ATOM_GetTable() and
1065         ATOM_AddAtom() in case the LOCAL_Alloc() calls caused the table to
1066         move in linear memory.
1068 Fri Mar  1 11:57:13 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
1070         * [include/callback.h]
1071         Added support for CallWordBreakProc().
1073         * [controls/edit.c]
1074         New caret handling (really efficient / fast).
1075         Implemented EM_SETWORDBREAKPROC and EM_GETWORDBREAKPROC.
1076         Fixed EM_SETFONT so it now also creates a proper new caret.
1078 Wed Feb 28 22:03:34 1996  Daniel Schepler  <daniel@frobnitz.wustl.edu>
1080         * [controls/desktop.c] [misc/main.c] [windows/event.c] [windows/win.c]
1081         Added WM_DELETE protocol to top-level windows.
1083         * [controls/scroll.c]
1084         Fixed a problem which caused slow scrolling to continue uncontrollably.
1086         * [misc/exec.c]
1087         Implemented ExitWindows().
1089         * [windows/win.c]
1090         Set top-level owned windows to be transient.
1092 Wed Feb 28 19:13:22 1996  Ulrich Schmid  <uschmid@mail.hh.provi.de>
1094         * [programs/progman/*]
1095         Added a program manager.
1097 Wed Feb 28 18:38:01 1996  Duncan C Thomson <duncan@spd.eee.strath.ac.uk>
1099         * [resources/sysres_Eo.c]
1100         Added support for Esperanto [Eo] language.
1102 Wed Feb 28 00:23:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
1104         * [if1632/user32.spec]
1105         Added EndDialog, GetDlgItem, GetDlgItemInt, SetDlgItemInt,
1107         * [win32/init.c]
1108         Added task.h to includes. GetModuleHandleA() - return hInstance
1109         if called with NULL parameter. Freecell needs this. NOTE this
1110         may indicate a problem with differentiation between hModule and
1111         hInstance within Wine.
1113         * [win32/resource.c]
1114         FindResource32() and LoadResource32() - Removed #if 0's around
1115         conversion from hInstance to hModule. See remarks above.
1117         * [win32/string32.c]
1118         WIN32_UniLen() - removed stray semicolon.
1120 Tue Feb 27 21:05:18 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
1121         
1122         * [windows/caret.c]
1123         Set blink rate with call to GetProfileInt().
1125         * [rc/winerc.c]
1126         In new_style(), made initial flag settings WS_CHILD | WS_VISIBLE
1127         instead of 0.  This seems to correspond to Borland's defaults, and
1128         the flags can be unset by using the (rather obtuse) "| NOT WS_CHILD"
1129         or "| NOT WS_VISIBLE" technique in the *.rc file.
1131         * [win32/time.c]
1132         In GetLocalTime() and GetSystemTime(), used tv_sec field of result
1133         returned by gettimeofday() instead of making second call to
1134         time().  This eliminates clock jitter if the seconds change
1135         between the two calls (rare, but possible).
1137         * [include/wintypes.h]
1138         Added "#define _far" and "#define _pascal".
1140         * [windows/win.c]
1141         Added function GetDesktopHwnd().
1143         * [include/xmalloc.h]
1144         Removed the '#ifdef HAVE_STDLIB_H' structure, since it seemed to
1145         have been removed from 'configure', and was causing redefinition
1146         warnings.
1148 Tue Feb 27 19:31:11 1996  Albrecht Kleine <kleine@ak.sax.de>
1150         * [windows/winpos.c] 
1151         Added RDW_ALLCHILDREN flag in SetWindowPos (handling SWP_FRAMECHANGED)
1152         to force a repaint when setting menu bars with different rows.
1154 Sun Feb 25 21:15:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
1156         * [windows/syscolors.c] [controls/scroll.c]
1157         Fixed DrawFocusRect pen and SCROLL_THUMB painting.
1159 ----------------------------------------------------------------------
1160 Sat Feb 24 16:17:05 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1162         * [files/profile.c]
1163         Added \r when writing profile files, for DOS compatibility.
1165         * [memory/global.c]
1166         Fixed bug in GlobalReAlloc() that caused a discarded block not to
1167         be reallocated if its size was not changed.
1169         * [memory/selector.c]
1170         Avoid setting a valid LDT entry with base and limit set to 0, as
1171         this causes the kernel to clear the entry. This fixes a crash when
1172         exiting Windows program manager.
1174         * [objects/metafile.c]
1175         Removed call to creat() instead of _lcreat() for WINELIB.
1177 Fri Feb 23 00:35:54 1996  Thomas Sandford <tdgsandf@prds-grn.demon.co.uk>
1179         * [if1632/gdi32.spec]
1180         GetTextExtentPointA now has win32 specific implementation.
1182         * [include/struct32.h]
1183         Define new structure tagSIZE32 and typedef SIZE32 to it.
1184         Define prototype for function PARAM32_SIZE16to32
1186         * [win32/param32.c]
1187         New functions PARAM32_SIZE16to32 and WIN32_GetTextExtentPointA
1189         * [win32/memory.c]
1190         Added missing file pointer parameter to fprintf.
1192 Thu Feb 22 01:14:21 1996  Eric Warnke <ew2193@csc.albany.edu>
1194         * [windows/nonclient.c]
1195         Added more familiar icon activity, ie single click brings up
1196         system menu.
1198 Wed Feb 21 13:07:04 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
1200         * [controls/menu.c]
1201         Added calls to HideCaret() and ShowCaret() from within
1202         TrackPopupMenu(), MENU_TrackMouseMenuBar() and
1203         MENU_TrackKbdMenuBar().  Are there any more places where this
1204         should be done?
1206         * [controls/static.c]
1207         Fixed a FIXME in STATIC_SetIcon(), which now returns a handle to
1208         the previous icon.  Added a new FIXME at the point where
1209         WM_SETTEXT is handled for a SS_ICON static control.
1211         * [misc/commdlg.c]
1212         Implemented FindText() and ReplaceText()
1213         Still missing : Templates and Hooks handling / error checking
1215         * [resources/sysres_En.c]
1216         Redesigned FIND_TEXT and REPLACE_TEXT dialogs, so they now work.
1217         Languages other than En should update these too, though, as well
1218         as redimension the controls because some of the text doesn't fit.
1219         Created file resources/TODO to explain this.
1221         * [windows/caret.c]
1222         Re-written.  It now uses the correct R2_XORPEN.  It resets the
1223         blink timer on SetCaretPos().  It does its own hide/show scheme
1224         when SetCaretPos() is called (should be faster).
1226 Mon Feb 19 21:50:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
1228         * [controls/listbox.c]
1229         Miscellaneous changes for better LBS_EXTENDEDSEL support.
1230         Removed several superfluous redrawals of item list.
1232         * [controls/scroll.c]
1233         WM_GETDLGCODE return value.
1235         * [windows/win.c]
1236         FlashWindow function.
1238         * [windows/painting.c] [windows/scroll.c]
1239         Added HideCaret/ShowCaret calls.
1241         * [objects/font.c]
1242         Added GetCharABCWidths stub.
1244         * [include/windows.h]
1245         "#define"s needed for changes mentioned above.
1247 Mon Feb 19 20:12:03 1996  Hans de Graaff  <Hans.deGraaff@twi72.twi.tudelft.nl>
1249         * [include/winsock.h]
1250         Change order of includes to get in_addr struct defined in time.
1251         (Note: Linux 1.3.66, libc 5.2.18)
1253         * [misc/main.c] [include/options.h] [miscemu/int2f.c]
1254         Changed the -enhanced option into a -mode option, which can be
1255         either 'standard' or 'enhanced'. 'enhanced' is the default.
1257 ----------------------------------------------------------------------
1258 Sun Feb 18 16:35:54 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1260         * [controls/desktop.c]
1261         Look for the wallpaper file in the Windows directory.
1263         * [controls/menu.c]
1264         Fixed swapped parameters in SetMenuItemBitmaps().
1265         Create a separator in MENU_SetItemData() when the string is NULL.
1267         * [file/dosfs.c]
1268         DOSFS_FindNext: don't return '.' and '..' in a drive root dir.
1270         * [files/file.c]
1271         Added a DOS_FILE structure to store per-file information (not
1272         really used yet).
1273         Fixed _lread and _hread to check the size of the buffer before
1274         calling Unix read() to avoid EFAULT error.
1276         * [misc/exec.c]
1277         Return TRUE in WinHelp() for HELP_QUIT to quiet Notepad on exit.
1279         * [miscemu/instr.c]
1280         Call DOSMEM_Alarm() in INSTR_ReplaceSelector(). This should fix
1281         programs that poll the BIOS counter, provided they reload the
1282         selector on every read.
1284         * [miscemu/int21.c]
1285         Re-implemented FindFirst/FindNext for FCB calls.
1287         * [windows/message.c] [windows/winpos.c]
1288         Merged MSG_GetWindowForEvent() and WINPOS_WindowFromPoint().
1290         * [windows/nonclient.c] [windows/win.c] [include/windows.h]
1291         Added a per-window WIN_MANAGED flag; only windows that have a
1292         dialog frame or a sizing border are managed.
1294 Sat Feb 17 18:25:00 1996  Thomas Sandford <tdgsandf@prds-grn.demon.co.uk>
1296         * [if1632/Makefile.in]
1297         Added -g flag to compilation of .c files generated from *32.spec.
1299         * [if1632/gdi32.spec]
1300         Numerous additional functions implemented.
1302         * if1632/user32.spec]
1303         wsprintfA maps to vsprintf not wsprintf
1304         Numerous additional functions implemented.
1306         * [include/gdi.h] [objects/gdiobj.c]
1307         New #define MAGIC_DONTCARE added. This is used in
1308         GDI_GetObjPtr to enable getting a pointer to a GDI object of
1309         unknow type.
1311         * [win32/gdi32.c]
1312         New file.
1314         * [win32/param32.c]
1315         WIN32_MoveToEx() - handle NULL pointer argument.
1317         * [win32/user32.c]
1318         USER32_InvalidateRect - handle passing of a NULL pointer.
1319         USER32_SetTimer - New function.
1321         * [files/directory.c]
1322         Fixed DIR_Init() (off by one in allocation of space for
1323         environment variables).
1325         * [files/drive.c]
1326         Added <sys/types.h> to #includes (prerequisite for <sys/stat.h>
1327         on FreeBSD).
1329 Fri Feb 16 10:26:56 1996  Andreas Kirschbaum <ank@rbg.informatik.th-darmstadt.de>
1331         * [controls/menu.c]
1332         Memory leak plugged.
1334         * [controls/edit.c]
1335         Erase space with function ExtTextOut(). This eliminates the use of
1336         xmalloc().  Memory leak in EDIT_WriteText plugged.
1338         * [debugger/db_disasm.c]
1339         Operand for scas now is di.
1341         * [files/profile.c]
1342         PROFILE_GetSection was copying too much data.
1343         PROFILE_GetSection now returns the correct value. It was returning
1344         the number of unused instead of used bytes.
1346         * [objects/dc.c]
1347         Corrected two typos in comments.
1349         * [objects/font.c]
1350         FONT_MatchFont didn't return if it couldn't find any font.
1352         * [objects/oembitmap.c]
1353         Free object only if it has been allocated.
1355         * [windows/scroll.c]
1356         Memory leak in ScrollDC plugged.
1358 Tue Feb 13 11:17:00 1996 William Magro  <wmagro@tc.cornell.edu>
1360         * [controls/edit.c]
1361         Implemented ES_NOHIDESEL style, shift+click selection,
1362         shift+{arrow,home,end,pgup,pgdn} selection.  Optimized
1363         (de)selection drawing.  Changed selection drawing to use correct
1364         system colors instead of inverting.  Fixed deleting or backspacing
1365         across a '\r\n' end of line pair.  Selection now anchors
1366         correctly. Fixed text leaking and extra garbage problem bug
1367         uncovered by change in class style in wine960131.
1369         * [controls/widgets.c]
1370         Class flags now match those of Windows.
1372 Mon Feb 12 21:28:19 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
1374         * [controls/widgets.c]
1375         WIDGETS_Init: RELAY32_GetEntryPoint does not take a string anymore.
1377         * [if1632/Makefile.in][if1632/relay32.c][include/relay32.h]
1378         comctl32.spec ole32.spec winspool.spec: new files.
1379         RELAY32_Init: call initialization of new DLLs.
1380         RELAY32_GetEntryPoint: expects WIN32_builtin* now.
1381         RELAY32_MakeFakeModule: new function.
1383         * [if1632/gdi32.spec][if1632/kernel32.spec][if1632/user32.spec]
1384         Added Win95 functions. Ordinals now differ from both NT and Win95
1385         HeapCreate, CreateDialogIndirectParamA, CreateDialogIndirectParamW,
1386         CreateDialogParamA, CreateDialogParamW, DialogBoxIndirectParamA
1387         DialogBoxIndirectParamW, DialogBoxParamA, DialogBoxParamW:
1388         new relays.
1390         * [if1632/shell32.spec]
1391         shell32.spec: renumbered all functions to take into account ordinals.
1392         These seem to be identical between NT and Win95.
1394         * [include/dialog.h][windows/dialog.c]
1395         xBaseUnit,yBaseUnit,DIALOG_DoDialogBox: made non-static.
1397         * [include/handle32.h]
1398         New handle types VRANGE, HEAP, HEAPITEM.
1400         * [include/pe_image.h][loader/pe_image.c]
1401         struct w_files: new field builtin.
1402         PE_FindExportedFunction: support ordinals.
1403         PE_GetProcAddress: call RELAY32_GetEntryPoint for builtins.
1404         fixup_imports: support ordinals.
1405         PE_LoadImage: prefer directories over segments.
1407         * [include/resource.h][win32/resource.c]
1408         FindResource32: changed parameter from LPCTSTR to LPCWSTR
1409                 check LANG_NEUTRAL if LANG_ENGLISH fails.
1410         LoadAcceleratorsW,SizeofResource32,AccessResource32: 
1411                 disabled because it's broken.
1412         Casted to and from LPWSTR at various places.
1414         * [include/string32.h][win32/string32.c]
1415         Changed prototypes to take const arguments where appropriate.
1417         * [include/struct32.h]
1418         New structures DLGTEMPLATE32, DLGITEMTEMPLATE32.
1420         * [tools/build.c]
1421         BuildSpec32Files: generate Base value into code, generate call to
1422         RELAY32_MakeFakeModule.
1423         
1424         * [win32/heap.c]
1425         This is still not finished and needs rework.
1426         HeapAlloc: renamed to SIMPLE_HeapAlloc, implemented HeapAlloc.
1427         HeapCreate: implemented on top of VirtualAlloc, which does not work yet
1428         HeapDestroy, HEAP_GrowHeap, HeapFree: new functions.
1430         * [win32/memory.c]
1431         Support for VRANGE_OBJECT. This is not yet called from any place,
1432         and needs more platform specific support
1433         MEMORY_FindVrange, MEMORY_IsVrangeFree, MEMORY_InsertVrange,
1434         MEMORY_AllocVrange, MEMORY_ReleaseVrange: new functions.
1436         * [win32/user32.c]
1437         WIN32_CreateWindowExA: don't GlobalAlloc for integer class and window
1438         names, as in dialogs.
1439         Implemented dialog functions (see user32.spec).
1441         * [windows/caret.c]
1442         CARET_Initialize: call RELAY32_GetBuiltinDLL.
1444 Mon Feb 12 18:52:40 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
1446         * [controls/edit.c]
1447         Removed commented out #ifdefs for WINELIB.
1449         * [tools/makehtml.pl]
1450         Put in error checking when trying to open a file.
1452         * [libtest/Makefile.in] [libtest/new.c] [libtest/hello4.c]
1453         Added two new targets: hello4 and new.
1455         * [include/windows.h]
1456         Added definition of DEVMODE structure, although it's not yet used.
1457         Modified various API functions from CreateDC() to Escape(), in
1458         order to make them more compliant with the strict API definitions.
1460         * [include/wintypes.h]
1461         Added 'typedef char TCHAR'.  It probably should be defined as
1462         'short', but then we would have to support such characters.  Also did
1463         'typedef const TCHAR* LPCTSTR' and 'typedef TCHAR* LPTSTR'.
1464         Also defined WNDENUMPROC, FONTENUMPROC, GOBJENUMPROC, PROPENUMPROC
1465         MFENUMPROC, and HGDIOBJ.
1467 Mon Feb  5 16:42:07 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
1469         * [misc/commdlg.c]
1470         Patched a bug that occurred in the internal COMMDLG module for the
1471         FileOpen(), FileSave() and FileSaveAs() functions.  The file-type
1472         combobox is now handled correctly.
1474 Fri Feb  2 22:52:58 1996  Roman Dolejsi  <roman@sorry.vse.cz>
1476         * [resources/sysres_Cz.rc]
1477         Added support for Czech [Cz] language.
1479 Thu Feb  1 00:35:04 1996  Philippe De Muyter  <phdm@info.ucl.ac.be>
1481         * [objects/font.c]
1482         FONT_matchfont : for fixed-spacing fonts, allow 'c' if 'm' fails;
1483         for variable-spacing fonts : allow '*' if 'p' fails; if asked lfHeight
1484         is -1, assume 0.
1485         CreateFontIndirect : if font parameter is NULL, issue an error message.
1486         CreateFont : null-terminate lfFaceName.
1487         ParseFontParms : debug code turned off : too verbose.
1488         InitFontsList : recognize *-c-* fonts as fixed-spacing fonts.
1490         * [objects/color.c]
1491         ColorToPhysical : admit 0xff...... COLORREF's as 0x00...... ones.
1493 --------------------------------------------------------------------
1494 Wed Jan 31 10:58:00 1996  Alexandre Julliard  <julliard@sunsite.unc.edu>
1496         * [configure.in]
1497         Added --with-dll option to build libwine.so.
1499         * [controls/listbox.c]
1500         Fixed ListBoxDirectory(), DlgDirSelect() and
1501         DlgDirList(). Hopefully their behavior is correct now.
1503         * [controls/menu.c]
1504         Use SEGPTRs in ChangeMenu(), InsertMenu(), AppendMenu() and
1505         ModifyMenu() for the item data, to avoid corrupting the pointer
1506         for owner-drawn items.
1508         * [controls/static.c]
1509         Attempt to load OEM icons for SS_ICON controls. Probably not
1510         entirely correct.
1511         Don't clip the text output.
1513         * [files/directory.c]
1514         Add temp dir and Windows dir to environment.
1516         * [files/dos_fs.c]
1517         Fixed a few path handling bugs in DOSFS_GetUnixFileName().
1518         Cache last used directory in DOSFS_FindNext() to avoid quadratic
1519         search time.
1521         * [files/drive.c]
1522         New format for drives configuration in wine.conf; allows
1523         specifying the type, label and serial number of a drive.
1525         * [files/file.c]
1526         New function FILE_OpenUnixFile to make sure we don't open a
1527         directory instead of a file.
1528         Fixed DOSFS_GetUnixFileName() check_last flag in FILE_MakeDir().
1530         * [files/profile.c]
1531         Rewrote profile handling. Should be closer to Windows behavior now.
1532         New function PROFILE_GetWineIniString() to get a string from wine.conf.
1533         Support environment variables in wine.conf.
1535         * [loader/task.c]
1536         Fixed the order of deletion in TASK_DeleteTask() to avoid memory
1537         corruption.
1539         * [memory/global.c]
1540         Create a discarded block on GlobalAlloc() if the size is 0; thanks
1541         to John Harvey for noticing this.
1543         * [memory/local.c]
1544         LOCAL_GetHeap: make sure the pointer is valid before checking
1545         magic number.
1547         * [misc/main.c]
1548         Moved profile and registry saving to ExitWindows(), so we don't
1549         try to save them in case of a crash.
1551         * [miscemu/int21.c]
1552         INT21_GetFreeDiskSpace: try to compute the cluster size from the
1553         filesystem size instead of hard-coding it to 64.
1554         Fixed functions 0x3f and 0x40 to use _hread and _hwrite to allow
1555         reading or writing 65535 bytes (thanks to Bruce Milner for this one).
1557         * [windows/message.c]
1558         Fixed bug in linked-list handling in MSG_DeleteQueue().
1559         Simplified SetMessageQueue().
1561         * [wine.ini] [wine.man]
1562         Updated for new drives configuration format.
1564 Tue Jan 30 11:24:46 1996  William Magro  <wmagro@tc.cornell.edu>
1566         * [controls/edit.c]
1567         Implemented ES_PASSWORD style, EM_SETPASSWORDCHAR and
1568         EM_GETPASSWORDCHAR messages.
1570         * [controls/widgets.c]
1571         Adjusted class creation flags to better match values Windows uses.
1573         * [include/windows.h]
1574         Fixed ES_NOHIDESEL typo.
1576         * [loader/ne_image.c]
1577         Added detection for zero offset in RADDR fixups. Quicken
1578         was in an infinite loop here.
1580 Mon Jan 29 20:12:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
1582         * [files/dos_fs.c]
1583         Bugfix: range error in month value (0..11 set to 1..12).
1585         * [windows/caret.c]
1586         Changed ROP2-mode to R2_NOTXORPEN in CARET_Callback for pulsed
1587         appearance of the caret.
1589         * [windows/mdi.c] [include/mdi.h]
1590         Changed MDITile(): added a new parameter WORD wParam for
1591         WM_MDITILE second tiling method (MDITILE_HORIZONTAL in wParam) as
1592         used in Win3.1
1594 Sun Jan 28 14:20:00 1996  Cameron Heide  <heide@ee.ualberta.ca>
1596         * [miscemu/int2f.c]
1597         Added a small bit of MSCDEX emulation.
1599         * [windows/alias.c]
1600         ALIAS_RegisterAlias was returning the hash value when it should
1601         have been returning the record number.
1602         
1603 Sat Jan 27 10:53:51 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
1605         * [include/shell.h] [include/wintypes.h]
1606         Moved definition of HKEY and LPHKEY types to include/wintypes.h.
1607         Declared FONTENUMPROC in wintypes.h.
1609         * [include/windows.h]
1610         Added definition of KERNINGPAIR and LPKERNINGPAIR types.  Added
1611         declarations for CopyCursor(), CopyIcon(), EnumFontFamilies(),
1612         ExtractIcon(), FatalAppExit(), FindExecutable(), GetClipCursor(),
1613         GetKerningPairs(), GetQueueStatus(), GetRasterizerCaps(),
1614         IsGDIObject(), IsMenu(), IsTask(), RegCloseKey(), RegCreateKey(),
1615         RegDeleteKey(), RegEnumKey(), RegOpenKey(), RegQueryValue(),
1616         RegSetValue(), ResetDC(), ShellExecute(), SystemParametersInfo(),
1617         and wsprintf().
1619         * [tools/makehtml.pl] [documentation/apiw.index]
1620         New files that scan windows.h, commdlg.h, and toolhelp.h and output
1621         an HTML sorted list with optional links to www.willows.com and a
1622         tally of unimplemented APIW functions.
1624         * [objects/cursoricon.c]
1625         Added Win32 versions of CopyIcon() and CopyCursor() for use in
1626         libwine.
1628         * [win32/resource.c] [win32/winprocs.c]
1629         Added '#include "libres.h"' and explicit declarations of windows
1630         procs in order to avoid warnings.
1632         * [windows/utility.c]
1633         Added Win32 version of MulDiv() for libwine.
1635         * [*/*] [include/windows.h]
1636         Changed several function declarations to comply more strictly to
1637         the windows API (without, hopefully, altering their functionality).
1639         * [controls/menu.c]
1640         Made the return value of CheckMenuItem be the previous state of
1641         the menu item if it was found, otherwise -1 as specified in the
1642         SDK. This conflicts with the APIW specification, which says it
1643         should return TRUE if successful, otherwise FALSE.
1645         * [include/windows.h]
1646         Added obsolete WM_SIZE message wParam names for compatibility.
1647         Added WinHelp() command constants, even though they are not yet
1648         supported.
1650         * [rc/winerc.c]
1651         Tidied up transform_binary_file().  In argument checking, flattened
1652         any invalid characters specified with the prefix argument.
1654         * [library/libres.c]
1655         Made FindResource() case-insensitive when parameter 'name' is a string.
1657 Sat Jan 27 02:30 1996  Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de
1659         * [files/drive.c]
1660         If root "/" is given in wine.conf, use it as last resort.
1662         * [files/file.c]
1663         Report ER_AccessDenied it disk ist not writable
1664         More Debug Output
1666         * [miscemu/int21.c]
1667         Squeezed some bugs in ExtendedOpenCreateFile
1668         
1669         * [windows/winpos.c]
1670         Some windows may not be moved or resized. We are missing some
1671         structures to be exact, but the approach should help in some cases
1672         and make things worse in much fewer.
1674 Fri Jan 26 10:24:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
1676         * [loader/pe_image.c]
1677         fixup_imports: Find builtins for Borland style entries, too
1679 Fri Jan 26 10:24:00 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
1681         * [controls/menu.c]
1682         LoadMenu: branch to Win32 for PE modules
1684         * [if1632/gdi.spec][if1632/kernel32.spec][if1632/user32.spec]
1685         DeleteObject, GetPixel, SetPixel,WritePrivateProfileStringA,
1686         WriteProfileStringA, EmptyClipboard, EnableMenuItem, EnableScrollBar,
1687         EnableWindow, InvalidateRect, SetWindowTextA, WinHelpA: new relays
1688         DrawTextA, MoveToEx, GetClientRect, InvalidateRect, LoadBitmapA/W,
1689         LoadAcceleratorsA/W, LoadMenu[Indirect]A/W, LoadStringA/W: changed
1690         to convert parameters or naming convention
1692         * [include/kernel32.h][include/wintypes.h]
1693         moved WCHAR, defined LPWSTR
1695         * [include/string32.h][win32/string32.c][include/struct32.h]
1696         New files
1698         * [loader/module.h]
1699         LoadModule: exit after returning from PE_LoadModule
1701         * [loader/pe_image.c]
1702         my_wcstombs: isascii does not work on Linux for Unicode
1703         PE_LoadImage: Handle directories
1705         * [misc/user32.c]
1706         USER32_RECT32to16, USER32_RECT16to32: new functions
1707         implemented new user32 relays
1709         * [misc/newfns.c]
1710         WIN32_WinHelpA: new function
1712         * [win32/param32.c]
1713         New file
1715         * [win32/resource.c]
1716         GetResDirEntry: added support for named entries
1717         WIN32_LoadAcceleratorsW: invoke *32 resource functions
1718         WIN32_LoadBitmapA: convert name to unicode if appropriate
1719         WIN32_ParseMenu: new function
1720         implemented new resource functions from user32.spec
1722 Wed Jan 24 18:09:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
1724         * [objects/cursoricon.c]
1725         GetIconId() and LoadIconHandler() functions.
1727         * [windows/mdi.c]
1728         Better maximization support, TranslateMDISysAccel() function, 
1729         misc improvements.
1731         * [windows/defwnd.c]
1732         Fix for WM_WINDOWPOSCHANGED message handler.
1734         * [windows/winpos.c]
1735         Rewrote WindowFromPoint() function.
1737 Sun Jan 21 1996 17:05:09  Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de>
1739         * [include/toolhelp.h] [misc/toolhelp.c]
1740         Added Notify(Un)Register, but no callbacks yet.
1742 Fri Jan 19 01:43:37 1996 Victor Schneider <root@tailor.roman.org>
1744         * [Makefile.in]
1745         Added target for libwine.so.1.0.
1747         * [library/winmain.c]
1748         For WINELIBDLL, _WinMain just returns hInstance instead of calling
1749         WinMain().
1751         * [misc/main.c]
1752         For WINELIBDLL, renamed main() to _wine_main() for calling from the
1753         stub main function.
1755         * [library/winestub.c] (new file)
1756         Provides a stub main() function for using libwine.so.
1758 Tue Jan 16 11:04:34 1996  Anand Kumria <akumria@ozemail.com.au>
1760         * [winsocket.c]
1761         Fix EPERM problem.
1763         * [global.c]
1764         Attempt to do some sanity checking in MemManInfo().
1766         * [Changelog]
1767         Fix changelog oversight for previous entry.
1769 ---------------------------------------------------------------------
1770 Sun Jan 14 13:45:22 1996  Alexandre Julliard  <julliard@sunsite.unc.edu>
1772         * [configure.in]
1773         Added check for gcc strength-reduce bug.
1775         * [controls/listbox.c]
1776         Changed ListBoxDirectory() to use the new DOS file functions.
1778         * [controls/menu.c]
1779         Fixed parameters for DeleteMenu() call in ChangeMenu().
1781         * [debugger/stack.c]
1782         Also display current frame in back-trace.
1784         * [files/directory.c] [files/dos_fs.c] [files/drive.c] [files/file.c]
1785         Complete rewrite of the DOS file handling.
1786         Implemented per-task file handles.
1787         Removed default Z: drive; needs to be put explicitely in wine.ini
1788         if desired.
1790         * [loader/module.c]
1791         Fixed file descriptor leak in LoadModule().
1793         * [loader/task.c]
1794         Initialise PDB file handle table in TASK_CreateTask().
1795         Close file handles on task termination.
1796         Implemented SetErrorMode().
1798         * [misc/network.c]
1799         Fixed WNetGetConnection() to use GetDriveType().
1801         * [misc/xmalloc.c]
1802         Added function xstrdup().
1804         * [miscemu/int21.c]
1805         Many changes for new DOS file functions.
1807         * [miscemu/interrupts.c]
1808         Moved DOS_GetEquipment() function into INT_Int11Handler().
1810         * [windows/win.c]
1811         Bug fix: create system menu before sending WM_NCCREATE.
1813         * [*/*.c]
1814         Replaced strcasecmp and strncasecmp by lstrcmpi and lstrncmpi for
1815         better portability.
1817 Sat Jan 13 16:13:02 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
1819         * [include/wintypes.h]
1820         Added 'typedef HGLOBAL GOBALHANDLE;'.  This is not precisely in line
1821         with the true windows 'typedef HANDLE GLOBALHANDLE;', but I believe
1822         it should suffice.
1824         * [include/winsock.h]
1825         Added '#include <arpa/inet.h>' for various declarations.  '#ifdef'-ed
1826         out some old style internet address #define's.
1828         * [loader/task.c]
1829         Made MakeProcInstance() return first parameter #ifdef WINELIB32.
1830         Made FreeProcInstance() do nothing #ifdef WINELIB32.
1831         '#ifdef'-ed out TASK_AllocThunk(), as it was unused in WINELIB32.
1833         * [library/miscstubs.c]
1834         Made GetWndProcEntry16() return ACTIVATEAPP_callback() when called
1835         with name="ActivateAppProc".  This hardly seems correct, but it's my
1836         best guess as to how the emulator responds.
1838 Sat Jan  6 17:57:45 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
1840         * [if1632/kernel32.spec][win32/process.c]
1841         WIN32_GetProcAddress, LoadLibraryA: new functions
1843         * [if1632/relay32.c]
1844         RELAY32_GetEntryPoint: Removed code to load PE DLLs
1846         * [include/pe_image.h][include/pe_exe.h]
1847         struct pe_data: new fields base_addr,load_addr,vma_size,pe_reloc
1848         struct PE_Reloc_Block: new structure
1850         * [loader/module.c]
1851         MODULE_RegisterModule: new function
1853         * [loader/pe_image.c]
1854         PE_FindExportedFunction,PE_GetProcAddress: new functions
1855         fixup_imports: expect struct w_files* now, fill dlls_to_init,
1856                        load PE DLLs
1857         do_relocations: new functions
1858         calc_vma_size: renamed from dump_table
1859         PE_LoadImage: use malloc to allocate memory for image
1860         PE_InitDLL: expect HMODULE
1861         PE_InitializeDLLs: new function
1863         * [loader/task.c]
1864         NE_InitializeDLLs: branch to PE_InitializeDLLs for PE modules
1865         GetExePtr: Accept PE modules
1867         * [misc/commdlg.c]
1868         FILEDLG_WMCommand: unpack WIN32 WM_COMMAND appropriately for WineLib
1870 Thu Jan  4 11:36:21 1996  Manfred Weichel <Manfred.Weichel@mch.sni.de>
1872         * [misc/port.c]
1873         New file with usleep() function for SVR4.
1875         * [configure.in]
1876         Check for usleep() function.
1878 Tue Jan 02 14:00:00 1996  Anand Kumria <akumria@ozemail.com.au>
1880         * [if1632/toolhelp.spec] [include/toolhelp.h]
1881           [misc/user.c] [windows/message.c]
1882         Implement TOOLHELP.80 TimerCount. Fix GetTickCount.
1884         * [winsocket.c]
1885         Fixed ENOENT error.
1887         * [miscemu/dpmi.c]
1888         Implement DPMI Get Page Size (AX=0604, INT 31)
1890         * [memory/global.c]
1891         Implement TOOLHELP.72 GetMemManInfo.
1893 Mon Jan  2 10:33:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
1895         * [if1632/callback.c]
1896         CallWindowProc() - When calling RELAY32_CallWindowProc, check
1897         whether lParam should be a SEGPTR, and if so convert it to one.
1899         * [if1632/gdi.spec] [if1632/kernel32.spec] [if1632/user32.spec]
1900         Numerous functions added, mostly calls to original (win16)
1901         functions.  Note that some (many) of these are probably not
1902         strictly correct, but with these additions freecell will at least
1903         display its main window though it is garbled.
1905         * [if1632/winprocs.spec]
1906         Completely rewritten - all WndProcs now have win32 versions to
1907         help with the lparam SEGPTR fix in callback.c
1909         * [include/kernel32.h]
1910         LPTCSTR defined.
1912         * [include/peexe.h]
1913         Definition of PE_Export_Directory amended.
1915         * [include/resource32.h]
1916         New file.
1918         * [include/stackframe.h]
1919         Definition of MAKE_SEGPTR macro #ifdef'd out and replaced with
1920         prototype for replacement function in memory/selector.c which
1921         can operate on any given memory address. This is currently
1922         required for win32 support. It is a dreadful cludge, and will
1923         certainly slow down other programs. If you are not interested
1924         in win32 development you may wish to reverse this patch.
1926         * [include/windows.h]
1927         Definition of SW_SHOWDEFAULT added.
1929         * [loader/pe_image.c]
1930         Extensive rewrites of xmmap() fixup_imports().
1931         PE_LoadImage() - initialisation of bss added, extraction of
1932         module name fixed, initialisation of DLL added.
1933         PE_InitDLL() - now does something.
1934         PE_Win32CallToStart() - initialisation of TEB pointed to by
1935         fs added.
1936         PE_InitTEB() created to perform TEB initialisation.
1938         * [memory/selector.c] 
1939         New function MAKE_SEGPTR() - see include/stackframe.h above.
1941         * [misc/user32.c]
1942         USER32_RegisterClassA(), CreateWindowExA() memory allocation
1943         method changed. This is probably now unnecessary with the
1944         new MAKE_SEGPTR handling code.
1945         USER32_DefWndProcA() removed to win32/winprocs.c
1946         USER32_TranslateMessage added.
1948         * [tools/build.c]
1949         handling of win32 spec files changed to support gcc2.6.X
1950         this requires optimisations to be disabled.
1952         * [win32/resource.c] [win32/newfns.c] [win32/heap.c] [win32/winprocs.c]
1953         New files.
1955         * [win32/Makefile.in]
1956         New files heap.c, newfns.c, resource.c and winprocs.c added to build.
1958         * [win32/file.c]
1959         New function W32_SetHandleCount.
1961         * [win32/init.c]
1962         WIN32_GetModuleHandle() - now returns handle of running process
1963         if called with NULL.
1964         GetStartupInfoA() - set cbReserved2 to 0.
1966         * [win32/memory.c]
1967         VirtualAlloc() - set mmap() file parameter to -1 instead of 0 to make
1968         it work with FreeBSD. Also check for return value. Removed extra
1969         return.
1971         * [windows/winpos.c]
1972         ShowWindow() - SW_SHOWDEFAULT handling kludged in.
1974 ----------------------------------------------------------------------
1975 Sat Dec 23 18:15:59 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
1977         * [configure.in] [Makefile.in] [tools/install-sh]
1978         New 'install' target installs Wine binary, library and man page.
1979         Library is now more logically named libwine.a.
1980         Split toolkit/ directory into library (for library code) and
1981         libtest (for test programs).
1983         * [controls/edit.c]
1984         Quick hack to partially support EM_PASSWORD style (avoids
1985         displaying your passwords on the screen when testing programs...)
1987         * [configure.in] [controls/menu.c] [include/resource.h]
1988           [misc/commdlg.c] [misc/ole2nls.c] [misc/shell.c] [windows/msgbox.c]
1989         Language is now a run-time option (wine -language xx).
1991         * [debugger/dbg.y]
1992         Dump some more debugging info on crash.
1994         * [misc/profile.c]
1995         Only consider ';' as a comment if it's the first non-blank
1996         character on the line.
1998         * [miscemu/dpmi.c]
1999         More debugging info for real-mode callback.
2001         * [objects/gdiobj.c]
2002         Rewrote EnumObjects() to do the Right Thing.
2004         * [resources/sysres*]
2005         New directory containing system resources.
2007 Fri Dec 22 11:24:39 GMT 1995  John Harvey <john@division.co.uk>
2009         * [win32/file.c] [win32/memory.c]
2010         Unixware doesn't have MAP_ANON ifdefed out for now.
2012         * [misc/dos_fs.c]
2013         DOS_GetDosFileName didn't truncate paths starting ./ properly.
2015         * [tools/build.c]
2016         Produces assembly code that works with the unixware assembler.
2018 Wed Dec 20 22:22:29 +0100 1995  Morten Welinder <terra@diku.dk>
2020         * [miscemu/instr.c]
2021         INSTR_GetOperandAddr: 16-bit addresses should be masked to 16 bits.
2023         * [misc/dos_fs.c]
2024         DOS_readdir should always return directories, even if they don't
2025         match the file name mask.
2027 Tue Dec 19 18:00:00 1995  Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
2028         
2029         * [misc/exec.c]
2030         Give arguments to winhelp.
2032         * [miscemu/int21.c]
2033         Implemented Interrupt 21 AX=6C00 EXTENDED OPEN/CREATE.
2034         Created function ExtendedOpenCreateFile.
2035         Give for some Windows95 interrupts the return value 'not
2036         implemented'.
2038 Sun Dec 17 16:51:56 EST 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
2040         * [include/kernel32.h] [include/windows.h]
2041         Moved the typedefs for SYSTEMTIME and LPSYSTEMTIME from
2042         include/kernel32.h to include/windows.h and declared the new Win32
2043         API functions Sleep(), GetLocalTime(), and GetSystemTime().
2044         Redefined INFINITE as 0xFFFFFFFF if WINELIB32.
2046         * [rc/rc (new file)]
2047         Created the shell script 'rc', which should simplify resource
2048         compilation.
2050         * [win32/environment.c]
2051         Kludged around an undefined reference to wine_files.  This change
2052         should be fixed some time.
2054         * [win32/time.c] [if1632/kernel32.spec]
2055         Added the functions GetSystemTime(), and Sleep().
2057         * [miscemu/int21.c]
2058         Renamed static function GetSystemTime to INT21_GetSystemTime to
2059         avoid conflicts with the API function of the same name.
2061         * [include/wintypes.h]
2062         Added the SPFMT definition for printf statements.
2064         * [misc/shell.c] [include/shell.h]
2065         Changed ERROR_* defines to SHELL_ERROR_*, as they were conflicting
2066         with the ones in include/winerror.h.  They should probably use the
2067         versions in winerror.h, but I'm not certain, and that can be done
2068         later.
2070         * [windows/mdi.c]
2071         Translated WM_MDIACTIVATE(?,(LOhwnd,HIhwnd)) messages to
2072         WM_MDIACTIVATE(HIhwnd,LOhwnd) for WINELIB32.  The ? parameter
2073         (boolean) was discarded with this translation.  Translated handler
2074         of WM_MDISETMENU(ref,(loHMENU,hiHMENU)) to handle
2075         WM_MDISETMENU(loHMENU, hiHMENU) messages in WINELIB32 (ref assumed
2076         false, call DrawMenuBar() if desired).
2078         * [*/*]
2079         General explicit casts and more rigid typing to remove warnings.
2081         * [include/winpos.h] [windows/winpos.c]
2082         Changed return type of WINPOS_ChangeActiveWindow to BOOL.
2084         * [include/commdlg.h] [misc/commdlg.c]
2085         Added prototypes for ChooseColor(), CommDlgExtendedError(),
2086         FindText() GetFileTitle(), GetOpenFileName(), GetSaveFileName(),
2087         PrintDlg, and ReplaceText().
2088         Renamed the CommDlgExtendError() function to CommDlgExtendedError().
2089         Made GetFileTitle return a short, as per the API definition.
2091         * [Makefile.in]
2092         Added line to clean and distclean that removes temporaries from
2093         the include directory.
2095 Sat Dec 16 19:39:14 MET 1995  Steffen Moeller <smoe0024@rz.uni-hildesheim.de>
2097         * [controls/edit.c]
2098         Almost rewrote EDIT_GetLineMsg.
2100 Sat Dec 16 13:51:48 MST 1995  Andrew Taylor <andrew@riscan.com>
2102         * [windows/mdi.c]
2103         Fixed MDITile() bug that occurs when 0 windows are present or all
2104         windows are minimized.
2106 Wed Dec 12 23:30:00 1995  Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
2108         * [misc/profile.c]
2109         Try harder to find files, especially in the working directory.
2110         Look in $HOME/.wine too and create it there if it isn't found.
2112 ----------------------------------------------------------------------
2113 Mon Dec 11 19:08:55 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
2115         * [misc/lstr.c]
2116         Replaced wine_strncpy() by a 32-bit version of lstrcpyn(), since
2117         they do the same job.
2119         * [tools/build.c]
2120         Fixed __attribute__((stdcall)) to make it compile with gcc
2121         versions under 2.7. Doesn't mean it will run OK though...
2123 Sat Dec 09 13:22:58 1995  Cameron Heide  <heide@ee.ualberta.ca>
2125         * [include/kernel32.h] [include/winerror.h]
2126         Added file attribute definitions and more error codes.
2128         * [win32/error.c]
2129         Added some rudimentary errno-to-Win32 error conversion
2130         code.
2132         * [win32/file.c]
2133         Added to GetFileInformationByHandle, filled in some known
2134         error codes, and switched to dprintf_win32.
2136         * [win32/time.c]
2137         Added GetLocalTime.
2139 Fri Dec  8 14:37:39 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
2141         * [controls/combo.c]
2142         Converted functions of the type LONG _(HWND,WORD,LONG) to the type
2143         LRESULT _(HWND,WPARAM,LPARAM) where needed.
2145         * [include/libres.h]
2146         Restructured libres prototypes to closer match the windows API.
2148         * [include/windows.h]
2149         Changed several API prototypes' parameter types from 'short' to INT,
2150         which is #defined as short in the emulator, but is a normal int in
2151         WINELIB32.  Also changed SEGPTR from DWORD to void* when WINELIB32.
2152         (This creates a lot of warnings at library-compile time, but less
2153         warnings at app-compile time.  I'll remove the warnings soon.)
2155         * [loader/resource.c]
2156         Fixed parameter mismatch in call to LIBRES_FindResource().  Changed
2157         various implementations of the LIBRES_* API functions.
2159         * [loader/signal.c]
2160         Deleted local 'i' from win_fault(), since it was unused.
2162         * [objects/bitblt.c]
2163         Mirrored changes to include/windows.h mentioned above.
2165         * [toolkit/hello3.c]
2166         Changed LoadMenuIndirect() call to LoadMenu() to test the new
2167         resource registration technique.
2169         * [toolkit/libres.c]
2170         Removed definition of 'struct resource' and fixed bugs in the resource
2171         implementation.  Implemented LIBRES_FindResource.
2173         * [windows/graphics.c]
2174         Mirrored changes to include/windows.h mentioned above.
2176 Thu Dec  7 23:15:56 1995     Martin von Loewis <loewis@informatik.hu-berlin.de>
2178         * [controls/edit.c]
2179         LOCAL_HeapExists: Changed parameter to HANDLE. For WineLib, return true
2181         * [controls/listbox.c]
2182         CreateListBoxStruct: Initialize HeapSel to 0 for WineLib
2184         * [include/listbox.h]
2185         change HeapSel from WORD to HANDLE
2187         * [include/resource.h][rc/winerc.c]
2188         struct ResourceTable: removed
2189         struct resource: moved to header file
2190         autoregister resources if supported by compiler
2192         * [memory/local.h]
2193         LOCAL_GetHeap: expect HANDLE rather than WORD
2194         
2195         * [toolkit/Makefile.in]
2196         Add ALLCFLAGS to make hello3
2198         * [toolkit/heap.c]
2199         LocalFree, HEAP_Free: handle 0 parameter gracefully
2201 Wed Dec 06 15:34:23 1995  Greg Cooper <cooper@ima-inc.com>
2203         * [misc/winsocket.c]
2204         Fixed the msgsnd and msgrcv errors that winsock programs get.
2206 Wed Dec 06 12:47:23 MET 1995 Sven Verdoolaege <skimo@dns.ufsia.ac.be>
2207         
2208         * [if1632/kernel.spec]
2209         Fixed _hread and _hwrite return type
2211         * [if1632/relay32.c] [loader/pe_image.c]
2212         Hacked loading of PE-dll's in
2214         * [win32/advapi.c]
2215         Added stubs for RegCreateKeyEx, RegSetValueEx, RegQueryValueEx
2217         * [win32/file.c]
2218         Added stubs for OpenFileMapping, CreateFileMapping, MapViewOfFileEx
2220         * [win32/process.c]
2221         Added stubs for CreateMutexA, ReleaseMutex, CreateEventA,
2222         WaitForSingleObject, DuplicateHandle, GetCurrentProcess
2223         
2224 Mon Dec 04 13:06:37 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2226         * [include/wine.h] [misc/lstr.c]
2227         Define wine_strncpy(). This function does not pad the buffer with 
2228         zeroes like GNU strncpy(), which might break some Windows programs
2229         that pass bogus size arguments.
2231         * [loader/module.c]: GetModuleFileName(),
2232         [misc/commdlg.c]: GetFileTitle(),
2233         [misc/keyboard.c], [misc/lstr.c]: lstrcpyn(),
2234         [misc/ole2nls.c], [misc/profile.c], [multimedia/mcistring.c],
2235         [multimedia/mmsystem.c], [objects/font.c]:
2236         Use wine_strncpy() where strings are returned to Windows programs.
2237         
2238         * [objects/metafile.c]
2239         PlayMetafile(): Clear the handle table before using it.
2241         * [misc/shell.c] [misc/main.c]
2242         Rename SHELL_RegCheckForRoot() to SHELL_Init() and call it from main().
2243         
2244         * [misc/profile.c]
2245         load(): Need to handle comments.
2246         
2247         * [toolkit/libres.c]
2248         Make it compile.
2249         
2250         * [windows/nonclient.c]
2251         Use MAKE_SEGPTR macro in two places where a user heap block used
2252         to be allocated instead.
2254 Sat Dec 02 16:43:43 1995 Ramon Garcia <ramon@ie3.clubs.etsit.upm.es>
2256         * [windows/winpos.c]
2257         In function SetWindowPos: do not redraw the parent of
2258         a window if the specified window is placed on the top.
2259         This avoids that ShowWindow(hwnd,1) hides hwnd instead
2260         of showing it.
2262 Sat Dec 02 11:00:00 1995 Alex Korobka <alex@phm30.pharm.sunysb.edu>
2264         * [windows/scroll.c]
2265         Now it can scroll children along with the client region of parent 
2266         window. Tried to optimize update region calculation. 
2268         * [windows/mdi.c]
2269         ScrollChildren function, more other features added. Basically
2270         a rewrite.
2272         * [windows/winpos.c] [windows/focus.c]
2273         Reimplemented window activation and focus handling.
2275         * [windows/nonclient.c]
2276         Added new flag WIN_NCACTIVATED.
2278         * [windows/message.c] [loader/task.c]
2279         Small changes (to maintain linked list of message queues).
2281 Wed Nov 29 15:51:48 1995  Daniel Schepler  <daniel@shep13.wustl.edu>
2283         * [include/options.h] [misc/main.c] [windows/defwnd.c]
2284           [windows/event.c] [windows/nonclient.c] [windows/win.c] [Wine.man]
2285         Implemented a -managed option to replace the standard Windows
2286         frame of top-level windows with the window manager's decorations.
2287         If a top-level window makes its own frame, this will still show
2288         up, inside the window manager decorations (I believe ctl3dv2.dll
2289         would do this, although I can't test this).
2291 ----------------------------------------------------------------------
2292 Tue Nov 21 18:49:10 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
2294         * [configure.in] [Makefile] [misc/dos_fs.c]
2295         Got rid of autoconf.h file.
2297         * [debugger/dbg.y]
2298         More logical behavior upon syntax errors.
2300         * [include/hook.h] [windows/hook.c]
2301         Changed hook structure and rewrote most of the hook functions for
2302         better compatibility, based on investigations by Alex Korobka.
2304         * [include/message.h] [windows/message.c]
2305         Added hooks to message queue structure and made the structure
2306         layout Windows-compatible.
2307         Added support for WH_MOUSE, WH_KEYBOARD, WH_HARDWARE and
2308         WH_JOURNALRECORD hooks.
2310         * [misc/main.c]
2311         Added command-line option for changing the language at run-time
2312         (not implemented yet), based on a suggestion from Michael Patra.
2314         * [objects/cursoricon.c]
2315         Fixed silly SEGPTR bug in DumpIcon().
2317 Mon Nov 20 22:22:22 1995  Alex Korobka <alex@phm30.pharm.sunysb.edu>
2319         * [controls/listbox.c] [controls/combo.c] [include/listbox.h]
2320         Partial implementaion of LBS_EXTENDEDSEL style,
2321         yet more updates for drag & drop support. Now works.
2323         * [windows/defwnd.c]
2324         More message handlers.
2326         * [windows/win.c]
2327         DragObject, DragDetect, AnyPopup functions. 
2329         * [controls/listbox.c]
2330         More kludgy fixes (WM_...TOITEM, etc.).
2332         * [objects/cursoricon.c] [objects/oembitmap.c]
2333         IconToCursor skeleton, patch for OBM_LoadCursorIcon to handle new
2334         cursor.
2336         * [include/bitmaps/ocr*]
2337         New OEM cursors.
2339 Mon Nov 20 11:05:20 EST 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
2341         * [toolkit/heap.c]
2342         Swapped flags and size arguments to LocalRealloc as per changes in
2343         memory/local.c by William Magro in previous release.
2345         * [include/wintypes.h]
2346         Reinstated the #define's for 'min' and 'max', since they're part of
2347         the Windows API.  I really don't think it's a wise idea, so I put
2348         a '#ifndef DONT_DEFINE_min_AND_max' around them.  I think the actual
2349         WINE code should never use these (it should use 'MIN' and 'MAX'
2350         instead).
2352         * [loader/*]
2353         Put '#ifndef WINELIB' around many things that WINElib should not need.
2355         * [controls/edit.c]
2356         Took out many '#if defined(WINELIB)' sections with the associated
2357         comment 'temporary fix, until Local memory is correctly implemented in
2358         WINELIB', since the effective translations are now in 
2359         toolkit/miscstubs.c.
2360         Took out the #ifndef's I put in EDIT_ClearText.  Whoever modified this
2361         file fixed (or at least postponed) the bug I had encountered.
2363         * [loader/task.c]
2364         Put an #ifdef in TASK_CreateTask() that hardwires the current drive to
2365         C:  This will probably cause a lot of trouble if this change is
2366         forgotten in the future, but it will let things like the OpenFileName
2367         dialog work for now.
2369         * [toolkit/libres.c] [toolkit/Makefile.in] [toolkit/Makefile]
2370           [include/libres.h]
2371         Made new libres.c file, which will contain functions for supporting
2372         accessing resources by name in WINElib.  'winerc' will need to be
2373         changed.
2375         * [toolkit/heap.c]
2376         Refined memory routines to allow for differences between LocalAlloc
2377         and GlobalAlloc and between LocalSize and GlobalSize.
2379         * [windows/message.c] [include/windows.h]
2380         Defined the GetCurrentTime routine in windows/message.c, and removed
2381         the #define in windows.h.
2383 Mon Nov 20 00:36:42 MET 1995 Sven Verdoolaege <skimo@dns.ufsia.ac.be>
2385         * [*/*]
2386         Added new debugging type DEBUG_WIN32 and DEBUG_ENV.
2388         * [loader/module.c]
2389         Added undocumented GetExpWinVer.
2391         * [tools/build.c]
2392         Previous code didn't pop possibly changed %esi, %edi and %edx
2393         from the stack.
2394         
2395         * [win32/advapi.c]
2396         Added GetUserNameA.
2398         * [win32/code_page.c]
2399         Added stub for MultiByteToWideChar.
2401         * [win32/console.c]
2402         Added SetConsoleCtrlHandler stub.
2404         * [win32/file.c]
2405         Added ReadFile CreateFileA GetFileInformationByHandle stubs.
2406         Added CloseHandle.
2408         * [win32/memory.c]
2409         Changed VirtualAlloc and VirtualFree.
2411         * [win32/process.c]
2412         Added ExitProcess.
2414 Sun Nov 19 17:54:42 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2416         * [include/windows.h]
2417         Fixed a few broken structure definitions.
2419         * [loader/resource.c]
2420         FindResource(): Need to check for '#xxx' strings here.
2422         * [miscemu/int21.c]
2423         FindNext(): Return MS-DOS filenames uppercase.
2425         * [objects/cursoricon.c]
2426         CreateIcon(), CreateCursor(): Added missing element to CURSORICONINFO
2427         initializers.
2428         
2429         * [misc/file.c]
2430         _lopen(): Files opened in OF_WRITE mode are truncated.
2431         OpenFile(): Ignore OF_READ/OF_WRITE/OF_READWRITE when files are
2432         created; use read/write mode.
2433         
2434         * [misc/profile.c]
2435         load(): Rewritten.
2436         
2437         * [misc/commdlg.c]
2438         Fixed bad call to strncpy() that smashed the stack.
2440         * [controls/combo.c] [windows/winpos.c] [memory/selector.c]
2441         Operator precedence fixes. People who use gcc 2.7.1 don't need a
2442         debugger :-)
2443         
2444         * [if1632/gdi.spec] [objects/palette.c]
2445         Add ResizePalette() and AnimatePalette() stubs. They don't do anything,
2446         but sometimes that's good enough.
2448 Fri Nov 17 09:10:35 GMT 1995  John Harvey <john@division.co.uk>
2450         * [include/wine.h] [include/registers.h] [include/winsock.h]
2451         Added definitions for Unixware.
2453         * [loader/signal.c] [misc/comm.c] [misc/winsocket.c]
2454         Misc. fixes for Unixware.
2456         * [loader/task.c]
2457         Made assignemts to context in InitTask for registers use the macros
2458         from registers.h to make them more portable. (Needed for Unixware)
2460         * [tools/build.c]
2461         Fixed register acces routines to work on Unixware. Bit grubby but
2462         it seems to work.
2464         * [controls/edit.c]
2465         EDIT_WM_NCCreate allocates local heap if hasn't been previously
2466         allocated.
2467         
2468         * [miscemu/int21.c]
2469         mkdir now creates directory with permission to access it.
2471         * [misc/dos_fs.c]
2472         mkdir now creates directory with permission to access it.
2473         DOS_opendir now uses linked list of dirents to avoid problems with 
2474         realloc changing address of malloced memory.
2476 Thu Nov 16 12:47:13 1995  Michael Patra  <patra@itp1.Physik.TU-Berlin.DE>
2478         * [controls/menu.c]
2479         MENU_CalcItemSize(): Fixed handling of empty menu items.
2481 Sat Nov 11 21:46:54 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
2483         * [misc/file.c]
2484         In OpenFile, unlink should be done on the unix filename.
2486 Sat Nov 11 16:43:29 1995  Cameron Heide  (heide@ee.ualberta.ca)
2488         * [include/handle32.h]
2489         New header file containing internal Win32 kernel handle
2490         information.
2492         * [win32/file.c]
2493         Added ReadFile, CreateFile, and CloseFileHandle, and did
2494         some reorganizing to match the new handle allocation scheme.
2496         * [win32/init.c]
2497         Added CloseHandle and the creation of standard I/O handles.
2499         * [win32/object_mgt.c]
2500         New module for allocating and freeing Win32 kernel handles.
2502 ----------------------------------------------------------------------
2503 Fri Nov  3 20:08:17 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
2505         * [configure.in]
2506         Attempt to check for -li386 on NetBSD. Please test this.
2508 Mon Oct 30 12:40:32 EST 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
2510         * [*/*]
2511         Eliminated various warnings with either explicit casts or more
2512         accurate variable/parameter declarations (e.g. INT instead of short
2513         or WORD).
2514         Changed macros 'min' and 'max' to 'MIN' and 'MAX', since they're
2515         macros.
2517         * [controls/edit.c] [windows/defdlg.c]
2518         Added '#ifdef SUPERFLUOUS_FUNCTIONS' wrappers around function
2519         definition of EDIT_KeyVScrollDoc, EDIT_TextLineNumber, and
2520         DEFDLG_FindDefButton to avoid warnings.
2522         * [controls/button.c] [controls/scroll.c] [windows/defwnd.c]
2523           [windows/message.c] [windows/nonclient.c]
2524         Converted MAKEPOINT macro call to manual conversion.
2526         * [include/windows.h]
2527         For WINELIB32, structures POINT, SIZE, and RECT have LONG members
2528         instead of INT.  This also invalidates the macro MAKEPOINT(), which
2529         is not supported in Win32.  Also defined the POINTS structure (SHORT
2530         members) and the MAKEPOINTS macro.
2532         * [misc/commdlg.c]
2533         Changed a lot of 'strcpy' calls to 'strncpy' calls.  I'm desperate to
2534         find this memory bug, and this should be done anyway.
2536         * [controls/edit.c]
2537         Well, the alteration mentioned above didn't do it, but #ifdef'ing out
2538         a few lines in EDIT_ClearText did.  This leads to bugs, but for now,
2539         it's better than bizzare memory troubles.
2541         * [toolkit/miscstubs.c]
2542         Removed warning messages in GLOBAL_CreateBlock(), GLOBAL_FreeBlock(),
2543         and RELAY32_GetEntryPoint().  These are the most popular warnings, and
2544         their current implementation seems fine.
2546 Sat Oct 28 09:39:18 1995  Jochen Karrer <cip307@wpax01.Physik.Uni-Wuerzburg.DE>
2548         * [objects/cursoricon.c]
2549         Fix for "broken" X servers that invert masked cursor colors.
2551 Fri Oct 27 19:27:21 1995  Alex Korobka  <alex@phm6.pharm.sunysb.edu>
2553         * [windows/dialog.c] [windows/nonclient.c]
2554         Remove unnecessary items from the system menu.
2556 Thu Oct 26 05:03:03 MET 1995  Philippe De Muyter <phdm@info.ucl.ac.be>
2558         * [objects/color.c] [objects/palette.c]
2559         Make GetNearestColor return a RGB value instead of a pixel value.
2561 Wed Oct 25 23:33:39 1995    Martin von Loewis <loewis@informatik.hu-berlin.de>
2563         * [controls/desktop.c][controls/menu.c][include/menu.h]
2564         Changed WORD parameters to UINT parameters.
2566         * [include/wintypes.h]
2567         Made UINT 32bit for WINELIB.
2569         * [loader/main.c]
2570         Disabled RELAY32_Init and MODULE_Init for WINELIB.
2572         * [misc/main.c]
2573         Assume CPU386 for WINELIB.
2575         * [rc/winerc]
2576         add_popup: set MF_POPUP flag on menu item.
2578         * [toolkit/Makefile.in][toolkit/hello3.c][toolkit/hello3res.c]
2579         Add resource demo hello3 for WINELIB.
2580         New file README.resources.
2582         * [toolkit/miscstubs.c]
2583         Add a case for 17.
2585 Tue Oct 17 15:13:10 IST 1995  Itai Nahshon <nahshon@vnet.ibm.com>
2587         * [loader/module.c]
2588         Do not append .exe if the file name already has an extension.
2590         * [misc/profile.c]
2591         Avoid creating a file with a junk name if a .ini file does not
2592         exist.
2594         * [if1632/gdi.spec] [if1632/user.spec] [if1632/dummy.c]
2595         Added a lot of dummy stubs for Windows Hebrew version.
2597 Tue Oct 17 01:03:24 1995 William Magro <wmagro@tc.cornell.edu>
2599         * [controls/button.c]
2600         Fix for buttons with no label.
2602         * [controls/combo.c][controls/listbox.c]
2603         Fixes for scrollbar positioning.  Now disappears correctly
2604         for short lists.
2606         * [controls/edit.c]
2607         Handle memory allocation differently when building as library.
2609         * [controls/static]
2610         Don't destroy old icon before drawing new icon. (Fixes landscape/
2611         portrait toggle icon in print dialog.)
2613         * [if1632/gdi.spec]
2614         New functions SetMetaFileBits and GetMetaFileBits
2616         * [include/sysmetrics.h] [windows/sysmetrics.c]
2617         Add support for GetSystemMetrics(SM_CMETRICS) == SM_CMETRICS
2619         * [include/windows.h]
2620         META_EXTTEXTOUT, not META_SETTEXTOUT
2621         define GetCurrentTime as GetTickCount (for wine library)
2623         * [loader/main.c]
2624         Don't initialize built-in modules in wine library
2626         * [memory/local.c]
2627         LocalReAlloc was defined incorrectly. Swap flags and size arguments.
2629         * [misc/main.c]
2630         Always report CPUTYPE=4 to wine library.
2632         * [objects/dib.c]
2633         RLE8 images were missing top line when decompressed.
2635         * [objects/metafile.c]
2636         SetMetaFileBits and GetMetaFileBits implemented.  Works when called
2637         from winhelp.  More testing needed.  Various memory leaks plugged.
2638         Various other bug fixes.  New metafile operations added in
2639         PlayMetaFileRecord: CreatePalette, SetTextAlign, SelectPalette,
2640         SetMapperFlags, RealizePalette, ExtTextOut, Escape.  Testing needed.
2642         * [toolkit/heap.c]
2643         LocalUnLock changed to LocalUnlock
2645 Sun Oct 15 21:55:33 1995  Anand Kumria <akumria@ozemail.com.au>
2646         
2647         * [misc/winsock.c] 
2648         Return the correct error number, for host lookup operations.
2649         Also, correct the problem with send_message.
2651 Fri Oct 13 19:04:35 1995  Morten Welinder  <terra@diku.dk>
2653         * [Makefile.in]
2654         Using nm's built-in sorting.
2656         * [*/*.c]
2657         Use xmalloc for malloc and xrealloc for realloc in all ungarded
2658         cases.
2660         * [debugger/dbg.y]
2661         Handle C-like expressions.  Clean-up.
2663         * [debugger/debug.l]
2664         Lots of new tokens for expressions.
2666         * [debugger/info.c]
2667         Implement "list" command for disassembling.
2669         * [misc/ole2nls.c]
2670         Implement more Danish stuff.
2672 Fri Oct  6 10:39:39 1995 Ram'on Garc'ia <ramon@ie3.clubs.etsit.upm.es>
2674         * [loader/module.c]
2675         Updated self-loading modules to support for new 32 bit 
2676         stack frames.
2678 ----------------------------------------------------------------------
2679 Sun Oct  1 15:48:34 1995  Alexandre Julliard  <julliard@sunsite.unc>
2681         * [controls/menu.c]
2682         Fixed GetMenuString() for non-string items.
2684         * [debugger/*.c]
2685         First attempt to check validity of pointers before memory
2686         accesses. For now only segmented pointers are checked.
2688         * [debugger/dbg.y] [memory/ldt.c]
2689         Added possibility to dump only one segment with 'info segment'.
2691         * [include/bitmaps/ocr_*]
2692         Added all OEM cursors as XPM bitmaps.
2694         * [include/cursoricon.h] [objects/cursoricon.c]
2695         Rewrote all cursor and icon management to use the same memory
2696         layout as Windows, and to factor common code between icons and
2697         cursors. Implemented icon directory lookup to find the best
2698         matching icon (i.e. the color one).
2699         Implemented CopyCursor() and DumpIcon().
2701         * [loader/module.c]
2702         For disabled built-in modules, we now try to load the Windows DLL
2703         first, and if this fails we fall back to using the built-in module
2704         anyway.
2706         * [memory/global.c]
2707         Fixed GlobalHandle() to return the correct selector in the high
2708         word even if we are passed a handle in the first place.
2710         * [miscemu/instr.c]
2711         Take into account the size of the operand and of the stack segment
2712         when incrementing the stack pointer.
2713         Avoid referencing FS_reg and GS_reg on *BSD.
2715         * [objects/dib.c]
2716         All DIB functions now accept a BITMAPCOREHEADER format bitmap.
2717         Monochrome DIBs are created as monochrome bitmap iff they are
2718         black and white.
2720         * [objects/oembitmap.c]
2721         Added support for OEM cursors, changed OBM_LoadIcon to use the new
2722         icon memory layout.
2724         * [rc/sysres_Fr.rc]
2725         Added French [Fr] language support.
2727         * [win32/environment.c]
2728         Fixed GetCommandLineA() to use current PDB.
2730         * [windows/event.c] [windows/winpos.c]
2731         Simulate a mouse motion event upon SetWindowPos() to force the
2732         cursor to be set correctly.
2734 Sat Sep 30 17:49:32  Cameron Heide  (heide@ee.ualberta.ca)
2736         * [win32/*]
2737         New Win32 kernel functions: GetACP, GetCPInfo,
2738         GetEnvironmentVariableA, GetFileType, GetLastError, GetOEMCP,
2739         GetStartupInfoA, GetTimeZoneInformation, SetEnvironmentVariable,
2740         SetFilePointer, SetLastError, VirtualAlloc, VirtualFree,
2741         WriteFile.  Completed implementations of GetCommandLineA.
2743         * [include/kernel32.h]
2744         New file.
2746         * [loader/main.c]
2747         Call initialization function for Win32 data (doesn't currently do
2748         anything).
2750         * [misc/main.c]
2751         Implemented GetEnvironmentVariableA, SetEnvironmentVariableA.
2753 Sat Sep 30 00:26:56 1995  Niels de Carpentier  <niels@cindy.et.tudelft.nl>
2755         * [windows/winpos.c][miscemu/emulate.c][loader/module.c]
2756           [misc/commdlg.c]
2757         Misc. bug fixes
2759 Fri Sep 29 16:16:13 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
2761         * [*/*]
2762         For Winelib, explicit casts have been placed where warnings were
2763         usually generated.
2764         printf formats which give the format for printing a handle as
2765         "%04x" or something similar have been changed to use the NPFMT
2766         macro defined in include/wintypes.h.  Some times, explicit casts
2767         were also necessary.
2768         Parameter, field, and variable declarations have been made more
2769         exact, such as converting 'WORD wParam' to 'WPARAM wParam' or
2770         'WORD hFont' to 'HFONT hFont'.
2771         Any call of the form GetWindowWord(hwnd,GWW_HINSTANCE) has been
2772         replaced with a call to WIN_GetWindowInstance(hwnd).
2774         * [controls/combo.c]
2775         Added WINELIB32 support in CLBoxGetCombo().
2777         * [include/dialog.h]
2778         Commented out the '#ifndef WINELIB' around the '#pragma pack(1)'.
2779         winelib needs the packing as well (e.g. when accessing resources
2780         like sysres_DIALOG_SHELL_ABOUT_MSGBOX).
2782         * [include/windows.h]
2783         Got rid of the F[a-k] macros, which were cluttering up the global
2784         namespace.
2786         * [include/windows.h] [windows/defwnd.c]
2787         Added Win32 messages WM_CTLCOLOR*.
2789         * [include/wintypes.h]
2790         Put in preprocessor '#define WINELIB32' if appropriate and changed
2791         the types of some typedefs (WPARAM, HANDLE) based on this.
2792         
2793         * [loader/module.c] [toolkit/miscstubs.c]
2794         Added #ifdef'd portion in LoadModule to handle loading a WINElib
2795         module (already loaded, just init values).  '#ifdef'ed out the
2796         definition for GetWndProcEntry16 and added a new version to
2797         toolkit/miscstubs.c.
2799         * [misc/shell.c]
2800         Adjusted the lengths of AppName and AppMisc from 512,512 to 128,906.
2801         Same amount of total storage, but much more reasonable.  Also, changed
2802         calls to strcpy() in ShellAbout() to calls to strncpy() instead.
2803         This was a difficult bug to track down, but the AppMisc field was
2804         being initialized with the contributers text, which was much larger
2805         than 512 characters.
2807         * [toolkit/atom.c]
2808         New file for atom-handling functions.  Copied from memory/atom.c and
2809         then heavily modified.  Right now, it's just a linked list of atoms.
2810         Consider it as a hash table with just one entry.  It's easily changed
2811         later.
2813         * [toolkit/heap.c]
2814         Commented out the heap functions with a "#ifdef WINELIB16" and put in
2815         a Win32 version (which is basically a modified copy).
2817         * [toolkit/sup.c] [toolkit/miscstubs.c]
2818         Moved the stuff I put in toolkit/sup.c into toolkit/miscstubs.c and
2819         added quite a few more stubs.
2821         * [toolkit/winmain.c]
2822         Rearranged startup code in _WinMain.  I think this will work.
2824         * [toolkit/Makefile.in]
2825         Added targets for 'hello' and 'hello2' in case anyone cares to try
2826         out the sample programs.
2828 Wed Sep 27 23:13:43 1995  Anand Kumria <akumria@ozemail.com.au>
2829         
2830         * [miscemu/int2f.c] [miscemu/vxd.c] [if1632/winprocs.spec]
2831         First attempt at support for some VxDs. Comm, Shell and Pagefile.
2833 Tue Sep 26 21:34:45 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
2835         * [misc/dos_fs.c]
2836         DOS_SimplifyPath: Also remove "/./" from path. (Happens when
2837         starting applications like 'wine ./excel.exe')
2839 Sat Sep 23 23:32:40 1995  Morten Welinder  <terra@diku.dk>
2841         * [configure.in]
2842         Avoid relative path for wine.ini.
2844         * [rc/sysres_Da.rc]
2845         Support for Danish [Da] language.
2847         * [misc/main.c] [miscemu/cpu.c]
2848         Return the processor we're running on correctly.
2850         * [miscemu/int2f.c]
2851         Minor stuff in int 0x2f, function 0x16.
2853 Sat Sep 23 1995 17:58:04  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
2855         * [misc/shell.c] [misc/main.c]
2856         Implement saving and loading of the registry database (needed for
2857         OLE). Very experimental. Fixed ShellExecute().
2858         
2859         * [miscemu/int21.c]
2860         EEXIST is not a critical error condition for mkdir().
2862 Fri Sep 22 01:33:34 1995  Alex Korobka  <alex@phm6.pharm.sunysb.edu>
2864         * [include/shell.h] [misc/shell.c]
2865         Implemented 4 drag/drop functions with documented functionality.
2867         * [multimedia/time.c]
2868         "Fixed" MMSysTimeCallback kludge so Excel5 loads up without crashing.
2870         * [*/*] 
2871         Added new files, more message definitions, structures, debug info,
2872         etc.  Rewrote message logging functions to produce output similar
2873         to WinSight.  Check out -debugmsg +message option.
2875         * [misc/file.c]
2876         Fixed GetDriveType return value.  
2878         * [windows/message.c] 
2879         Hooks are invoked in normal order.
2881         * [miscemu/*]
2882         Added some functions and interrupts.
2884         * [misc/shell.c]
2885         Implemented Drag... functions.
2887 Thu Sep 21 23:50:12 1995  Jukka Iivonen <iivonen@cc.helsinki.fi>
2889         * [rc/sysres_Fi.rc] [rc/sysres.rc]
2890         First attempt at Finnish [Fi] language support.
2892 ----------------------------------------------------------------------------
2893 Sun Sep 17 16:47:49 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
2895         * [configure.in] [*/Makefile.in] [Make.rules.in]
2896         Cleaned up makefiles, added configuration option for Winelib,
2897         grouped common make rules in Make.rules.in.
2899         * [Configure]
2900         Renamed to 'Configure.old'; please use 'configure' instead.
2902         * [controls/menu.c]
2903         Fixed DestroyMenu() to avoid deleting the same menu twice.
2904         More fixes to WM_MENUSELECT, and added WM_INITMENU.
2906         * [if1632/relay.c]
2907         Fixed wrong register values displayed by RELAY_DebugCall32().
2909         * [memory/local.c]
2910         Fixed LocalLock() and LocalUnlock() to increment/decrement the
2911         lock count for moveable blocks.
2913         * [misc/commdlg.c] [misc/shell.c] [rc/winerc.c]
2914         Modified the generated C file so that the resource information
2915         (size, etc.) is also exported.
2916         Modified common dialogs to use the new informations.
2918         * [misc/main.c] [ANNOUNCE]
2919         Update the list of contributors. Please let me know if I forgot
2920         someone.
2922         * [rc/sysres.rc] [rc/sysres_En.rc]
2923         Moved English resources to sysres_En.rc.
2924         Changed ids from numeric to symbolic for dialogs.
2926         * [windows/dialog.c]
2927         Modified template parsing to be able to pass segmented pointers to
2928         CreateWindow().
2930         * [windows/win.c]
2931         CreateWindow() now takes segmented pointers for class and window
2932         names.
2933         Maxmimize or minimize the window upon creation if the WS_MAXIMIZE
2934         or WS_MINIMIZE bits are set.
2936 Thu Sep 14 17:19:57 1995  Paul Wilhelm  <paul@paul.accessone.com>
2938         * [controls/scroll.c]
2939         Fixed scroll-bar bugs for non-client windows.
2941 Thu Sep 14 14:04:14 MET DST 1995 Jochen Hoenicke <Jochen.Hoenicke@arbi.Informatik.Uni-Oldenburg.de>
2943         * [include/cursor.h] [windows/cursor.c]
2944         Cursor is not mirrored any more and the hotspot is set right.
2946 Wed Sep 13 14:22:31 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
2948         * [ole.h]
2949         Misc small fixes.
2951 Mon Sep  4 00:01:23 1995  Jon Tombs <jon@gte.esi.us.es>
2953         * [rc/sysres_Es.rc]
2954         First attempt at Spanish [Es] language support.
2956 Sun Sep  3 13:22:33 1995     Martin von Loewis <loewis@informatik.hu-berlin.de>
2958         * [include/alias.h][windows/alias.c][include/relay32.h]
2959         New files
2961         * [controls/widgets.c]
2962         WIDGETS_Init: register alias window procedures
2964         * [if1632/callback.c]
2965         CallWndProc: Call alias functions if necessary
2967         * [if1632/gdi32.spec]
2968         GetStockObject, TextOutA: new relays
2970         * [misc/user32.c][if1632/user32.spec][misc/Makefile.in][misc/Imakefile]
2971         user32.c: new file
2972         BeginPaint,CreateWindowExA,DefWindowProcA,DispatchMessage,EndPaint,
2973         GetMessageA,RegisterClassA,ShowWindow,UpdateWindow: new relays
2975         * [if1632/winprocs32.spec][loader/pe_image.c][loader/module.c]
2976         PE_Win32CallToStart: new function
2977         MODULE_CreateInstance: removed static attribute
2978         LoadModule: Try loading PE image on error 21
2979         PE_LoadModule: new function
2980         PE_LoadImage: initialize pe_data with 0
2981         
2982         * [include/dlls.h][include/peexe.h]
2983         moved pe_data and w_files to peexe.h
2984         
2985         * [misc/shell.c]
2986         ShellAbout: Register AboutWndProc aliases
2988         * [miscemu/int21.c]
2989         handle 0x440A and 0xDC
2991         * [miscemu/int2f.c]
2992         handle 0x84
2994         * [objects/dib.c]
2995         CreateDIBitmap: complain if BITMAPINFOHEADER is of wrong size
2997         * [tools/build.c]
2998         include windows.h and relay32.h into generated Win32 relays,
2999         don't declare the implementation as int (*)();
3000         limit in WIN32_builtin was off by one
3002         * [windows/caret.c]
3003         CARET_Initialize: new function, call on strategic places
3005         * [windows/messagebox.c]
3006         MessageBox: register message box proc aliases
3008         * [if1632/advapi32.spec][if1632/comdlg32.spec]
3009         New files
3011         * [if1632/Makefile.in][if1632/Imakefile][if1632/relay32.c]
3012         added new spec files
3013         RELAY32_GetBuiltinDLL: perform lookup case insensitive
3014         RELAY32_GetEntryPoint: start name search at 0
3016         * [if1632/user.spec][if1632/kernel.spec][if1632/gdi.spec]
3017         Added stubs for new Win95 API
3019 Sat Sep 2 1995  Martin Roy
3021         * [misc/commdlg.c]
3022         In WM_INITDIALOG, current filter must reflect lpofn->nFilterIndex.
3023         When process IDOK button in FILEDLG_WMCommand(),
3024         lpofn->nFilterIndex should be updated to current selection.
3026 Thu Aug 31 15:00:00 1995 Ram'on Garc'ia <ramon@ie3.clubs.etsit.upm.es>
3028         * [loader/module.c] [loader/ne_image.c]
3029         Added support of self-loading modules.
3031 ---------------------------------------------------------------------
3032 Thu Aug 31 17:19:57 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3034         * [Configure]
3035         Added compile-time option for IPC.
3037         * [configure.in]
3038         Added command-line options for language, IPC and malloc
3039         debugging.
3041         * [controls/menu.c]
3042         WM_MENUSELECT was sometimes sent to the wrong window.
3044         * [debugger/break.c]
3045         For the 'next' command, only step over instruction that require
3046         it. This allows 'next' to do the right thing with jmp and ret
3047         instructions.
3049         * [ipc/*.c] [memory/atom.c] [memory/global.c]
3050         IPC can now be configured out at compile-time.
3052         * [loader/task.c]
3053         Bug fix in TASK_Reschedule() that could cause a task to be deleted
3054         twice.
3056         * [miscemu/dosmem.c] (New file)
3057         Partial emulation of the BIOS data segment.
3059         * [miscemu/instr.c]
3060         Trap attempts to access selector 0x40 and remap the access to
3061         segment __0040H.
3063         * [tools/build.c]
3064         Fixed bug in CallTo32_LargeStack() that caused problems when
3065         compiling Wine with the -fomit-frame-pointer option.
3067         * [windows/message.c]
3068         Fixed bug in hardware event handling that could cause some events
3069         to get ignored.
3071 Sat Aug 26 13:12:59 IST 1995 Michael Veksler <mveksler@vnet.ibm.com>
3073         * [ipc/README] [ipc/dde.tex]
3074         LaTeX documentation for the ipc and DDE stuff.
3076 Wed Aug 23 22:01:23 GMT 1995 Michael Veksler <mveksler@vnet.ibm.com>
3078         * [ipc/Imakefile] [ipc/wine_test_stub.c]
3079         Fixed IPC testing. Now it can be compiled with "make tests"
3081 Wed Aug 23 21:04:14 1995  Fons Botman  <botman@wab-tis.rabobank.nl>
3083         * [if1632/kernel.spec] [include/windows.h] [misc/main.c]
3084         Added GetWinDebugInfo/SetWinDebugInfo stub for player.exe
3086 Sun Aug  20 13:49:42 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
3088         * [miscemu/int21.c]
3089         Misc fix to int21,ah=40 (write) to match _lwrite().
3090         AX=0x440A (check if handle is remote) added.
3092         * [multimedia/mmsystem.c]
3093         Moved mciSendString to mcistring.c.
3095         * [multimedia/mcistring.c]
3096         New file, string interface for MCI (not complete, not thoroughly
3097         tested).
3099         * [multimedia/audio.c]
3100         IOCTL prints errors; one paranoid check disabled.
3102         * [misc/file.c]
3103         Misc operator precedence fixes.
3105         * [if1632/gdi.spec] [objects/bitblt.c]
3106         Stub for FastWindowFrame (parameters not correct).
3108 Sat Aug 19 01:31:23 1995  Graham Menhennitt <gfm@werple.mira.net.au>
3110         * [loader/ne_image.c]
3111         Preliminary support for iterated segments.
3113 Sat Aug 19 00:43:04 1995  Andrew Taylor  (andrew@riscan.com)
3115         * [windows/mapping.c]
3116         In function MAPPING_FixIsotropic(), VportExt[XY] is multiplied by
3117         the absolute value of (ydim / xdim) or (xdim / ydim).
3119 Thu Aug 15 23:00:16  Gregory Trubetskoy  <grisha@mira.com>
3121         * [objects/oembitmap.c]
3122         Added some includes for Windows 95.
3124         * [include/sysmetrics.h]
3125         Added some sysmetrics for Windows 95.
3127         * [include/bitmaps/*95]
3128         New files: obm_close_95, obm_closed_95, obm_reduce_95, obm_reduced_95
3129         obm_zoom_95, obm_zoomd_95 - these are some pixmaps for Windows 95.
3131 Thu Aug 10 12:00:00 1995  Jan Willamowius  (jan@janhh.shnet.org)
3133         * [misc/shell.c] [rc/sysres*.rc]
3134         The caption of the ShellAbout dialog box is language specific and
3135         should be defined in the resources.
3137 ----------------------------------------------------------------------
3138 Thu Aug 17 19:30:14 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3140         * [*/Makefile.in]
3141         Removed winelibclean target, as it doesn't work anyway.
3143         * [controls/button.c]
3144         Avoid drawing the focus rectangle outside of the button.
3146         * [controls/widgets.c]
3147         Fixed bug with the size of the reserved bytes for the Edit
3148         control (caused Eudora to crash).
3150         * [debugger/*] [include/debugger.h]
3151         Unified debugger address handling. Segmented and linear addresses
3152         are no grouped in a single type DBG_ADDR.
3153         All commands now accept seg:off addresses.
3154         Module entry points are now loaded upon first entry to the
3155         debugger, so that entry points of the loaded executable also
3156         appear in the symbol table.
3158         * [include/registers.h] [miscemu/*.c]
3159         Register macros are now of the form 'AX_reg(context)' instead of 'AX'.
3160         This makes code less readable, but will prevent a lot of name
3161         clashes with other definitions. It also avoids a hidden reference
3162         to the 'context' variable.
3164         * [ipc/dde_atom.c] [misc/atom.c]
3165         All *AddAtom and *FindAtom functions now take a SEGPTR parameter,
3166         to allow supporting integer atoms.
3167         Moved atom.c to memory/ directory.
3169         * [loader/task.c]
3170         Fixed environment allocation to compute the size dynamically.
3171         Added 'windir' environment variable.
3172         Fixed GetDOSEnvironment() to return the current task environment.
3174         * [windows/message.c]
3175         Fixed bug in MSG_GetWindowForEvent().
3177 Wed Aug  9 11:40:43 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
3179         * [include/ole.h]
3180         Added a lot of structures  from my Borland Manual. Neither complete,
3181         nor 100% right (check please)
3182         
3183         * [misc/shell.c]
3184         Fixed some of the Reg* functions.
3185         Enhanced ShellExecute.
3186         Please test: wine "regedit.exe /v" mplayer.exe soundrec.exe
3187         Do YOU know the format of \WINDOWS\REG.DAT? Mail me please :)
3189         * [misc/dos_fs.c]
3190         Make umsdos mounted windows dirs work again.
3192         * [miscemu/emulate.c]
3193         Added some comments, preimplementation of subfunction 7.
3195         * [multimedia/mmsystem.c]
3196         Implemented mciSendString. not complete, not clean, not
3197         necessarily working (only checked with a program which uses
3198         'cdaudio' (one working program is cool.exe, a shareware waveditor
3199         with cdaudio play facilities.)
3201         * [multimedia/mcicda.c]
3202         Segptr fixes in DriverProc
3203         Default cdrom drive in Linux is /dev/cdrom ... usually a symbolic
3204         link to your real cdrom device.
3206 Tue Aug  8 19:41:50 CDT 1995 Daniel Schepler <dks2@cec.wustl.edu>
3208         * [loader/resource.c]
3209         Don't crash in a LoadString to NULL
3211         * [loader/resource.c]
3212         Fixed accelerators to work with modifiers.  (ALT-x modifiers still
3213         won't work unless the ALT keypress exited the menu.)
3215         * [misc/file.c]
3216         Expand a file to the current offset with an _lwrite of size zero.
3218         * [misc/file.c]
3219         Set a newly created file to read-write instead of write-only.
3220         
3221 Sun Aug  6 20:28:35 1995  Anand Kumria <akumria@ozemail.com.au>
3223         * [misc/main.c] [include/msdos.h]
3224         Fixed to return DOS version 6.22, and the correct byte order
3225         for Windows programs.
3227 Wed Aug  2 12:36:33 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3229         * [include/options.h] [memory/global.c] [misc/main.c]
3230         Make the new IPC run-time selectible, disabling it by default.
3231         (I think it's only useful for libwine, anyway.)
3233         * [loader/task.c] [memory/selector.c]
3234         In FreeSelector(), walk up the stack and fix the frames.
3236         * [objects/dib.c]
3237         Missing break statement in DIB_SetImageBits_RLE8().
3238         In GetDIBits(), set the compression flag in the bitmap info to zero.
3240         * [windows/dialog.c]
3241         GetNextDlgGroupItem() needs to treat the first child as if it had
3242         an implicit WS_GROUP bit set.
3244 Mon Jul 31 15:44:47 EDT 1995 Louis-D. Dubeau <ldd@step.polymtl.ca>
3246         * [misc/dos_fs.c]
3247         Quick'n dirty fix for the initialisation of the Z: information
3248         structure.
3250 ----------------------------------------------------------------------
3251 Sat Jul 22 22:39:09 IDT 1995 Michael Veksler <e1678223@tochnapc2.technion.ac.il>
3253         * [ipc/*]
3254         New directory. This directory contains the new inter-wine
3255         communications support. It enables DDE protocols between two wine
3256         instances.  Currently it is limited to DDE, but can be enhanced to
3257         support OLE between 2 different wine instances.  This is very
3258         important for libwine.a DDE/OLE support.
3260         * [tools/ipcl]
3261         A script to delete garbage IPC handles (shared memory, semaphores
3262         and message queues).  The current inter-wine communication is not
3263         perfect, and sometimes leaves garbage behind.
3265         * [if1632/relay.c] [include/atom.h] [include/global.h]
3266         [loader/selector.c] [loader/task.c] [loader/module.c]
3267         [loader/signal.c] [memory/global.c] [misc/atom.c]
3268         [windows/class.c] [windows/message.c] [windows/win.c]
3269         [Imakefile]
3270         Hooks for inter-wine DDE support, current Global.*Atom functions
3271         renamed to Local.*Atom since Global.*Atom are used for Inter-Wine
3272         DDE communication. (The first call to these functions sets up the
3273         IPC structures - which otherwise cause unneeded overhead.
3275 Mon Jul 17 19:55:21 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3277         * [controls/menu.c]
3278         Don't crash if a NULL string is passed to menu functions.
3280         * [memory/selector.c]
3281         We now use a bit in ldt_flags_copy to indicate free LDT entries.
3282         Fixed a bug in SELECTOR_ReallocBlock that could cause it to
3283         overwrite valid LDT entries when growing a block.
3285         * [miscemu/instr.c]
3286         Emulate int xx instruction by storing the interrupt vector in
3287         CS:IP and returning directly. This allows a program to install an
3288         interrupt vector.
3290         * [windows/win.c]
3291         Added function WIN_GetTopParent to get the top-level parent of a
3292         window.
3294 Sun Jul  16 18:17:17 1995  Gregory Trubetskoy <grisha@mira.com>
3296         * [loader/resource.c]
3297         Added LoadIconHandler. It doesn't do anything yet, but now you
3298         can use borland help files with winhelp.exe.
3300 Sun Jul 16 11:58:45 1995 Anand Kumria <akumria@ozemail.com.au>
3302         * [misc/main.c]
3303         Fixed to return 386 Enhanced mode correctly. Also return the same
3304         type of CPU, for both Enhanced and Standard mode, namely a 386.
3306 Sun Jul 16 00:02:04 1995    Martin von Loewis <loewis@informatik.hu-berlin.de>
3308         * [Configure] [include/options.h] [include/wineopts.h]
3309           [misc/main.c][misc/spy.c]
3310           Removed support of spy file. Redirected spy messages to stddeb.
3311           Removed -spy option. Added -debugmsg +spy option.
3313         * [debugger/dbg.y][debugger/debug.l]
3314         Enabled segmented addresses (seg:offs) for break and x commands.
3316         * [if1632/gdi.spec] [objects/region.c] [windows/graphics.c]
3317           [include/region.h]
3318         FrameRgn, REGION_FrameRgn: New functions
3320         * [if1632/kernel.spec]
3321         IsWinOldApTask: Return false
3323         * [if1632/mouse.spec]
3324         CplApplet: Removed
3326         * [if1632/user.spec] [windows/win.c]
3327         ShowOwnedPopups: New function
3329         * [if1632/winsock.spec] [misc/winsocket.c]
3330         inet_addr, select: New prototypes in relay code
3331         Fixed memory layout for netdb functions (getXbyY).
3332         WINSOCK_ioctlsocket: Translated FIONREAD, FIONBIO, and FIOASYNC
3334         * [objects/clipping.c]
3335         RectVisible: Fixed call to LPToDP
3337         * [rc/winerc.c]
3338         main: Removed extra argument to getopt for Linux.
3340 Tue Jul 11 00:14:41 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3342         * [controls/listbox.c]
3343         Yet another fix for ListBoxDirectory().
3344         
3345         * [loader/module.c] [if1632/kernel.spec]
3346         Make GetModuleHandle() accept instance handles as parameter.
3348         * [if1632/relay.c] [loader/task.c]
3349         Put a magic cookie at the bottom of the 32 bit stack, and check on
3350         each return from a 32 bit function whether it's still there. Complain
3351         if it's not.
3353         * [if1632/user.spec]
3354         Wrong entry for CloseDriver().
3356         * [misc/dos_fs.c] [loader/task.c] [include/dos_fs.h] [misc/file.c]
3357         [miscemu/int21.c]
3358         Large parts of dos_fs.c simplified. Changed it to use one
3359         current drive/directory per task, which is set to the module path on
3360         task creation.
3361         Prevent CorelPaint from closing stdin.
3362         open() with O_CREAT set must be passed three parameters.
3363         DOS FindFirst()/FindNext() could crash when FA_LABEL was set. Fixed,
3364         it's in DOS_readdir() now.
3366         * [misc/profile.c]
3367         Some badly written software (Lotus Freelance Graphics) passes a bogus
3368         size parameter that caused Wine to write off the end of a segment.
3369         Fixed. (It's probably too paranoid now.)
3370         
3371         * [multimedia/mmsystem.c] [multimedia/time.c] [multimedia/joystick.c]
3372         [multimedia/Imakefile] [if1632/winprocs.spec]
3373         16 bit entry point for MMSysTimeCallback.
3374         Split off time.c and joystick.c from mmsystem.c.
3375         
3376         * [objects/dib.c]
3377         GetDIBits(): call XGetImage() via CallTo32_LargeStack.
3379         * [windows/cursor.c]
3380         DestroyCursor(): do nothing for builtin cursors.
3381         
3382         * [windows/mdi.c]
3383         Half of WM_MDISETMENU implemented.
3384         
3385         * [windows/win.c]
3386         EnumWindows() and EnumTaskWindows() never enumerated any windows.
3387         Fixed.
3389         * [windows/*.c]
3390         Fixed GetParent() to return correct values for owned windows.
3392         * [windows/message.c]
3393         Don't try to activate disabled top-level windows.
3395         * [windows/nonclient.c]
3396         Work around a bug in gcc-2.7.0.
3397         
3398         * [tools/build.c] [include/stackframe.h] [memory/global.c] 
3399         [loader/task.c] [memory/selector.c]
3400         Some Visual Basic programs (and possibly others, too) expect ES to be 
3401         preserved by a call to an API function, so we have to save it.
3402         In GlobalFree() and FreeSelector(), we must clear CURRENT_STACK16->es 
3403         to prevent segfaults if ES contained the selector to be freed.
3405 Sun Jul  9 20:21:20 1995  Jon Tombs  <jon@gtex02.us.es>
3407         * [*/*]
3408         Added missing prototypes to header files and relevant includes
3409         to reduce compile time warnings.
3411 Sun Jul  9 18:32:56 1995  Michael Patra  <micky@marie.physik.tu-berlin.de>
3413         * [configure.in] [include/config.h] [*/Makefile.in]
3414         New configuration scheme based on autoconf.
3416 Sat Jul  8 14:12:45 1995  Morten Welinder  <terra+@cs.cmu.edu>
3418         * [miscemu/ioports.c]
3419         Revamp to have only one in- and one out- variant, both really
3420         implemented.
3422         * [miscemu/instr.c]
3423         INSTR_EmulateInstruction: Use new ioport interface.  Implement
3424         string io.  Correct instruction pointer for 32-bit code.
3426         * [include/miscemu.h]
3427         Update port function prototypes.
3429         * [include/registers.h]
3430         Defined FS and GS.
3432 Sat Jul  8 13:38:54 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
3434         * [misc/dos_fs.c]
3435         ChopOffSlash(): A path consisting off a single slash is left
3436         intact, and multiple slashes are all removed.
3438 ----------------------------------------------------------------------
3439 Wed Jul  5 19:06:35 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3441         * [controls/scroll.c]
3442         Fixed drawing bug that caused part of a non-client scroll bar
3443         to be painted even when the scroll-bar was hidden.
3445         * [debugger/break.c] [debugger/dbg.y]
3446         Rewrote breakpoint handling to work in 16-bit mode.
3447         Implemented single-stepping ('step' and 'next' instructions).
3449         * [debugger/debug.l]
3450         Format specifier is now a separate token.
3451         Entering an empty line at the debugger prompt causes the previous
3452         command to be repeated, like under gdb.
3453         
3454         * [debugger/debug.l] [debugger/registers.c]
3455         Differentiate 16-bit and 32-bit registers without taking current
3456         mode into account ($eax is always 32-bit, $ax always 16-bit).
3458         * [debugger/stack.c]
3459         Fixed stack information routines to differentiate between 16-bit
3460         and 32-bit stacks.
3462         * [loader/task.c]
3463         Option -debug now sets a breakpoint at the first instruction of
3464         every loaded task.
3466         * [miscemu/instr.c]
3467         Added handling of lock, repe and repne prefixes.
3469         * [objects/dib.c]
3470         Changed StretchDIBits() to do the correct thing, even if it's still
3471         not really optimal.
3473         * [windows/graphics.c]
3474         Fixes in RoundRect(), thanks to Babak Masalehdan.
3476         * [windows/message.c]
3477         Tried to fix mouse event handling with respect to disabled
3478         windows.
3480         * [windows/painting.c]
3481         Clear WIN_NEEDS_NCPAINT flag before sending WM_NCPAINT to avoid
3482         infinite loops.
3484         * [windows/win.c]
3485         Fixed IsWindowVisible() to return FALSE when one of the parent
3486         windows is hidden.
3488 Sat Jul  1 22:08:21 1995   Martin von Loewis <loewis@informatik.hu-berlin.de>
3490         * [if1632/compobj.spec][misc/compobj.c]
3491         CoGetMalloc: New function
3492         Added relay entries for COMPOBJ ordinals above 100
3493         CoInitialize: Changed parameter to DWORD
3495         * [if1632/ole2.spec]
3496         Exported implementation of OleBuildVersion
3498         * [if1632/ole2disp.spec][misc/ole2disp.c][misc/Imakefile]
3499         ole2disp.c: New file
3500         SysAllocString, SysReallocString, SysAllocStringLen,
3501         SysReAllocStringLen, SysFreeString, SysStringLen: new functions
3503         * [if1632/ole2nls.spec][include/winnls.h][misc/ole2nls.c]
3504         CompareStringA: New function
3506 Thu Jun 29 19:42:02 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
3507         * [objects/font.c] [if1632/gdi.spec]
3508         New stubs for CreateScalableFontResource, GetGlyphOutline.
3510 Thu Jun 29 13:47:08 GMT 1995  Göran Thyni  (goran@norrsken.bildbasen.se)
3512         * [misc/commdlg.c]
3513         Extensive changes and bug fixes to FileDialog handling,
3514         behaves more like native Windows.
3516 Wed Jun 28 13:04:44 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3518         * [controls/listbox.c] [controls/combo.c]
3519         Some minor optimizations.
3520         
3521         * [memory/local.c]
3522         LOCAL_FindFreeBlock(): Never use the last one.
3523         
3524         * [memory/global.c]
3525         GlobalReAlloc(): GMEM_MODIFY must not be ignored when size==0.
3526         
3527         * [misc/file.c]
3528         read() returns an error when length==0. This is not what Windows
3529         programs expect, so pay attention to this in _lread(). Changed this
3530         in _lwrite(), _hread(), _hwrite(), too.
3532         * [loader/resource.c]
3533         LoadIcon(): Ignore bih->biSizeImage, some icons have wrong values in
3534         there.
3535         
3536         * [if1632/shell.spec] [misc/shell.c]
3537         Wrong spec file entries caused havoc: HKEY has 32 bit, not 16.
3538         Accept some more combinations of parameters in the Reg..() functions.
3539         
3540         * [if1632/toolhelp.spec]
3541         Make InterruptRegister() and InterruptUnregister() return false.
3543         * [windows/hook.c]
3544         CallNextHookEx() used to crash when called with a null hhook. Fixed.
3546 Wed Jun 28 10:14:34 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
3548         * [include/neexe.h][loader/ne_image.c]
3549         NE_LoadSegment: Detect iterated segments
3551         * [misc/ole2nls.c]
3552         LOCALE_SLONGDATE: fixed typo
3554         * [miscemu/int5c.c]
3555         Reordered include files to avoid conflicts with Linux libc.5.1
3557         * [rc/winerc.c]
3558         Added -b option to process binary resource files into C arrays
3560         * [include/callback.h]
3561         CallWndProc: Added dummy ds parameter for libwine
3563         * [include/gdi.h][include/user.h]
3564         USER_HEAP_ALLOC, GDI_HEAP_ALLOC: dropped flags parameter
3566         * [include/ldt.h][include/stackframe.h]
3567         defined segment conversion macros for libwine
3569         * [misc/atom.c]
3570         Defined USER_HeapSel for libwine
3572         * [misc/main.c]
3573         Disable -dll option for libwine
3575         * [misc/user.c]
3576         removed GetFreeSystemResources, SystemHeapInfo from libwine for now
3578         * [toolkit/heap.c]
3579         fixed LocalLock prototype
3581         * [toolkit/sup.c]
3582         sync'ed load_mz_header, load_ne_header with structures
3584         * [toolkit/winmain.c]
3585         Disabled resource DLLs for libwine for now
3587 Mon Jun 26 19:30:24 1995  Hans de Graaff  (graaff@twi72.twi.tudelft.nl)
3589         * [misc/main.c]
3590         Fixed -enhanced option to report a 386 CPU instead of a 286.
3592 Fri Jun 23 23:18:25 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
3594         * [misc/dos_fs.c]
3595         Remove maximum open dosdirent limit (fixing the winfile.exe
3596         problem) by using telldir()/seekdir().
3597         
3598 Fri Jun 23 13:42:25 1995  Hans de Graaff  (graaff@twi72.twi.tudelft.nl)
3600         * [misc/profile.c]
3601         Fixed problem parsing empty lines within sections in .ini files.
3603 ----------------------------------------------------------------------
3604 Mon Jun 19 20:29:50 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
3606         * [debugger/*.c]
3607         Modified debugger to use segmented pointers everywhere.
3609         * [if1632/shell.spec] [if1632/sound.spec] [if1632/user.spec]
3610         Declared all functions that return only 16-bit as 'pascal16'.
3612         * [include/ldt.h] [memory/ldt.c]
3613         Export LDT_EntryToBytes (new) and LDT_BytesToEntry for DPMI.
3614         Maintain a copy of the selector flags, removing the need to make a
3615         system call to retrieve an LDT entry.
3617         * [loader/module.c]
3618         Fixed bug with module file handle cache.
3620         * [loader/ne_resource.c]
3621         Fixed file name bug in NE_AccessResource().
3623         * [loader/resource.c]
3624         Fixed bug in LoadIcon() that caused wrong colors to be used for
3625         the icon mask.
3627         * [loader/signal.c]
3628         Moved instruction emulation to miscemu/instr.c.
3630         * [misc/dos_fs.c] [miscemu/int21.c]
3631         Lots of small fixes, thanks to Morten Welinder.
3633         * [miscemu/dpmi.c]
3634         More complete DPMI emulation.
3636         * [miscemu/instr.c]
3637         Added support for prefixes in instructions to emulate.
3639         * [miscemu/int2f.c]
3640         Use register macros instead of destroying the high part of 32-bit
3641         registers.
3643         * [objects/dc.c]
3644         Fixed bug in GetDCState() that failed to clear the new DC.
3646         * [rc/sysres.rc]
3647         Removed dialogs 11 and 12 that were never used.
3649         * [tools/build.c]
3650         'pascal16' generated functions did not save %dx.
3651         Removed use of %fs to access the stack.
3652         %ds is no longer initialized before calling a 16-bit routine.
3654         * [windows/defwnd.c]
3655         Accept a NULL pointer as window title.
3657         * [windows/mdi.c]
3658         MDICascade: skip iconic windows.
3659         Implemented CalcChildScroll().
3660         
3661         * [windows/utility.c]
3662         Fixed MulDiv() for illegal values.
3664         * [windows/win.c]
3665         Fixed X error in CreateWindowEx() when WM_NCCALCSIZE returned
3666         a zero width or height.
3668 Sun Jun 18 22:22:30 MET DST 1995  Fons Botman  (botman@inter.nl.net)
3670         * [controls/edit.c]
3671         Fixed "uninitalized" message which -Wall couldnt see to be ok
3672         in EDIT_WriteText.
3674         * [include/debug.h]
3675         Added define for extra checks in API definitions during debugging.
3677         * [loader/ne_image.c]
3678         Added newline in NE_FixupPrologs to avoid long lines.
3680         * [misc/dos_fs.c]
3681         Added extra safety check in DOS_ValidDrive.
3683         * [misc/exec.c]
3684         Fixed definition of ExitWindows.
3685         
3686 Sun Jun 18 21:16:08 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3688         * [controls/edit.c]
3689         Some fixes, mostly for memory management, but also for text selection
3690         and tab postitions. General cleanup. Notepad.exe now works.
3692         * [controls/combo.c]
3693         Fix: the hwnd field of the DRAWITEMSTRUCT should always be that of
3694         the combo box, not the ComboLBox that belongs to it.
3696         * [controls/listbox.c]
3697         Handle itemID field correctly throughout.
3699         * [memory/local.c]
3700         Implemented flag LMEM_ZEROINIT.
3701         LocalReAlloc() could trash the heap. Fixed.
3703         * [objects/font.c]
3704         FONT_MatchFont(): don't get confused by negative widths.
3705         Fixed a segfault in EnumFonts().
3707         * [objects/text.c]
3708         DrawText(): DT_CALCRECT implies DT_NOCLIP.
3710         * [objects/dcvalues.c]
3711         MAKELONG was used with bad parameters in DC_GET_X_Y.
3713         * [windows/dialog.c]
3714         Don't show the dialog if WS_VISIBLE isn't set in the template.
3716         * [windows/utility.c]
3717         UTILITY_convertArgs(): Never pass an expression containing ++ into a
3718         macro...
3720         * [windows/win.c]
3721         SetParent() should unlink the window before changing the parent.
3723         * [windows/message.c]
3724         Don't call timer functions via CallWindowProc(), since it checks
3725         whether hwnd==0 and does not call the function in that case.
3727         * [miscemu/instr.c]
3728         Ignore interrupt 0x3D, for VBRUN300.DLL.
3730         * [misc/commdlg.c]
3731         Don't rely on the itemData field of the DRAWITEMSTRUCT to contain a
3732         pointer to the item text.
3734         * [if1632/relay.c]
3735         Disable OLE and DDEML DLLs by default, since they contain nothing but
3736         stubs anyway. SHELL, COMMDLG and WIN87EM are left enabled, although
3737         some programs may work better without them.
3738         
3739         * [multimedia/*.c] [include/multimedia.h] [include/driver.h]
3740         Begun cleaning things up a little. Replaced printfs with dprintf_
3741         macros, made functions static where possible, and some other minor
3742         changes.
3744 Sun Jun 11 23:19:10 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
3746         * [debugger/dbg.y][debugger/dbg.l]
3747         Removed special handling for FILE_IDENTIFER, because it caused
3748         problems with x/<format> statements.
3750         * [debugger/info.c]
3751         Use SC_ESP instead of SC_EIP for stack dump.
3753         * [misc/compobj.c][if1632/compobj.spec]
3754         CoBuildVersion, CoInitialize, CoUninitialize: new functions
3756         * [misc/ole2.c][if1632/ole2.spec][misc/Imakefile][include/ole2.h]
3757         New files ole2.c, ole2.h
3758         OleBuildVersion, OleInitialize, OleUninitialize: new functions
3760         * [if1632/ole2disp.spec]
3761         Added missing ordinals above 109
3763         * [misc/ole2nls.c][if1632/ole2nls.spec][include/winnls.h]
3764         New file winnls.h
3765         GetLocaleInfoA: new function
3767         * [if1632/shell.spec]
3768         Added FindEnvironmentString as stub
3770         * [misc/olecli.c][if1632/olecli.spec]
3771         OleIsDcMeta: New function
3773         * [objects/font][misc/gdi.spec]
3774         GetKerningPairs: new function
3776         * [misc/shell.c]
3777         ShellExecute: Implemented support for starting programs
3779         * [if1632/user.spec]
3780         Inserted missing relay to GetClipCursor
3782 Sun Jun 11 20:34:47 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3783         
3784         * [controls/edit.c]
3785         Fix a problem with the local heap.
3787         * [include/wintypes.h]
3788         Fixed wrong declarations of CATCHBUF and LPCATCHBUF.
3789         
3790         * [include/mdi.h] [windows/mdi.c]
3791         This code still assumed segmented address==linear address. Fixed.
3793         * [include/msdos.h] [misc/dos_fs.c]
3794         The filemask field of the dosdirent structure could be overrun. Fixed.
3795         If you had a file called foobar and a file called foo, trying to 
3796         FindFile(foo) could accidentally find file foobar instead. Fixed.
3797         
3798         * [misc/file.c]
3799         OpenFile(): Always return the full pathname in ofs->szPathName. This 
3800         also fixes GetModuleFilename().
3801         Prevent _lclose() from closing stderr or stdout.
3803         * [misc/profile.c]
3804         Search for .ini files in the path of the current module as well.
3805         (Needed by Lotus Organizer.)
3807         * [loader/task.c] [loader/ne_image.c] [loader/module.c]
3808         [memory/local.c]
3809         Local heaps are now initialized by InitTask() for executables. DLLs
3810         have to call LocalInit() themselves, LocalInit() has to put the
3811         heap at the end of the segment when called with start==0. We no longer
3812         allocate the DGROUP with 64k on startup, but grow the local heap
3813         in LOCAL_GetBlock() when necessary.
3815         * [loader/module.c]
3816         LoadLibrary() should call LoadModule() in all cases, even if the
3817         DLL is already loaded, to ensure that the reference count is correct.
3819         * [loader/ne_image.c]
3820         Some changes to function prolog fixup. Does anyone know exactly how
3821         this is supposed to work? I am only guessing here.
3822         In NE_InitializeDLLs(), initialize the DLLs a module refers to before
3823         the module itself.
3824         
3825         * [loader/task.c]
3826         Initialize instance data at the beginning of the DGROUP in InitTask().
3828         * [memory/local.c]
3829         Some fixes for moveable blocks.
3831         * [memory/selector.c]
3832         All the IsBad*Pointer() functions returned exactly the wrong boolean
3833         value in all cases!
3834         
3835         * [objects/bitblt.c]
3836         Fixed another null pointer dereference in debugging output.
3837         
3838         * [objects/font.c]
3839         Some more recovery possibilities for FONT_MatchFont() if a specified
3840         font does not exist.
3841         
3842         * [windows/win.c]
3843         The dialog code may call CreateWindowEx with an integer in windowName.
3844         This happens for static icon controls that expect a resource ID as
3845         the window name. CreateWindowEx() used to crash. Fixed.
3846         
3847         * [windows/class.c] [windows/win.c]
3848         Window classes are owned by modules, not instances. Changed
3849         RegisterClass(), UnregisterClass(), GetClassInfo() and CreateWindowEx()
3850         accordingly.
3852 Sat Jun 10 16:10:53 1995  Olaf Flebbe <o.flebbe@science-computing.uni-tuebingen.de>
3854         * [miscemu/int21.c]
3855           clock.exe was displaying incorrect year.
3857 Fri Jun 9 20:36:56 1995  Victor Schneider <tailor@crl.com>
3859         * [include/cursor.h] [windows/cursor.c]
3860         Implemented CreateCursorIconIndirect().
3862 ----------------------------------------------------------------------
3863 Tue Jun  6 12:11:41 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
3865         * [controls/menu.c]
3866         Fixed bug with drawing multi-column menus with vertical separator.
3868         * [debugger/debug.l]
3869         Fixed NULL-pointer reference after readline().
3871         * [if1632/winprocs.spec] [miscemu/int21.c] [miscemu/interrupts.c]
3872         Added interrupt vector emulation. Allows to retrieve an interrupt
3873         vector and jump to it without crashing.
3875         * [loader/ldt.c]
3876         Moved ldt.c to memory directory.
3878         * [loader/task.c]
3879         Implemented LockCurrentTask() and GetInstanceData().
3881         * [objects/bitblt.c]
3882         Fixed a bug that caused StretchBlt() to use wrong colors when
3883         stretching a monochrome bitmap to a color display.
3885         * [objects/bitmap.c]
3886         Fixed a segmented pointer bug in CreateBitmapIndirect().
3888         * [tools/build.c]
3889         Added possibility to have arguments for register functions; used
3890         by interrupt vectors to remove the flags from the stack.
3891         Generate a new function CallTo32_LargeStack(), that allows calling
3892         a 32-bit function using the original 32-bit stack, for functions
3893         that need more that 64k of stack.
3895 Tue May 30 10:29:56 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
3897         * [if1632/shell.spec] [misc/shell.c]
3898         DoEnvironmentSubst: fixed prototype
3900         * [if1632/gdi.spec] [objects/palette.c]
3901         SetSystemPaletteUse: new function
3903         * [if1632/kernel.spec] [loader/resource.c]
3904         DirectResAlloc: new function
3906         * [if1632/user.spec] [windows/keyboard.c]
3907         SetKeyboardState: new function
3909 Mon May 29 12:58:28 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3910         
3911         * [tools/build.c]
3912         Prevent interrupts from destroying the args for a 32 bit function
3913         by loading the correct value into %esp directly after %ss.
3915         * [loader/ne_image.c] [loader/module.c]
3916         The new instance must be created earlier in LoadModule(), so that
3917         fixups referencing it will be handled correctly.
3918         Initialize the local heap for a DGROUP in NE_LoadSegment().
3919         
3920         * [objects/dib.c]
3921         Like RLE8 bitmaps, RLE4 bitmaps don't always end with a proper code.
3922         This used to crash Wine. Fixed.
3924         * [objects/text.c]
3925         Fix possible null pointer dereference in debugging output.
3926         
3927         * [misc/commdlg.c]
3928         Handle user input in the edit control better. Some bugs fixed.
3929         
3930         * [memory/local.c]
3931         Started implementing moveable blocks. This is unfinished (!), but
3932         at least it does not seem to break things.
3934 Wed May 24 13:26:36 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3935         
3936         * [loader/module.c]
3937         LoadModule(): DLLs occasionally have a data segment, and they work
3938         much better if it is loaded :-)
3939         LoadLibrary(): pass HMODULE instead of HINSTANCE to NE_InitializeDLLs.
3940         FindModule(): also strip off the last backslash of the pathnames
3941         (Winhelp tried to load C:\WINDOWS\SYSTEM\COMMDLG.DLL).
3942         GetModuleHandle(): just call MODULE_FindModule, it does the same job,
3943         only better.
3944         
3945         * [loader/ne_image.c]
3946         LocalInit() the heap of a DLL in NE_InitDLL. (This is probably
3947         not really correct, it seems that all programs and DLLs try to do
3948         this themselves. But they pass weird parameters.)
3949         NE_InitializeDLLs should also call NE_InitDLL for the passed hModule.
3950         
3951         * [loader/task.c] [misc/user.c]
3952         Finish global initializations in InitTask instead of InitApp, or
3953         all the DLLs will be initialized in InitTask without any available
3954         window classes!
3956 ----------------------------------------------------------------------
3957 Sun May 21 12:30:30 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
3959         * [debugger/hash.c] [debugger/info.c]
3960         Added support for symbolic segmented addresses. Add symbols for all
3961         built-in API entry points.
3963         * [if1632/relay.c] [include/dlls.h]
3964         Removed dll_table structure, as we now use the built-in module
3965         structures.
3967         * [if1632/relay.c] [loader/main.c]
3968         Removed winestat option, as it was no longer very meaningful.
3970         * [include/stackframe.h]
3971         New macro MAKE_SEGPTR that creates a segmented pointer to a local
3972         variable on the 32-bit stack.
3974         * [loader/module.c]
3975         Added support for multiple instances of an application.
3976         Implemented LoadModule() and FreeModule().
3978         * [loader/ne_image.c] [loader/task.c]
3979         Moved initialisation of built-in DLLs to InitTask().
3981         * [memory/global.c]
3982         Implemented discardable blocks.
3984         * [misc/file.c]
3985         Search path of current executable in OpenFile().
3986         Fixed bug with searching in Windows path.
3988         * [misc/lstr.c]
3989         Hard-coded translation tables for Ansi<->Oem.
3991         * [misc/user.c]
3992         Moved some global initializations to InitApp(), because they need
3993         a task context to be performed.
3995         * [objects/dc.c]
3996         Handle R2_BLACK and R2_WHITE specially so that they work correctly
3997         with palette displays.
3999         * [tools/build.c]
4000         Suppressed generation of the C file for DLL specs, because it's no
4001         longer needed. Output all the assembly code directly to stdout.
4002         Some changes to integrate Win32 support from Martin von Loewis. 
4004         * [windows/msgbox.c]
4005         Moved message box code from misc/ to windows/.
4007 Mon May 15 23:40:04 1995  Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
4009         * [misc/audio.c] [misc/mcicda.c] [misc/mcianim.c] [misc/midi.c]
4010           [misc/mmaux.c] [misc/mmsystem.c]
4011         Modify code & use pointers conversion macros.
4012         Make cdaudio & wave devices work again (only using some applets).
4014         * [misc/profile.c]
4015         Change getc() to fgetc() where needed.
4017 Mon May 15 22:10:56 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
4019         * [if1632/Imakefile]
4020         added entries for the new files gdi32.spec, kernel32.spec,
4021         user32.spec, shell32.spec and winprocs32.spec.
4023         * [if1632/commdlg.spec][if1632/kernel.spec][if1632/shell.spec]
4024           [if1632/storage.spec][if1632/system.spec][if1632/user.spec]
4025         ChooseFont, RESERVED5, InternalExtractIcon: Marked as stubs
4026         ExtractAssociatedIcon, DoEnvironmentSubst, DumpIcon:
4027                 stub implementations provided 
4028         marked storage.dll,storege.sys functions as stubs
4030         * [include/pe_image.h]
4031         Added structures WIN32_builtin and  WIN32_function
4033         * [include/peexe.h]
4034         PE_Import_Directory: renamed reserved fields to 
4035                 TimeDate, Forwarder, Thunk_List
4037         * [include/winerror.h]
4038         New file.
4040         * [loader/main.c]
4041         called RELAY32_Init
4043         * [loader/pe_image.c]
4044         xmmap: map BSS anonymous
4045         dump_imports: renamed to fixup_imports, do the fixup of imported
4046                       symbols
4047         PE_LoadImage: pass raw data size to xmmap
4049         * [loader/resource.c]
4050         DumpIcon: new function
4052         * [misc/kernel32.c]
4053         New file.
4055         * [misc/main.c]
4056         make stdout and stderr unbuffered
4058         * [misc/shell.c]
4059         DoEnvironmentSubst: new function
4061         * [objects/font.c]
4062         FONT_MatchFont: try oblique if there is no italic
4064         * [rc/Imakefile][rc/parser.l]
4065         yywrap: new function
4066         Don't link with libfl.a on Linux
4068         * [tools/build.c]
4069         Added keywords stdcall, subsystem, base
4070         GenerateForWin32: new function
4071         BuildSpecFiles: call GenerateForWin32 if subsystem is win32
4073 Mon May 15 10:38:14 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4074         
4075         * [controls/listbox.c] [controls/combo.c] [windows/defwnd.c]
4076         Minor fixes.
4077         
4078         * [misc/message.c] [misc/main.c] [rc/sysres*.rc] [include/texts.h]
4079         Rewrote message box handling.
4080         
4081         * [windows/dialog.c]
4082         Dialogs should be invisible until after WM_INITDIALOG is seent.
4083         Don't switch to invisible dialog items on a TAB keypress.
4084         
4085         * [windows/mdi.c]
4086         Send WM_NCPAINT message in MDIRestoreChild().
4087         
4088         * [windows/painting.c]
4089         Fixed typo (&& -> &).
4090         
4091         * [windows/message.c] [if1632/user.spec]
4092         Implemented PostAppMessage().
4093         
4094         * [windows/event.c]
4095         SetCapture(0) should act like ReleaseCapture().
4097 Tue May  9 11:55:52 1995     Eddie C. Dost             (ecd@dressler.de)
4099         * [Imakefile]
4100         Changed CDEBUGFLAGS for systems running __ELF__ (temporarily)
4101         Added ASFLAGS to exported variables.
4103         * [debugger/readline/Imakefile]
4104         Moved defines for libreadline from DEFINES to EXTRA_DEFINES
4106         * [memory/local.c] [miscemu/int21.c]
4107         Added some more debugging outputs.
4109 Mon May  8 00:55:27 MET DST 1995          Dag Asheim (dash@ifi.uio.no)
4111         * [misc/message.c]
4112         Fixed a "FIXME" concerning norwegian translation.
4114 Sun May  7 23:25:23 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4115         
4116         * [*/*]
4117         Removed warnings in a couple of files and deleted some obsolete code.
4119         * [controls/listbox.c]
4120         Cleanup, speed improvements & lots of bug fixes.
4122         * [controls/combo.c]
4123         Mostly rewritten. This is still very buggy, but not quite as bad as 
4124         before.
4126         * [include/commdlg.h] [misc/commdlg.c]
4127         Removed the need for sysres.dll. Small bug fixes.
4128         
4129         * [objects/oembitmap.c] [include/bitmaps/<many>] [include/windows.h]
4130           [loader/library.c] [loader/main.c] [rc/sysres*.rc]
4131         Removed sysres.dll and replaced the remaining bitmaps/icons with
4132         XPM equivalents.
4134         * [misc/message.c] [windows/nonclient.c] [misc/main.c]
4135           [if1632/winprocs.spec]
4136         "About Wine..." now brings up a standard ShellAbout() window with
4137         the Wine icon and the list of contributors.
4138         
4139         * [misc/shell.c]
4140         Fixed ShellAbout()/AboutDialogProc() to show the right icon.
4142         * [windows/event.c]
4143         Small hack for non-alphanumeric keys: Dont't send the ascii value in
4144         the WM_KEYDOWN message, but some unused code instead. Should be done
4145         properly by sending different codes for each key. The edit control
4146         used to get a VK_DELETE message each time the user typed '.'.
4148         * [windows/class.c]
4149         Removed a check for CS_GLOBALCLASS in CLASS_FindClassByName().
4150         This used to be no problem, but breaks Resource Workshop in 950403.
4151         
4152         * [objects/dib.c]
4153         New diagnostic for a bug I've been encountering. If it shows up,
4154         please report it.
4156 Sun May  7 23:11:18 EDT 1995  William Magro (wmagro@tc.cornell.edu)
4158         * [objects/color.c]
4159         Handle situation when 'dc' exists, but palette mapping
4160         does not.  (Fixes kidpix2 demo.)
4162 Sun May  7 03:32:00 1995  Charles M. Hannum  (mycroft@mit.edu)
4164         * [loader/ldt.c]
4165         LDT_Print: Only show the number of entries that the kernel
4166         returned. Make this work for NetBSD.
4168 Fri May  5 02:53:26 1995  Charles M. Hannum  (mycroft@mit.edu)
4170         * [debugger/dbg.y] [include/wine.h] [loader/signal.c]
4171         Modify cs and ds selector values for NetBSD-current.
4173         * [debugger/debug.l]
4174         $sp, $esp: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
4176         * [debugger/regpos.h]
4177         Modify sigcontext format for NetBSD-current.
4178         SC_ESP: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
4180         * [include/ldt.h]
4181         SELECTOR_TO_ENTRY: Explicitly clear the top half of the selector
4182         value, since only 16 bits of it may have been saved.
4184         * [misc/winsocket.c]
4185         Set structure packing with `#pragma pack' to accomodate
4186         other/older compilers.
4188 Tue May  2 18:15:01 1995 Paal Beyer (beyer@idt.unit.no)
4189         
4190         * [misc/commdlg.c]
4191         Fixed path-names so when changing directory the listboxes
4192         changes too.
4193         
4194         * [debugger/dbg.y debugger/debug.l wine.ini]
4195         Added SymbolTableFile to wine.ini so symbols can be read
4196         without standing in the directory containing wine.sym.
4197         Added the possibility to specify full name of wine.sym from
4198         the debugger prompt.
4200 ----------------------------------------------------------------------
4201 Sat Apr 29 20:42:01 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
4203         * [controls/static.c]
4204         Fixed painting of SS_*FRAME controls.
4206         * [if1632/callback.c]
4207         Pass the window instance as DS to the 16-bit window procedure.
4208         Rewrote Catch() and Throw() to make them work with multiple tasks.
4210         * [loader/main.c]
4211         New function MAIN_Init() to perform initializations before the
4212         first task is started instead of doing them in InitApp().
4213         Temporary hack to command-line parsing to load one program per
4214         command-line argument, to make testing task-switching easier.
4216         * [loader/*.c]
4217         Reimplemented modules to use a Windows-compatible layout and to
4218         allow multiple tasks and multiple module instances. Not really
4219         finished yet.
4221         * [loader/task.c] [misc/exec.c]
4222         Reimplemented tasks to use a common address space, and implemented
4223         preliminary task-switching capabilities.
4225         * [memory/global.c]
4226         Fixed bug in GlobalNext().
4228         * [misc/main.c]
4229         Updated the list of contributors. Let me know if I forgot someone.
4231         * [miscemu/int21.c]
4232         Use one DTA per task instead of a global one.
4234         * [objects/bitblt.c]
4235         Fixed bug in BitBlt() that could cause BadMatch errors.
4237         * [tools/build.c]
4238         Added new function type 'stub', that makes possible to export an
4239         unimplemented function by name as well as by ordinal. This will
4240         avoid loading errors for unimplemented functions.
4241         Generate an in-memory module layout for built-in DLLs so that the
4242         same code can be used for built-in and loaded modules.
4243         Changed relay code to make it unnecessary to save the value of the
4244         BP register.
4246         * [windows/message.c]
4247         Implemented multiple message queues and preliminary task-switching
4248         capabilities. Inter-task SendMessage() calls are not implemented
4249         yet and will probably cause crashes if used.
4251         * [windows/property.c]
4252         Reimplemented properties and allocate them on the USER heap.
4254         * [windows/win.c]
4255         Fixed bug in SetWindowWord().
4256         Reimplemented EnumWindows() and EnumTaskWindows().
4258 Tue Apr 18 09:48:38 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4259         
4260         * [misc/main.c]
4261         GetSystemParametersInfo(): Additional action SPI_GETICONTITLEFONT.
4262         
4263         * [loader/resource.c]
4264         Removed the check for NE_SEGFLAGS_EXECUTEONLY, since it broke
4265         control.exe.
4266         Fixed icon loading.
4267         
4268         * [objects/font.c] [include/windows.h]
4269         Fixed a bug in InitFontsList() and worked on the EnumFonts()
4270         functions to make them comprehensible.
4272         * [controls/button.c]
4273         Fixed my previous patch to handle LBUTTONUP messages.
4275 Fri Apr 14 11:41:28 1995  Cameron Heide  (heide@ee.ualberta.ca)
4277         * [misc/network.c, misc/dos_fs.c]
4278         Implemented WNetGetConnection.  All that is currently
4279         supported are drives, for which the remote name is simply
4280         the redirected UNIX directory name.
4282         * [miscemu/int2?.c]
4283         More drive number validity checking.
4285 Wed Apr 12 11:28:37 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4286         
4287         * [controls/listbox.c]
4288         Oops, my previous change to ListBoxDirectory broke the Borland
4289         file open dialog. Fixed.
4291 Mon Apr 10 23:17:12 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
4293         * [if1632/ole2nls.spec] [misc/ole2nls.c] [misc/Imakefile]
4294         New file ole2nls.c. Added stubs for GetUserDefaultLCID, 
4295         GetSystemDefaultLCID, GetUserDefaultLangID, GetSystemDefaultLangID.
4297 Mon Apr 10 10:05:18 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4298         
4299         * [memory/global.c] [memory/local.c] [include/windows.h]
4300         GlobalReAlloc(): If GMEM_MODIFY is set, don't resize the block.
4301         LocalReAlloc(): Same for LMEM_MODIFY.
4302         
4303         * [controls/listbox.c]
4304         Fixed a bug in ListBoxDirectory that prevented commdlg from working.
4305         Check for errors in some more places.
4307         * [if1632/gdi.spec] [if1632/user.spec]
4308         16 bit callback functions should be passed as segptrs.
4309         
4310         * [include/dlls.h] [loader/ne_image.c] [loader/selector.c]
4311         [loader/library.c]
4312         Prevent a DLL from being initialized twice (Borlands Resource
4313         Workshop used to do this).
4314         Provide an additional flag for each w_file that indicates whether
4315         it's an EXE or a DLL, for combinations like pbrush.exe/.dll.
4316         
4317         * [controls/button.c]
4318         Handle LBUTTONUP messages even if the button no longer has the
4319         capture (for WinHelp).
4320         
4321         * [include/wintypes.h]
4322         FARPROC is now a segptr for the emulator and a function
4323         pointer for the library.
4324         
4325         * [misc/commdlg.c] [misc/commdlg.h]
4326         Cleaned the file dialogs up a little. They now work reasonably well,
4327         although there are still some problems (e.g. files are initially
4328         invisible).
4330         * [windows/class.c] [if1632/user.spec] [include/windows.h]
4331         GetClassInfo() must take a segptr, as it checks whether the
4332         highword is zero.
4333         GetClassName() called the wrong atom function. No surprise it didn't
4334         find anything.
4336         * [misc/lstr.c]
4337         AnsiToOem() and OemToAnsi() didn't terminate the strings. Fixed.
4338         Removed some warnings.
4340         * [if1632/relay.c] [if1632/ddeml.spec] [include/dlls.h]
4341         New spec file for the 3.1 DDEML DDL. 
4343         * [controls/menu.c]
4344         Small fix to ChangeMenu - mask out the obsolete flags
4345         (MF_APPEND == MF_OWNERDRAW, this led to problems). It also had
4346         problems with the MF_BYPOSITION flag.
4348         * [windows/message.c]
4349         SendMessage(): call the WH_CALLWNDPROC hook function. This is rather
4350         ugly, I'm afraid. Windows probably passes a pointer to the 16 bit
4351         stack for speed reasons.
4352         
4353         * [windows/hook.c] [include/windows.h]
4354         Set/HookWindowsHook() shouldn't just call their *Ex counterparts, as
4355         they have slightly different semantics.
4356         MS Hearts now works somewhat, if you disable the new builtin DDEML.
4357         The graphics are completely messed up, though.
4359 ----------------------------------------------------------------------
4360 Sun Apr  2 18:31:12 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
4362         * [Configure] [if1632/Imakefile]
4363         Removed new build and short names options.
4365         * [if1632/*.c] [tools/build.c]
4366         Implemented compiled call-back functions for better performance;
4367         all the relay code is now done in assembly code generated by the
4368         build program.
4369         Relay code is no longer dependent on being loaded below 64K.
4371         * [loader/resource.c]
4372         Fixed memory leak in LoadString(). A fix will also be needed for
4373         other resources.
4375         * [memory/global.c]
4376         Implemented global heap arenas, so we can store informations about
4377         global blocks, like lock counts or owner handle.
4378         Implemented FarGetOwner() and FarSetOwner().
4379         Implemented global heap TOOLHELP functions.
4381         * [memory/selector.c]
4382         Bug fix: it was not possible to re-use a free selector.
4384 Sun Apr 2 01:34:52 1995 Constantine Sapuntzakis  (csapuntz@mit.edu)
4386         *  [controls/listbox.c]
4387         Major work on listbox code
4388          - Many bugs fixed (still many bugs)
4389          - More messages supported
4390          - Code simplified
4392 Fri Mar 31 03:27:16 EST 1995 William Magro (wmagro@tc.cornell.edu)
4394         * [controls/edit.c]
4395         Lots of bug fixes related to diappearing text, lost carets,
4396         highlighting, segmentation faults, occurance of random
4397         characters, insertion of characters over selection, misplaced
4398         caret location, display corruption, end of line behavior, etc.
4400         * [controls/widgets.c]
4401         EDIT class doesn't want to use CS_PARENTDC flag.
4403 Thu Mar 30 20:58:25 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4404         
4405         * [loader/selector.c]
4406           FixupFunctionPrologs() should also handle multiple data modules.
4407           (this bug only became visible because MakeProcInstance() was fixed
4408           in 950319)
4409         
4410         * [misc/dosfs.c]
4411           Simplified DOS_SimplifyPath.
4412           Small fix to DOS_opendir to reuse an entry if an open directory
4413           is opened again, to prevent "too many open directories" messages.
4415 Thu Mar 30 12:05:05 1995 Martin von Loewis  <loewis@informatik.hu-berlin.de>
4417         * [if1632/compobj.spec][include/compobj.h][misc/compobj.c]
4418         CoDisconnectObject: new stub function
4420         * [include/msdos.h]
4421         fix DOSVERSION
4423         * [loader/ne_image.c]
4424         NE_FixupSegment: Be more generous on additive fixups
4426         * [if1632/user.spec][misc/network.c]
4427         Add more WNet* stubs
4429 Wed Mar 29 11:47:22 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4431         * [controls/listbox.c]
4432           DlgDirList(): send segptr instead of linear pointer 
4433           in message to static control
4434         * [controls/menu.c]
4435           Tried to implement ownerdrawn menuitems. Doesn't work.
4436         * [if1632/gdi.spec] [include/windows.h] [objects/font.c]
4437           Provide a stub for GetRasterizerCaps()
4438         * [loader/selector.c]
4439           Pass end address instead of length to LocalInit() in 
4440           CreateSelectors()
4441         * [memory/local.c]
4442           LocalInit(): If there's already a local heap in the segment, do
4443           nothing and return TRUE
4444         * [objects/linedda.c]
4445           Replaced buggy LineDDA() with a Bresenham algorithm. Should work
4446           now.
4447         * [windows/cursor.c]
4448           LoadCursor()/CreateCursor(): Cleaned up the mess. Needs some
4449           more work still.
4451 Tue Mar 21 17:54:43 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4453         * [if1632/relay.c] [if1632/callback.c] [include/dlls.h]
4454           [if1632/winprocs.spec] [if1632/winprocs.c] [include/winprocs.h]
4455           [controls/widgets.c] [misc/shell.c] [misc/commdlg.c]
4456           [windows/nonclient.c] [misc/message.c]
4457           Added a new builtin DLL that provides 16 bit entry points for all
4458           the Def*Procs (DefDlgProc, ButtonProc etc.). OWL programs work
4459           again.
4460         * [misc/shell.c]
4461           RegOpenKey()/RegCreateKey() bugs fixed.
4462         * [loader/ne_image.c]
4463           Skipping the initialization of a DLL when CS == 0 was broken.
4465 ----------------------------------------------------------------------
4466 Sun Mar 19 16:30:20 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
4468         * [*/*]
4469         Implemented a new memory mapping scheme. There's no longer a
4470         one-to-one mapping between 16-bit and 32-bit pointers. Please see
4471         file DEVELOPERS-HINTS for technical details.
4473         * [controls/scroll.c]
4474         Fixed bug when dragging mouse in horizontal scrollbars.
4476         * [tools/build.c] [if1632/*.spec]
4477         Removed support for C callback functions and for re-ordering
4478         of the 32-bit arguments, as these were never used. This should
4479         allow a more efficient callback scheme to be implemented.
4481         * [if1632/olecli.spec]
4482         Reduced the number of entries to make the 16-bit code fit in 64k.
4483         This limitation will soon be removed.
4485         * [loader/ldt.c]
4486         Rewrote LDT manipulation functions and implemented LDT_GetEntry().
4488         * [memory/global.c]
4489         Rewrote Global*() routines to use the new selector allocation
4490         mechanism.
4492         * [memory/local.c]
4493         Rewrote local heap handling to use a Windows-compatible layout
4494         (not really finished yet).
4495         Implemented TOOLHELP heap-walking routines.
4497         * [memory/selector.c]
4498         Implemented LDT manipulation API functions.
4500 Tue Mar 14 19:50:28 EST 1995 William Magro (wmagro@tc.cornell.edu)
4502         * [windows/defdlg.c]
4503         Fixed problem where dialogs closed using the System menu 
4504         ('Close' item or double click on close box) would
4505         hang Wine.
4507 Sun Mar 12 14:28:13 1995  Michael Patra <micky@marie.physik.TU-Berlin.DE>
4509         * [controls/listbox.c]
4510         Removed most of the statements for sending a notification message
4511         ListBoxDirectory(), DlgDirSelect(), DlgDirList(): Improved the
4512         code; Borland's standard file open dialog will work now.
4513         
4514         * [misc/main.c], [misc/file.c], [miscemu/int21.c]
4515         Added support for new command line option "-allowreadonly". If set
4516         an attempt to open a read only file in write mode will be converted 
4517         to opening it read only (many programs try to open all files in 
4518         read/write mode even if they only intend to read it - this might 
4519         cause a few under problems under an unix-like environment where most 
4520         files are read only for a "normal" user)
4522         * [loader/selector.c]
4523         GetMemoryReference(): Added support for __AHIncr and __AHShift
4525         * [misc/dos_fs.c]
4526         DOS_SimplifyPath(): This routine simplifies path names ( e.g., it
4527         will change "/usr///local/bin/../lib//a" to "/usr/local/lib/a" )
4528         match(): rewritten
4529         
4530         * [objects/text.c]
4531         TEXT_NextLine(): Removed a bug in the handling of LF's
4533         * [miscemu/int21.c]
4534         GetFileDateTime(): Fixed. SetFileDateTime() is still broken.
4536 Sat Mar 11 19:46:19 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
4538         * [controls/menu.c]
4539         ChangeMenu: defaults to MF_INSERT
4540         InsertMenu: allow insertion even if position is one after last item
4542         * [if1632/Imakefile] [if1632/compobj.spec] [if1632/relay.c]
4543           [if1632/storage.spec] [include/dlls.h]
4544         Added stubs for STORAGE.DLL and COMPOBJ.DLL
4546         * [if1632/user.spec] [windows/message.c]
4547         InSendMessage: new function
4549         * [include/neexe.h][include/ne_image.c]
4550         NE_FixupSegment: fixed handling of additive records
4552         * [loader/selector.c]
4553         GetEntryDLLName: return NULL instead of pointer to DLL.0 if not found
4555         * [loader/signal.c]
4556         win_fault: Enter debugger on SIGFPE, too
4558 Wed Mar  1 21:47:42 1995  Cameron Heide  (heide@ee.ualberta.ca)
4560         * [miscemu/int*.c]
4561         Various minor modifications to the clock tick counter,
4562         FindFirst/FindNext funcs, and DPB handling.
4564 ----------------------------------------------------------------------
4565 Thu Mar  2 17:44:32 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
4567         * [loader/resource.c] [objects/oembitmap.c]
4568         Removed sysres bitmap code; you need libXpm to compile now.
4569         Implemented LoadIcon() for OEM icons.
4571         * [include/bitmaps/oic_*]
4572         Added OEM icons in XPM format.
4574         * [objects/dib.c]
4575         Bug fix in DrawIcon().
4577         * [rc/sysresbm.rc]
4578         Removed; all bitmaps are stored in XPM format now.
4580 Tue Feb 28 18:54:28 1995  Tomi Leppikangas  (tomilepp@paju.oulu.fi)
4582         * [controls/edit.c]
4583         Small patch to fix edit-control when it's created with text.
4585 Sun Feb 26 20:22:15 1995  Michael Veksler  (e1678223@tochnapc2.technion.ac.il)
4587         * [tools/make_debug]
4588         The created macros won't have side effects anymore when used in
4589         an "if-else" structure. No more warnings from the compiler when
4590         compiled without defining DEBUG_RUNTIME.
4592 Sun Feb 26 20:20:49 1995  Michael Patra <micky@marie.physik.TU-Berlin.DE>
4594         * [controls/listbox.c]
4595         ListBoxDeleteString(): Fixed
4597         * [loader/selector.c]
4598         GetMemoryReference(): When special segments are referenced by
4599         pseudo-functions like __0040H, a reference to a "normal" segment
4600         will be returned preventing the program from crashing as soon
4601         as the referenced segment is actually accessed.
4603 Sun Feb 26 15:55:14 MET 1995  Martin von Loewis (loewis@informatik.hu-berlin.de)
4605         * [Configure]
4606         Ask for OLE stubs and malloc debugging
4608         * [Imakefile]
4609         link with libmcheck.a if necessary
4611         * [if1632/relay.c][include/dll.h][if1632/Imakefile]
4612         Add OLE stubs, increase number of builtins
4613         dll_name_table_entry_s: new field dll_is_used
4615         * [loader/library.c]
4616         GetModuleHandle,ModuleNext: Check dll_is_used
4618         * [loader/ne_image.c]
4619         Bark on unsupported NE_RADDR_LOWBYTE flag (what is it supposed
4620         to mean, anyway?)
4622         * [misc/olecli.c][misc/olesvr.c]
4623         New files. Add to misc/Imakefile
4625         * [misc/dos_fs.c]
4626         DOS_GetUnixFileName: make a copy of the input parameter to 
4627         prevent overwriting
4629         * [misc/main.c]
4630         MAIN_ParseDLLOptions: new function
4631         MAIN_ParseOptions: treat -dll command line flag
4632         main: add support for malloc debugging
4634 Fri Feb 24 12:43:27 1995  Erik Svendsen  <z3esv@kmd-ac.dk>
4636         * [loader/signal.c]
4637         Small patch for people using FreeBSD-2.1.0.
4639 Fri Feb 17 22:49:18 1995  Miguel de Icaza (miguel@roxanne.nuclecu.unam.mx)
4641         * [toolkit/sup.c]
4642         Added return values to the Call* routines
4644         * [toolkit/winmain.c]
4645         Load the resource file properly for WineLib applications.
4647 ----------------------------------------------------------------------
4648 Thu Feb 16 18:57:31 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
4650         * [if1632/call.S]
4651         Only save the lower 16-bits of SP and BP.
4653         * [if1632/callback.c]
4654         When calling to 16-bit code, restore DS from its previous value on
4655         entry to the 32-bit code, instead of from the code segment owner.
4657         * [if1632/relay.c] [include/stackframe.h]
4658         Use a structure to represent the 16-bit stack frame layout
4659         instead of hard-coded offsets.
4660         
4661         * [rc/Imakefile]
4662         Use y.tab.c for bison output file for compatibility with yacc.
4664         * [tools/build.c]
4665         Small optimization for calls to 32-bit code.
4667 Sun Feb 12 03:19:47 1995  Michael Veksler (s1678223@t2.technion.ac.il)
4669         * [tools/build.c]
4670         Fixed bug (inflicted by previous change) - SEGV on ZMAGIC file format.
4672 Sun Feb 11 20:00:00 1995  Göran Thyni  (goran@norrsken.bildbasen.se)
4674         * [debugger/dbg.y]
4675         Remove unnecessary sym-table loading when stopped in 16-bit mode.
4677         * [include/segmem.h] [loader/selector.c]
4678         Added dynamic alloction of selectors.
4679         Fixed some problems with large programs SIGSEGV-ing while
4680         running out of selectors.
4682         * [include/segmem.h] [loader/selector.c] [if1632/callback.c] 
4683           [memory/global.c] [memory/heap.c] [memory/linear.c]
4684         Use __AHSHIFT and __AHINCR instead of 3 and 8.
4686 Mon Feb  6 18:07:38 1995  Cameron Heide  (heide@ee.ualberta.ca)
4688         * [misc/dos_fs.c]
4689         Better relative path handling when converting filenames between
4690         dos and unix, allowing '.' to be used in the Windows path.
4691         Startup working dir is now based on current working dir.
4693 Sat Feb  4 21:21:13 1995  Michael Veksler (s1678223@t2.technion.ac.il)
4695         * [if1632/relay.c] [include/dlls.h] [tools/build.c]
4696         Squeezed data structure that references internal dll's (mostly
4697         "struct dll_table_entry_s"). Caused 20% reduction in executable
4698         code size.
4700 Fri Feb  3 18:53:15 1995  Martin v. Loewis  (loewis@marie)
4702         * [Imakefile]
4703         make wine.sym only when making emulator
4705         * [misc/file.c]
4706         OpenFile(): report as not implemented for WINELIB
4708         * [misc/winsock.c]
4709         Fix CONVERT_HOSTENT and friends for use with WINELIB
4711         * [rc/Imakefile][rc/rc.y][rc/parser.c]
4712         Rename rc.y to parser.y
4713         Use flex and bison on Sun
4715         * [toolkit/sup.c]
4716         CallWindowProc: fix parameter type
4718         * [windows/event.c]
4719         Commented #ifdef sparc
4721 ----------------------------------------------------------------------
4722 Wed Feb  1 19:27:55 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
4724         * [windows/nonclient.c] [windows/winpos.c]
4725         Implemented maximized windows.
4726         Implemented icon positioning and ArrangeIconicWindows().
4727         Bug fixes in SetWindowPos().
4729         * [windows/painting.c]
4730         Implemented GetControlBrush().
4731         Window frame is no longer contained in the update region.
4733         * [windows/win.c]
4734         Destroy owned windows upon DestroyWindow().
4736 Sun Jan 29 16:17:22 1995  David Metcalfe <david@prism.demon.co.uk>
4738         * [controls/edit.c]
4739         Changed line terminator to \r\n to be compatible with
4740         Windows.  Fixed bug in text selection.
4742 Sun Jan 29 14:10:22 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4744        * [misc/shell.c]
4745        Rewrote RegCreateKey and RegOpenKey, since they were completely broken.
4746        Fixed a bug in RegQueryKeyValue. Implemented RegEnumKey
4747        These functions now work somewhat more the way Windows programs expect
4748        them to work.
4750 ----------------------------------------------------------------------
4751 Sun Jan 22 18:55:33 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
4753         * [loader/resource.c] [objects/dib.c]
4754         Fixed icon loading and drawing, now that BitBlt() works correctly.
4755         
4756         * [objects/clipping.c] [objects/region.c]
4757         Implemented elliptic regions with a set of rectangle. This greatly
4758         simplifies the region code and should boost clipping performance.
4760         * [objects/color.c]
4761         Fixed bug that caused seg-fault on 24bpp displays.
4763         * [objects/bitblt.c]
4764         Fixed bug when shrinking a bitmap to more than half its size.
4766         * [windows/graphics.c]
4767         Fixed bugs in PaintRgn() and Polyline().
4769         * [windows/nonclient.c] [windows/painting.c] [windows/winpos.c]
4770         Fixed some problems with window background painting.
4772 Thu Jan 12 12:20:25 PST 1995 Ross Biro (biro@yggdrasil.com)
4774        * [tools/build.c]
4775        * [tools/newbuild.c]
4776        * [Imakefile]
4777        * [include/wine.h]
4778        * [loader/call.S]
4779        * [loader/selector.c]
4780        * [include/segmem.h]
4781        * [misc/main.c]
4782        Changed selector code and 16/32 bit xfer code so that wine
4783        no longer has to be loaded low in memory.  Changed wine
4784        to work with ELF binary formats under Linux.
4785        
4786 Sat Sep 17 11:08:49 1994  Eric Youngdale  (eric@esp22)
4788         * [debugger/db_disasm.c]
4789         New instruction disassembler - borrowed from Mach kernel.  Has a
4790         BSD style of license as opposed to the gdb code we were previously
4791         using which was under the GPL.
4793 ----------------------------------------------------------------------
4794 Mon Jan  9 18:27:11 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
4796         * [Imakefile]
4797         Compiling with -Wall flag.
4799         * [*/*]
4800         Fixes to minimize the number of compilation warnings.
4802         * [objects/bitblt.c]
4803         Fixed BitBlt() and used the same code to rewrite PatBlt() and
4804         StretchBlt(). The three *Blt() functions should now be correct in
4805         every case (famous last words).
4807         * [objects/brush.c] [objects/dither.c]
4808         Merged the two files into brush.c
4810         * [objects/dc.c]
4811         Fixed bug when the Windows programs forget to re-select the
4812         original bitmap in a memory DC.
4814         * [objects/font.c]
4815         Tty to use 'fixed' font when the system font can't be found.
4817         * [windows/dialog.c]
4818         Tentative fix to make dialogs look better when using fixed-width
4819         fonts.
4821         * [windows/graphics.c]
4822         Partially implemented the PS_INSIDEFRAME pen style.
4824         * [windows/nonclient.c]
4825         Fix for windows that have the WS_EX_DLGMODALFRAME style bit
4826         without the WS_DLGFRAME style.
4828 Thu Jan  5 13:37:42 1995  Cameron Heide  (heide@ee.ualberta.ca)
4830         * [memory/global.c]
4831         GlobalCompact should now return the correct value when the
4832         largest run of free blocks includes the last block.
4834         * [windows/mdi.c]
4835         Tiling and cascading windows without any MDI children should
4836         no longer crash (assuming no-op is the correct thing to do).
4838 Sun Jan  1 23:30:25 1995  Fons Botman  <botman@rabo.nl>
4840         * [objects/font.c]
4841         GetTextExtentPoint: fixed debug output, str is counted string, not
4842         zero terminated.
4844         * [if1632/relay.c]
4845         DLLRelay: when debugging_stack got segv, added upper bound for
4846         stack dump.
4848 ----------------------------------------------------------------------
4849 Tue Dec 27 13:35:16 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
4851         * [*/Imakefile]
4852         All objects files are now kept in their respective directory.
4854         * [README]
4855         Rewrote most of it.
4857         * [objects/bitblt.c]
4858         Rewrote BitBlt() to look right in every case, while minimizing
4859         the impact on performance. Not really finished yet.
4861         * [objects/bitmap.c] [objects/dc.c]
4862         Fixed bug with pattern brushes.
4864         * [objects/clipping.c] [windows/painting.c]
4865         Fixes for logical coordinates.
4867         * [objects/color.c] [windows/graphics.c]
4868         Fixed GetPixel() to return the correct color, and made it faster.
4870         * [objects/region.c]
4871         Fixed bug in CombineRgn() when one of the region is empty.
4873 Fri Dec 22 01:42:57 MET 1994              Dag Asheim (dash@ifi.uio.no)
4875         * [Configure]
4876         Don't assume that expr handles '==', use '=' instead.
4877         Give a (hopefully informative) message if imake fails.
4879 ----------------------------------------------------------------------
4880 Wed Dec  7 14:52:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
4882         * [controls/listbox.c]
4883         Fixed problems due to new scroll-bar code.
4885         * [loader/signal.c] [miscemu/ioports.c]
4886         Handle I/O opcodes that use an absolute address.
4888         * [objects/text.c]
4889         Implemented TabbedTextOut().
4891 Sat Dec  3 18:53:08 1994  Kenneth MacDonald  <K.MacDonald@ed.ac.uk>
4893         * [objects/metafile.c]
4894         Implemented GetMetafile().
4895         Fixed bug in PlayMetaFile() when reading disc based metafile records.
4896         Added META_POLYPOLYGON, META_DELETEOBJECT and META_EOF to 
4897         PlayMetaFileRecord().
4898         
4899 Wed Nov 30 06:32:25 1994  Martin von Loewis  (martin@cs.csufresno.edu)
4901         * [Imakefile]
4902         wine.sym: Remove gcc2_compiled and friends
4904         * [controls/listbox.c][if1632/relay.c][if1632/relay.c]
4905           [loader/resource.c][memory/heap.c][objects/dib.c][windows/dialog.c]
4906         Replace #ifdef DEBUG_XXX with if(debugging_xxx){
4908         * [if1632/call.S]
4909         CallToLibMain: New function
4911         * [if1632/relay.c][include/options.h][misc/main.c]
4912           [miscemu/int1a.c][miscemu/int21.c][miscemu/kernel.c]
4913         removed Options.relay_debug
4915         * [include/heap.h]
4916         HEAP_OWNER: Use ds instead of cs:ip
4918         * [loader/ne_image.c]
4919         LoadNEImage: Remember current exe, handle nodata dlls
4920         InitNEDLL: handle nodata dlls, call CallToLibMain
4922         * [loader/selector.c]
4923         CreateSelectors: Initialize auto_data_sel with 0
4925         * [memory/heap.c]
4926         HEAP_CheckHeap: Check prev
4927         HEAP_CheckLocalHeaps: new function
4929         * [misc/profile]
4930         Remember and dump only changed profiles
4932         * [tools/makedebug]
4933         Introduce debugging_xxx flags
4935 Sun Nov 27 23:13:22 MET 1994    <erik@xs4all.nl>
4937         * [clipboard.h color.h dc.h dos_fs.h event.h font.h graphics.h
4938         if1632.h kernel.h library.h miscemu.h ne_image.h nonclient.h 
4939         pe_image.h selectors.h wintypes.h]
4940         Added.
4942         * [*/*]
4943         - Commented all 'static char copyright statements', see misc/main.c
4944         - moved prototypes to headers files, fixed wrong prototypes.
4945         - *please* add a header file for each .c if you need to export
4946           things.
4948         * [misc/main.c]
4949         Added one static string which list the names of the contributors.
4951 Fri Nov 25 16:24:27 MET 1994              Dag Asheim (dash@ifi.uio.no)
4953         * [Configure]
4954         Made the support for multiple languages more automatic.  Added
4955         a [fonts] section to the wine.conf file.  Made the defaults
4956         better.  Generally cleaned it up.
4958         * [rc/sysres_No.rc] [rc/sysres_De.rc] [rc/sysres.c]
4959         Norwegian resources and small fixes to the german resources.
4961 Wed Nov 23 20:28:59 1994  Martin von Loewis  (martin@cs.csufresno.edu)
4963         * [debugger/break.c]
4964         bark(), toggle_next(), should_continue(): New functions
4965         insert_break(): Fixed, adds write access to page before writing
4966         wine_bp.next_addr: new structure field
4968         * [debugger/dbg.y]
4969         Changed symbol's value to be it's value instead of the value
4970         pointed to by the symbol.
4971         Changed SIGTRAP handling to allow continuation after break point
4973         * [misc/shell.c]
4974         ShellAbout(): Load resource from memory
4976 ----------------------------------------------------------------------
4977 Sun Nov 20 18:30:06 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
4979         * [controls/scroll.c] [include/scroll.h]
4980         Rewritten most of scroll-bar code for better Windows look & feel.
4981         Implemented EnableScrollBar().
4982         Preliminary keyboard support.
4984         * [objects/bitblt.c]
4985         Fixed BadMatch error for BitBlt() and StretchBlt() when reading
4986         bits from outside the visible region.
4988         * [objects/oembitmap.c] [include/bitmaps/obm_*]
4989         Use XPM symbolic colors to load bitmaps. This allows the colors
4990         of the bitmaps to depend on the system colors.
4992         * [tools/make_debug]
4993         Made the make_debug script more robust.
4995         * [windows/dialog.c]
4996         Fixed CheckRadioButton().
4998         * [windows/nonclient.c]
4999         A few changes to scroll-bar drawing and tracking.
5001         * [windows/winpos.c]
5002         Renamed NextWindowFromPoint() to WINPOS_NextWindowFromPoint() to
5003         avoid confusion, and optimized it somewhat.
5005 Nov 19, 94 Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
5007         * [misc/audio.c]
5008         * [misc/mcianim.c]
5009         more coding but nothing spectacular.
5011         * [misc/mmaux.c]
5012         some coding to access '/dev/mixer'.
5014         * [misc/midi.c]
5015         some coding to read .MID files, but it's not playing yet.
5017 Sun Nov 13 19:31:03 1994    James Youngman (mbcstjy@afs.man.ac.uk)
5019         * [objects/dib.c]
5020         Reimplemented DIB_SetImageBits_RLE8() so that it would cope with
5021         bitmaps which don't end 0x00, 0x02 (previously it blew up).  This
5022         includes some bitmaps output by Paint Shop Pro.  Implementation is
5023         possibly now too lax.  Please see the notes on the function about
5024         why.
5026         * [controls/desktop.c]
5027         The desktop pattern should be painted if the wallpaper doesn't
5028         cover the whole screen width OR the whole screen height.
5030 Sun Nov 13 00:07:11 MET 1994    Erik Bos        <erik@xs4all.nl>
5032         * [objects/dib.c]
5033         Small bug in DIB_SetImageBits() fixed, bitmaps in 16,24 bpp
5034         now work.
5036         * [loader/ne_resource.c] [include/resource.h]
5037         Some cleanup.
5039 Thu Nov 10 20:44:58 1994  Martin von Loewis  (martin@cs.csufresno.edu)
5041         * [Configure]
5042           [rc/sysres.rc]
5043         Primitive compile-time support for multiple languages
5045         * [rc/sysres_De.rc]
5046         New file
5048         * [loader/resource.c]
5049         LoadBitmap: Recognize end of sysresbm properly
5051         * [rc/Imakefile]
5052         Rules to compile resources simplified, dependencies changed
5054         * [rc/sysresbm.rc]
5055         Don't use sysresbm if using XPM
5057         * [windows/dialog.c]
5058         CreateDialogIndirectParam: Reverse Z-order of controls
5060         * [windows/message.c]
5061         MSG_TranslateMouseMsg: Fix HTTRANSPARENT handling
5063         * [windows/winpos.c]
5064         NextWindowFromPoint: New function
5066         * [controls/button.c]
5067         WM_NCHITTEST: Group Box is HTTRANSPARENT
5068         BUTTON_CheckAutoRadioButton: New function
5069         BM_SETCHECK: Added call to BUTTON_CheckAutoRadioButton
5071 Mon Nov  7 11:20:26 1994  Paul Falstad  (pf@zoof.cts.com)
5073         * [objects/text.c]
5074         Fix hang when using DrawText(..., DT_WORDBREAK) with a word that
5075         is too long to break.
5077         * [objects/font.c]
5078         Don't assume helvetica if there is no font family; let the other
5079         font attributes decide what font to use.
5081         * [controls/widgets.c]
5082         Listboxes and combo boxes need to be notified of double-clicks.
5084         * [controls/listbox.c]
5085           [include/listbox.h]
5087         scrolling to bottom of list box should display last item at the
5088         bottom, not at the top.
5089         
5090         list boxes need to allocate a separate heap for their item data,
5091         rather than using the user heap.  Otherwise, it's very easy to run
5092         out of memory for list box items.
5094         removed redundant code in ListBoxAddString().  Implemented simple
5095         version of LBS_SORT.
5097         Don't put [.] in the list box when using DDL_DIRECTORY.
5099         * [controls/combo.c]
5100         Combos should pass CBS_SORT onto their list box.
5102         * [windows/win.c]
5103         If window creation is aborted, remove the window from the
5104         linked lists.
5106         * [controls/static.c]
5107         static controls with SS_ICON were always returning 0 from
5108         WM_NCCREATE.
5110         Make sure static controls have text to draw before drawing it.
5112 ----------------------------------------------------------------------
5113 Sun Nov  6 18:52:04 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5115         * [objects/oembitmap.c]  (New file)
5116         Added possibility to use .xpm files for OEM bitmaps.
5118         * [include/bitmaps/obm*]  (New files)
5119         Redrawn all OEM bitmaps in xpm format.
5121         * [objects/font.c]
5122         Add space for internal leading when using a negative font height.
5123         Stubs for AddFontResource() and RemoveFontResource().
5124         Fix in FONT_Init() for uninitialised default font.
5126         * [windows/dialog.c]
5127         Make font height negative as it is really a point size and not a
5128         pixel size; dialogs using 8-point fonts look better now.
5130         * [windows/graphics.c]
5131         Fixed the fix :-) for Pie() to make it work for Arc() and Chord() also.
5133         * [windows/nonclient.c]
5134         A few changes for new OEM bitmaps.
5136 Sun Nov  6 18:22:18 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
5138         * [windows/class.c]
5139         The names of local classes have to be stored using GlobalAtom*.
5140         Otherwise they couldn't be accessed from other modules (e.g. BWCC) 
5142         * [if1632/call.S]
5143         CallTo16(cx): It's possible to set the contents of the cx-register.
5145         * [loader/ne_image.c]
5146         InitNEDLL(): The size of the local heap is now passed in the cx-
5147         register when initializing a DLL.
5149         * [memory/heap.c]
5150         LocalInit(): The case start==0 is now handled in the way it should.
5152         * [windows/win.c]
5153         GetWindowLong(): If the adress of the windows function is requested
5154         it's no longer returned if it's within the Wine code (and therefore
5155         unreachable by a windows program). This makes Borland's OWL happy.
5157         * [controls/edit.c]
5158         EDIT_GetStr(): Added handling for off<0.
5160 Sun Nov  6 17:37:14 1994  Chris Jones  <chrisj@ichips.intel.com>
5162         * [loader/library.c]
5163         Fixed infinite loop bug when two DLLs refer to each other (fixes
5164         hangup of Quicken during loading).
5166 Thu Nov 04 12:00:00 1994  Jan Willamowius  (jan@janhh.sh.sub.de)
5168         * [misc/dos_fs.c]
5169         Bug fix: The size of a disk an the available space
5170         is now returned in bytes instead of (incorrectly)
5171         KBytes.
5173 Thu Nov 03 12:00:00 1994  Jan Willamowius  (jan@janhh.sh.sub.de)
5175         * [windows/graphics.c]
5176         Bug fix: Pie segments are now filled with correct brush.
5178 Thu Nov  3 10:40:09 1994  Martin von Loewis  (martin@cs.csufresno.edu)
5180         * [Imakefile]
5181         generate rc.o before loader.o
5183         * [controls/menu.c]
5184         CopySysMenu: generate SYSMENU on the fly, eliminate hSysMenu
5186         * [include/resource.h]
5187         Add struct ResourceTable
5189         * [loader/bitmap.h]
5190         Load system bitmaps from sysresbmTable
5192         * [misc/clipboard.c]
5193           [windows/event.c]
5194         IsClipboardFormatAvailable,EVENT_SelectionRequest: bug fixes
5195         
5196         * [rc/Imakefile]
5197         generate rc.o from sysres.o and sysresbm.o. Added -lfl
5199         * [rc/rc.y]
5200         change style handling to allow ( S1 | S2 ) | S3
5202         * [rc/sysres.rc]
5203           [rc/sysresbm.rc]
5204         Put bitmaps and icons to sysresbm, everything else to sysres
5206         * [rc/winerc.c]
5207           [rc/winerc.h]
5208         Added -o, -c flags. New function set_out_file. Output to files.
5210         * [windows/dialog.c]
5211         DialogBoxIndirectPtr, DialogBoxIndirectParamPtr: New functions 
5213         * [windows/nonclient.c]
5214         Create AboutWine dialog from template pointer
5216 ----------------------------------------------------------------------
5217 Sun Oct 30 13:01:18 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5219         * [controls/static.c]
5220         Bug fix for SS_ICON controls.
5222         * [if1632/Imakefile]
5223         Fixed call.o dependencies.
5225         * [objects/clipping.c] [objects/dc.c]
5226         Fixed visible region handling. hVisRgn is always non-null now.
5228         * [windows/dce.c]
5229         Bug fix in GetDCEx for CS_OWNDC windows.
5231         * [windows/nonclient.c] [windows/painting.c]
5232         Fixes to icon window drawing.
5234         * [windows/winpos.c]
5235         A few fixes in SetWindowPos().
5237 Sun Oct 30 12:50:24 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
5239         * [objects/bitblt.c]
5240         BitBlt(): BitBlt is now able to handle any raster operation. If
5241         the request can't be passed to XWindows directly, it's quite
5242         slow, though.
5244         * [*/*.c]
5245           [misc/main.c]
5246         Improvements of the system for handling debug messages. Options are
5247         now also loaded from /usr/lib/X11/app-defaults/Wine (insert
5248         *debugoptions: +xxx there if you want to have turn messages xxx on).
5250         * [controls/menu.c]
5251         DestroyMenu(): The whole window won't be destroyed as a sideeffect
5252         any longer.
5254         * [misc/file.c]
5255         OpenFile(): Fixed bug in searching in system/window-directory.
5257 Sun Oct 30 12:25:53 1994  Jimmy Tirtawangsa <j0t2527@tam2000.tamu.edu>
5259         * [include/windows.h]
5260         Bug fix for window related structures.
5261         DCB and COMSTAT are affected. They must be packed.
5263         * [misc/comm.c]
5264         Bug fix for COM ports:
5265         Dial and dialog window in terminal.exe now works.
5266         Non sequential COM assignments in wine.conf should not break now.
5267         Baudrate can be specified in wine.conf to overcome baudrate limitation
5268         in mswindow. See sample wine.ini
5270         * [include/comm.h]
5271         add baudrate field to DosDeviceStructre
5273         * [object/font.c]
5274         Bug fix for font assignment.
5275         Use pairs of foundry and family fontnames in X11 to correspond with
5276         window's fonts.
5277         Put font assignment ini wine.ini.
5279         * [wine.ini]
5280         Adding optional baudrate after port name in "serialports" section
5281         Add new section, "fonts".
5282         "default" is special key in "fonts" to match any unmatch window font.
5284 Oct 29, 94 (new address) wine@trgcorp.mksinfo.qc.ca (Martin Ayotte)
5286         * [if1632/relay.c]
5287         * [if1632/commdlg.spec]         New file.
5288         * [misc/commdlg.c]                      New file.
5289         * [include/commdlg.h]           New file.
5290         Begin of an emulated COMMDLG DLL, built-in for now.
5291         (BTW, if you want to switch between built-in & 16bits CommDlg, only 
5292         thing you need to do is to put the real/dummy name in file relay.c)
5294         * [controls/scroll.c]
5295         * [controls/combo.c]
5296         * [controls/listbox.c]
5297         Few bug fixes and/or cosmetic.
5299         * [misc/audio.c]
5300         * [misc/mmaux.c]
5301         bug fixes and flags returned to emulate SB16.
5303         * [misc/midi.c]                         New file.
5304         skeleton for 'Midi' MMSYSTEM & MCI driver.
5306         * [misc/mcianim.c]                      New file.
5307         skeleton for 'Animation1' MCI driver.
5309         * [windows/win.c]
5310         Add new stub for GetLastActiveWindow().
5312 Tue Oct 25 09:17:25 1994  Olaf Flebbe  (flebbe@tat.physik.uni-tuebingen.de)
5314         * [if1632/call.S] [tools/build.c]
5315            Support for ELF format. (Not complete)
5317 Sun Oct 23 00:51:50 1994  Paul Falstad  (pf@zoof)
5319         * [if1632/user.spec]
5320         Add stubs for ArrangeIconicWindows(), etc.
5322         * [if1632/kernel.spec]
5323         Add IsBad*Ptr() functions.
5325         * [loader/signal.c]
5326         Add test_memory(), for use with IsBad*Ptr().
5328         * [windows/winpos.c]
5329         Add stubs for TileChildWindows(), etc.
5331         * [windows/win.c]
5332         IsWindow() shouldn't crash if it's given a bad handle.
5333         Add stub for GetLastActivePopup().
5335         * [memory/global.c]
5336         Implement the IsBad*Ptr() functions.
5338         * [controls/listbox.c]
5339         Return the full longword of the item data in LB_GETITEMDATA.
5341         * [controls/edit.c]
5342         Don't let the user select an area past the end of the text.
5344         * [objects/text.c]
5345         In DrawText(), the code to delete crlfs also removed multiple
5346         consecutive newlines.  Also, using DT_CALCRECT didn't return
5347         the right height, and the width wasn't returned at all.
5348         This caused MessageBoxes to be missing much of their text.
5350         * [windows/scroll.c]
5351         ScrollWindow[Ex] didn't work right with null LPRECT arguments.
5353 Fri Oct 21 21:47:19 1994  Paul Falstad  (pf@zoof.cts.com)
5355         * [miscemu/int21.c]
5356         Fixed int21 0x42 handler to properly assemble 32-bit seek ptr.
5358         * [misc/property.c]
5359         Fixed inverted logic in EnumProps(), and changed CallBack16()
5360         call to use new arg format.
5362         * [windows/win.c]
5363         Fixed CallBack16() call in Enum[Child]Windows to use new arg
5364         format; this fixes crashes in enum procedures.
5366 Wed Oct 19 21:30:00 PDT 1994            martin@cs.csufresno.edu
5368         * [misc/clipboard.c]
5369           [windows/event.c]
5370           [windows/message.c]
5371         Added cut and paste between Wine and other X clients via
5372         the PRIMARY selection. Text only this time.
5374         * [controls/edit.c]
5375         EDIT_LineLength, EDIT_TextLine return 0 for lines after last one.
5377         * [windows/defwnd.c]
5378         Send WM_SYSCOMMAND to overlapped ancestor window, 
5379         not the receiver of WM_SYSKEYDOWN
5381 Sat Oct 22 15:01:02 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
5383         * [controls/edit.c]
5384         ClientWidth()/ClientHeight() macros: return 0 if size would
5385         be negative
5386         EDIT_StrLength(): takes unsigned char* instead of char*
5388         * [controls/listbox.c]
5389         ListBoxWndProc(): in "case WM_MOUSEMOVE" - set lphl at start of
5390         case instead of in each place required (it was omitted in
5391         some places causing problems!)
5393         * [controls/menu.c]
5394         MENU_CalcItemSize(): don't try to find size of a text item
5395         if the pointer is NULL
5397         * [include/heap.h]
5398         added definition of HEAP_LocalInit()
5400         * [include/msdos.h]
5401         removed buggy pointer() macro (use SAFEMAKEPTR() from segmem.h
5402         instead)
5404         * [loader/selector.c]
5405         IPCCopySelector(): added missing flags to shmget() call
5406         ? does this break linux - I added these flags in a previous
5407         patch but they were missing in the corresponding release ?
5409         * [loader/signal.c]
5410         win_fault(): added missing definitions of i, dump for those
5411         not running NetBSD or linux
5413         * [misc/dos_fs.c]
5414         DOS_GetCurrentDir(): made temp[] static so it can be safely
5415         returned
5417         * [miscemu/int21.c,int25.c,int26.c]
5418         Changed all invocations of pointer() to SAFEMAKEPTR(). Included
5419         segmem.h where necessary.
5421         * [windows/dialog.c]
5422         CreateDialogIndirectParam(): Changed HEAP_Init() call to 
5423         HEAP_LocalInit(), removed redundant variables
5425 Sat Oct 22 00:29:41 MET 1994              Dag Asheim (dash@ifi.uio.no)
5427         * [loader/library.c] [loader/main.c] [loader/ne_image.c]
5428           [misc/exec.c] [miscemu/int10.c] [miscemu/int21.c]
5429           [objects/bitblt.c] [objects/metafile.c]
5430         Rewritten more printf's to use the new debugging system, and
5431         made wine less verbose per default. Use "-debugmsg +module"
5432         to get (almost) the same behavior as before.
5434 ----------------------------------------------------------------------
5435 Sun Oct 16 13:29:07 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5437         * [controls/button.c]
5438         Implemented WM_GETDLGCODE, WM_SETFONT, BM_SETSTYLE, BM_SETCHECK,
5439         BM_SETSTATE.
5440         Implemented default button painting.
5441         Optimised redrawing.
5442         Fixed owner-draw buttons.
5444         * [controls/static.c]
5445         Implemented WM_SETFONT.
5446         A few optimisations in painting code.
5447         Bug fix for SS_SIMPLE controls.
5449         * [if1632/callback.c]
5450         Preliminary GetCodeHandle().
5452         * [if1632/gdi.spec]
5453         Changed 'pascal' to 'pascal16' everywhere it's needed.
5455         * [include/windows.h]
5456         Fixed a few data structures.
5458         * [memory/heap.c]
5459         Bug fix in HEAP_ReAlloc().
5461         * [misc/cursor.c]
5462         Fixed SetCursor().
5464         * [objects/bitblt.c]
5465         Fixed PatBlt() when using BLACKNESS or WHITENESS codes.
5467         * [objects/font.c]
5468         Better font mapping code.
5469         Implemented GetTextFace().
5471         * [objects/region.c]
5472         Bug fix in REGION_MakePixmap().
5473         Faster region copying.
5475         * [objects/text.c]
5476         Implemented ExtTextOut().
5477         Implemented DT_NOCLIP style for DrawText().
5479         * [windows/dc.c]
5480         Free the bitmap when deleting a memory DC.
5482         * [windows/dce.c]
5483         Added support for windows that have no associated X window.
5484         Implemented DCX_CLIPSIBLINGS and DCX_PARENTCLIP in GetDCEx().
5486         * [windows/defdlg.c]
5487         Implemented default push button handling and DM_SETDEFID.
5488         Implemented WM_NEXTDLGCTL.
5490         * [windows/dialog.c]
5491         Implemented default push button handling.
5492         Beginning of a keyboard interface in dialogs
5493         (does not really work yet).
5494         Fixed dialogs that use a special font.
5496         * [windows/event.c] [windows/focus.c]
5497         Added support for non-X windows.
5499         * [windows/graphics.c]
5500         Rewritten FloodFill() and implemented ExtFloodFill().
5502         * [windows/message.c]
5503         Cleaner hardware messages and X events handling.
5505         * [windows/defwnd.c] [windows/painting.c]
5506         Implemented WM_SETREDRAW.
5508         * [windows/win.c]
5509         Only create an X window for top-level windows, or for the desktop.
5510         Child windows now use their parent's drawable.
5512         * [windows/winpos.c]
5513         Beginning of support for non-X windows (still somewhat broken).
5514         Implemented *DeferWindowPos().
5516         * [*/Imakefile]
5517         Cleaned up some Imakefiles.
5518         Moved dc.c from windows/ to objects/.
5519         Moved cursor.c from misc/ to windows/.
5521 Sun Oct 16 12:21:52 1994  Michael Patra <micky@marie.physik.tu-berlin.d400.de>
5523         * [include/debug.h]
5524           [include/stddebug.h]
5525           [*/*.c]
5526         Rewritten all the calls to printf for displaying debug-information
5527         (messages like "LoadImage: loading SOL (SOL.EXE)" etc.) 
5528         Added option "-debugmsg" to Wine. Example: "-debugmsg +all" will turn
5529         all these messages on, "-debugmsg -dll" will turn all messages 
5530         concerning DLLs off.
5532         * [controls/combo.c]
5533         Added some handling for combo controls with ownerdraw-styles
5534         (just creating and passing the necessary messages to the 
5535         corresponding listbox control; the edit-control needs to be
5536         replaced with something else).
5538         * [controls/edit.c]
5539           [windows/dialog.c]
5540         Added support for use of global heap memory in dialogs with 
5541         edit controls.
5543         * [controls/listbox.c]
5544         Added support for item data.
5545         ListBoxInsertString(): Fixed bug for elements which are not inserted
5546         after the currently last element.
5547         
5548         * [misc/dos_fs.c]
5549           [miscemu/int21.c]
5550         DOS_ValidDirectory(): Checks whether a given string is in fact the
5551         valid name of a directory.
5553 Sat Oct 15 17:35:00 PDT 1994            <martin@cs.csufresno.edu>
5555         * [Imakefile]
5556         generate wine.sym after creating wine
5558         * [debugger/dbg.y]
5559         load "wine.sym" when entering debugger
5561         * [debugger/info.c]
5562         symbolic backtrace for 32-bit stack. Breaks 16-bit bt.
5564 Sun Sep  25 12:00:00 PDT 1994   <martin@osiris.cs.csufresno.edu>
5566         * [rc/rc.y] [rc/rc.h] [rc/rc.l] [rc/winerc.c]
5567         Files created
5569 Sun Sep 18 11:04:45 MET DST 1994          Dag Asheim (dash@ifi.uio.no)
5571         * [misc/spy.c]
5572         Exclude and Include no longer requires a terminating ';' to
5573         register the last component.
5575 Thu Sep 15 23:10:09 MET DST 1994          Dag Asheim (dash@ifi.uio.no)
5577         * [Configure]
5578         Rewrote much of it.  Added capability to generate a wine.ini
5579         file.  Commented out the processor emulator options until that
5580         becomes interesting.  Gives a warning if it sees any *.rej
5581         files.  I hope I haven't assumed to much about the shell/OS so
5582         that it breaks under *BSD.
5584         * [misc/dos_fs.c]
5585         Removed/changed calls to ToUnix() (which calls tolower()) so
5586         that the part of the pathname which correspond with the drive
5587         letter on DOS no longer will be mapped to lowercase.  This
5588         means that it should be possible to have uppercase letters in
5589         the [drives] section of wine.ini.
5591         * [LICENSE]
5592         Cosmetic changes so that it displays better in the window you
5593         get from pressing "Credit_License" in the "About WINE" window.
5595 Sun Aug 21 21:12:06 MET DST 1994        <erik@xs4all.nl>
5597         * [controls/menu.c]
5598         LoadMenu() moved to loader/resource.c.
5600         * [misc/main.c]
5601         Added stub for FileCDR().
5603         * [include/peexe.h]
5604         Added, from Eric's pe-test.
5606         * [include/resource.h]
5607         Added.
5609         * [loader/resources.c]
5610         Removed duplicated code in *Resource() functions.
5611         Moved NE-program specific functions into ne_image.c.
5612         Moved NE-fileformat functions to ne_resource.c.
5614         * [pe_image.c] [pe_resource.c]
5615         Added. Nothing implemented to run PE-executables, resource
5616         loading only.
5618         * [misc/file.c]
5619         Changed OpenFile() to use macros.
5621         * [misc/shell.c]
5622         Added NULL-ptr checks to ShellAbout().
5624         * [miscemu/int21.c]
5625         Fixed a few typos.
5627         * [miscemu/kernel.c]
5628         Added _DI = _DS, to put the caller's instance in DI. Doesn't
5629         work properly if caller changed DS :-(
5631 ----------------------------------------------------------------------
5632 Thu Aug 25 15:24:36 EDT 1994            <jrichard@cs.uml.edu>
5634         * [include/win.h]
5635         Removed seperate X window for icon, added icon width,height.
5637         * [include/windows.h]
5638         Commented out the old SW_xxx emum and added defines since
5639         they aren't enumerated.
5641         * [windows/dce.c]
5642         Removed some older IsIconic checks from GetDCEx(), functionality
5643         is now in nonclient and generic wine window handling code.
5644         Lots of thanks to Alexandre Julliard all the hints and
5645         help...
5647         * [windows/defwnd.c]
5648         Removed call to NC_HandleNCPaintIcon() under case WM_PAINTICON,
5649         WM_PAINTICON now calls NC_HandleNCPaint.  
5651         * [windows/event.c]
5652         Removed IsIconic checks.
5654         * [windows/icon.c]
5655         Removed everything in this file for now... could be used later.
5656         Icon functionality is now handled by the generic wine windows
5657         handling functions.
5658         
5659         * [windows/mdi.c]
5660         Added a ShowWindow in MDIRestoreChild().  MDI child windows now
5661         show up when deiconified.  Removed IsIconic checks.
5663         * [windows/message.c]
5664         Removed old icon routines from hardware_event().
5666         * [windows/nonclient.c]
5667         Changed NC_HandleNCCalcSize() so it doesn't change the size
5668         of an icon window.  Made NC_InternalNCHitTest() on an Iconic
5669         window always return HTCAPTION.  Made NC_HandleNCLButtonDblClk()
5670         on an Iconic window always send a SC_RESTORE message.
5672         * [windows/painting.c]
5673         Changed RedrawWindow() so it doesn't redraw an iconic window
5674         unless it has to (no icon for this class).
5675         
5676         * [windows/win.c]
5677         Removed creation of seperate icon window from CreateWindowEx().
5678         
5679         * [windows/winpos.c]
5680         Added saving and restoring of window rectangle during
5681         iconification/deiconification to ShowWindow().  Added
5682         functions to recursively hide and show children... called
5683         by ShowWindow during iconification/deiconification.
5685 Sat, 27 Aug 1994 18:47:34 +0100 (MET DST)  micky@marie.physik.tu-berlin.de (Michael Patra)
5687         * [windows/message.c]
5688         WaitMessage(): Fixed handling of wm_timer-messages
5690         * [miscemu/int21.c]
5691         FindNextFCB(): Rewritten to support other functions than just
5692         returning the volume label
5694         * [misc/file.c]
5695         OpenFile(): Fix in handling of OF_CREATE
5697 Wed Aug 24 19:40:42 PDT 1994  Andrew Lagodzinski  (andrew@netcom.com)
5699         * [if1632/user.spec]
5700         Added SetParent.
5702         * [windows/win.c]
5703         Added SetParent.
5705 Fri Aug 19 16:37:00 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
5707         * [loader/selector.c]
5708         Many changes throughout file to correct handling of shared memory
5709         function return codes. FreeBSD and SunOS shm functions return
5710         -1 not 0 on error. If Linux is different, these changes
5711         will have to be backed out.
5712         CleanupSelectors(): this is a new (internal) call to free
5713         up all selectors (and shm handles/memory) for use on exit.
5715         * [include/segmem.h]
5716         Change comment to reflect new use of shm_key
5718         * [misc/main.c]
5719         called_at_exit(): add call to CleanupSelectors()
5721 Mon Aug 22 18:19:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5723         * [controls/button.c]
5724         Use OBM_CHECKBOXES to draw check boxes with correct colors.
5725         Fixed bug with WM_SETTEXT handling.
5726         A few drawing optimisations.
5728         * [controls/menu.c]
5729         Implemented correct \t and \a handling in menu items.
5730         Implemented help items (flush right) on menu bar.
5731         Added WM_ENTERMENULOOP and WM_EXITMENULOOP messages.
5733         * [controls/static.c]
5734         Fixed SS_ICON controls and implemented STM_SETICON message
5735         handling.
5737         * [controls/widget.c]
5738         Set cursor to IDC_ARROW for built-in classes.
5740         * [include/options.h] [misc/main.c]
5741         Backing store is now off by default.
5743         * [objects/region.c]
5744         Use X regions for rectangle and polygon regions: *major* speed
5745         improvement.
5747         * [windows/dialog.c]
5748         Fixed the fix for integer ids in controls. SS_ICON controls in
5749         dialogs should work now.
5750         Implemented DS_ABSALIGN style.
5752         * [windows/graphics.c]
5753         Implemented InvertRgn().
5754         New internal function GRAPH_DrawBitmap() to draw bitmaps faster
5755         than with CreateCompatibleDC() + BitBlt().
5757         * [windows/message.c]
5758         Determining the window for a mouse message is now done at
5759         GetMessage() time.
5760         Modified PeekMessage() handling to avoid needlessly flushing the
5761         output queue.
5763         * [windows/timer.c]
5764         Check for restart of a timer (SetTimer call with the same hwnd and
5765         id than an existing timer).
5767 ----------------------------------------------------------------------
5768 Tue Aug  9 23:58:29 MET DST 1994        <erik@hacktic.nl>
5770         * [misc/file.c]
5771         OpenFile(): Completly rewritten.
5773         * [miscemu/int21.c]
5774         CreateFile(): Fixed wrong mode in call to open.
5775         OpenExistingFile(): Implemented file sharing.
5776         FindNext(): Fixed.
5777         CreateNewFile(): Fixed wrong mode in call to open.
5778         fLock(): Added to handle record locking.
5779         GetFileAttribute(): Added.
5780         As a result, AH = 0x5c, 0x09, and 0x0b were changed.
5782         * [miscemu/int2f.c]
5783         AH = 0x10: SHARE installation check
5785         * [loader/resource.c]
5786         AccessResource(): Fixed. A new file descriptor will be returned by
5787         every call to AccessResource().
5789         * [windows/utility.c]
5790         wvsprintf(): Fixed.
5792         * [controls/menu.c]
5793         FindMenuItem(): Fixed (handling for nPos == -1 added).  
5795         * [windows/win.c]
5796         CreateWindowEx(): Added call to WINPOS_GetMinMaxInfo.
5798         * [Configure]
5799         Added two options for a processor emulator that might be
5800         plugged in later..
5802         * [loader/task.c] [include/toolhelp.h] [if1632/toolhelp.spec]
5803         CreateNewTask() stores real modulename instead of 'TASKxxxx'.
5804         Added TaskFirst(), TaskNext(), TaskFindHandle().
5806         * [memory/global.c]
5807         Added stub for MemManInfo().
5809         * [objects/text.c]
5810         Added stub for GetTabbedTextExt().
5812         * [miscemu/*]
5813         Changed all references to registers. Please don't access
5814         the context structure.
5815         fix for GetSystemTime() by <jspeter@birch.ee.vt.edu> added.
5817         * [misc/lstr.c]
5818         Fixed bug in AnsiUpper() & AnsiLower().
5820         * [misc/winsocket.c]
5821         bugfix in getsockopt()/setsockopt(): winsock uses different values
5822         than unix.
5824         * [objects/dib.c]
5825         Added DIB_SetImageBits_RLE[48] to support compressed bitmaps.
5827 Mon Aug  8 21:12:33 1994  David Metcalfe <david@prism.demon.co.uk>
5829         * [controls/edit.c]
5830         Added support for WM_COPY, WM_CUT and WM_PASTE messages.
5832         * [windows/dialog.c] [windows/defdlg.c] [include/dialog.h]
5833         Modified dialog code to create new heap for edit controls
5834         unless DS_LOCALEDIT style is set.
5836 Thu Aug  4 18:50:56 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5838         * [controls/button.c] [controls/edit.c] [controls/static.c]
5839         Removed unneeded GlobalUnlock() calls.
5841         * [controls/menu.c] [include/menu.h]
5842         Lots of changes, fixed a lot of old bugs and introduced a lot of
5843         new ones :-)
5844         - Changed message loop to use MSG_GetInternalMessage().
5845         - Fixed a bug that caused the main window to lose activation when
5846           displaying a menu.
5847         - Correctly send initialisation messages (WM_INITMENUPOPUP).
5848         - Implemented EndMenu() and LookupMenuHandle().
5849         - Changed internal structures to be as compatible as possible with
5850           MS-Windows.
5851         - Allocated everything on the USER heap instead of the global heap.
5852         - Prefixed all internal function names with MENU_ and declared
5853           them static.
5854         - Moved "About Wine..." handling to NC_HandleSysCommand().
5855         - Multi-line menus should now work correctly.
5857         * [loader/resource.c] [objects/bitmap.c]
5858         Added the possibility to create OEM bitmaps directly as X bitmaps.
5860         * [objects/dcvalues.c] [windows/dc.c]
5861         Fixed GetDCOrg() to return screen coordinates.
5863         * [windows/message.c]
5864         Fixed double-click checks when the message is not removed from the
5865         queue.
5866         Fixed MSG_GetInternalMessage() to send WM_ENTERIDLE messages.
5868         * [windows/nonclient.c]
5869         Bug fix in system menu hit-test calculation.
5870         A few changes for new menu functions.
5872 Thu Aug 11 17:51:02 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
5874         * [controls/edit.c]
5875         Bug fix in Edit_NCCreateMessage
5876         es->textlen was being used before being set
5878         * [controls/menu.c]
5879         Bug fix in MENU_DrawMenuItem
5880         don't try to write text if NULL pointer passed
5882 ----------------------------------------------------------------------
5883 Thu Aug  4 07:18:02 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
5885         * [windows/message.c]
5886         Implemented WaitMessage() (USER.112).
5888         * [if1632/user.spec]
5889         Added WaitMessage.
5891         * [windows/defwnd.c]
5892         WM_ERASEBKGND: Added support for hbrBackground=COLOR_xxx.
5894         * [miscemu/int{13,21,2a}.c]
5895         * [miscemu/Imakefile]
5896         * [signal/loader.c]
5897         Added a few basic disk information and diagnostic functions to
5898         prevent programs using this function from crashing. All drives
5899         are claimed to be remote ones, so direct I/O isn't allowed.
5901         * [controls/edit.c]
5902         EDIT_WriteText(): Added code to correctly erase the remaining space
5903         of the edit-control if the size of the control has changed sinced it's
5904         creation.
5906 Tue Jul 26 22:05:54 MET DST 1994 Erik Bos <erik@hacktic.nl>
5908         * [if1632/mouse.spec]
5909         Added mouse.dll entry, no functions.
5911         * [loader/resource.c]
5912         Bug fix in AccessResource(). 
5914         * [misc/keyboard.c], added [include/keyboard.h]
5915         Changed functions to return more useful values.
5917         * [windows/dialog.c]
5918         Hacked DIALOG_GetControl() to support resources which
5919         have 0xff00 - 0xffff as id. ** Needs to be done properly by
5920         someone who knows the NE fileformat **
5922 Jul 29, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5924         * [windows/event.c]
5925         Add new stub for EnableHGardwareInput() function.
5927         * [windows/message.c]
5928         Add coding for HWND_BROADCAST in PostMessage().
5930         * [misc/file.c]
5931         Add coding for OpenFile() also search in WindowPaths.
5933         * [misc/mmsystem.c]
5934         * [misc/audio.c]
5935         * [misc/mmaux.c]
5936         * [misc/mcicda.c]
5937         Change #include "linux/soundcard.h" by #include "sys/soundcard.h"
5938         Add coding in MMIO functions. Now, mmioDescend() can find WAV chunks.
5939         SndPlaySound & MCI_ELEMENT now use MMIO and adjust to proper formats.
5940 ----------------------------------------------------------------------
5941 Mon Jul 18 23:55:13 MET DST 1994
5943         * [if1632/call.S]
5944         CallTo16(): added `mov %eax,%edx' just before lcall,
5945         to make sure that DX contain the DLL's hinstance when
5946         initialised.
5948         CallTo32_16() added, equal to CallTo32() except for
5949         one thing: it saves DX and 
5951         * [tools/build.c]
5952         Added some code to support 16 and 32 bit return values.
5954         * [1632/{kernel,user}.spec]
5955         Changed most of the `pascal' style to pascal_16 when
5956         function returned a 16bit value.
5958 Tue Jul 19 18:40:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5960         * [controls/menu.c]
5961         Reorganized sizing and drawing code to implement multi-line menus.
5962         Implemented MENUBREAK style.
5963         Use system colors to draw menus.
5965         * [objects/color.c]
5966         Bug fix in COLOR_IsSolid().
5968         * [objects/font.c]
5969         Bug fix in FONT_GetMetrics(): calculate average character width
5970         only on existing chars (dialogs look much better).
5972         * [objects/text.c]
5973         Bug fix in DrawText(): use text color to underline mnemonic.
5975         * [windows/nonclient.c]
5976         Changed WM_NCHITTEST handling to cope with multi-line menu bars.
5978         * [windows/syscolor.c]
5979         Added system objects for menu colors.
5981 Mon Jul 18 19:32:08 PDT 1994  Andrew Lagodzinski  (andrew@netcom.com)
5983         * [controls/menu.c]
5984         Fixed bug in SelectPrevItem that caused seperators to not be
5985         skipped when using the up arrow key.
5987 ----------------------------------------------------------------------
5988 Thu Jul 14 17:50:45 1994  Bob Amstadt  (bob@pooh)
5990         * [Configure]
5991         Autodetects Linux version (if running Linux).
5993         * [loader/signal.c]
5994         New signals for Linux.
5996         * [loader/ldtlib.c]
5997         New structure field in sys call.
5999 Sun Jul 10 19:31:34 1994  Olaf Flebbe  (olaf@dragon)
6001         * [load/resource.c] 
6002           fixed Memory (Resource) Leak.
6004         * [load/main.c] 
6005           fixed a printf.
6007 Tue Jul 12 18:50:34 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6009         * [controls/desktop.c]
6010         Implemented desktop wallpaper (only 16 colors for now).
6012         * [controls/menu.c] [windows/nonclient.c]
6013         Preliminary work to allow multi-line menus.
6015         * [misc/main.c]
6016         No backing store on desktop window (not useful).
6018         * [objects/text.c]
6019         A few fixes to DrawText() to make underlines under mnemonic
6020         letters to look better.
6022         * [windows/graphics.c]
6023         More fixes to GRAPH_DrawArc(), and some fixes to Polygon().
6024         Implemented PolyPolygon() (partially working).
6026         * [windows/winpos.c]
6027         New function WINPOS_SendNCCalcSize().
6028         Cleaned up SetWindowPos() and added preliminary support for
6029         multi-line menus.
6031 Mon Jul 11 19:15:51 1994  Miguel de Icaza  (miguel@sphinx)
6033         * [controls/edit.c]
6034         Changes to work as a library.
6036         * [if1632/callback.c] 
6037         Ifdefed module.
6039         * [if1632/relay.c]
6040         Changes to allow linking with WineLib.
6042         * [include/windows.h]
6043         Added macro WINELIB_UNIMP
6045         * [loader/library.c]
6046         When compiling WineLib, GetProcAddress is not implemented yet.
6048         * [loader/main.c]
6049         Added empty InitDLL when using WineLib.
6051         * [loader/ne_image.c]
6052         Some parts of the loader are needed for WineLib, ifdefed correctly
6054         * [misc/{audio.c,mcicda.c,mmaux.c,mmsystem.c]
6055         Disable compilation of module when compiling WineLib.
6057         * [toolkit/heap.c]
6058         Fixed small bug.  When passed an invalid handle WineLib would
6059         crash, now return NULL.
6061         * [toolkit/winmain.c]
6062         Call CreateNewTask in _WinMain.
6064 Sun Jul 10 09:08:02 1994  David Metcalfe <david@prism.demon.co.uk>
6066         * [controls/edit.c] [controls/widget.c]
6067         More changes to improve compatibility with Windows' edit
6068         control.  Finished off tab stop support.
6070 Mon Jul 11 21:05:02 MET DST 1994  Erik Bos <erik@hacktic.nl>
6072         * [if1632/relay.c]
6073         # of ordinals in shell.dll changed to 103.
6075         * [loader/signal.c]
6076         sti, cli will now be ignored.
6078         * [objects/brush.c]
6079         Added stub for GetSysColorBrush().
6081 ----------------------------------------------------------------------
6082 Sun, 3 Jul 1994 20:15:56 +0100 (BST)  David Metcalfe <david@prism.demon.co.uk>
6084         * [controls/edit.c]
6085         Bug fixes and tidying up.  Preliminary tab stop support
6086         (doesn't work yet).
6088         * [windows/dialog.c]
6089         Reversed order of buttons in CheckRadioButtons so that all
6090         buttons are now displayed.
6092 Tue Jul  5 18:30:24 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6094         * [include/options.h] [misc/main.c] [windows/win.c]
6095         Removed nosaveunders option, replaced by handling
6096         the CS_SAVEBITS flag.
6098         * [windows/class.c]
6099         Modified the fix for negative size in class extra bytes to
6100         avoid modifying the caller's data.
6102         * [windows/dc.c]
6103         Bug fix: system font must be a proportional font.
6104         Fixed a bug that caused the default pen to not be selected
6105         correctly in a DC.
6107         * [windows/graphics.c]
6108         Bug fix in GRAPH_DrawArc(). Thanks to Adriano Azevedo for
6109         noticing it.
6111         * [windows/painting.c]
6112         Removed incorrect selecting of default objects in BeginPaint()
6113         (no longer needed because of the fix in dc.c).
6115 Jul 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6117         * [misc/mmsystem.c]
6118         * [misc/audio.c]
6119         Add more code to interface '/dev/dsp'.
6121         * New file [misc/mcicda.c]
6122         Create an MCI_DEVTYPE_CD_AUDIO driver connected to '/dev/sbpcd'.
6124         * New file [misc/mmaux.c]
6125         Stubs to make a future driver connected to '/dev/mixer'.
6127         * [windows/win.c]
6128         Temporary patch to CreateWindowEx() for reseting negative
6129         coordinates to 0,0 ; because 'soundrec.exe' give negative values
6130         and I need it to work on MMSYSTEM ... :-)
6132         * [miscemu/int2f.c]
6133         add a stub 'do_int2f_16' (function 0x16) for DMPI server.
6135 Mon Jun 20 10:08:40 BST 1994  William Smith (wos@dcs.warwick.ac.uk)
6137         * include/comm.h
6138         New file -- some definitions that were in comm.c now need to
6139         be shared with misc/dos_fs.c
6141         * misc/comm.c
6142         Some definitions moved into include/comm.h
6144         * misc/dos_fs.c (DOS_GetEquipment):
6145         Fixed error in equipment -- bitwise or of two values should
6146         be used instead of logical or.  Also added code to correctly
6147         report the number of serial and parallel devices.
6149 ----------------------------------------------------------------------
6150 Mon Jun 20 14:26:41 1994  Bob Amstadt  (bob@pooh)
6152         * [objects/bitmap.c]
6153         Allow negative bitmap sizes.
6155 Sun Jun 19 12:00:04 1994  David Metcalfe <david@prism.demon.co.uk>
6157         * [controls/edit.c]
6158         Improved selection display.  Added processing for WM_SETFONT,
6159         EM_REPLACESEL, EM_LINELENGTH, EM_UNDO, EM_EMPTYUNDOBUFFER,
6160         EM_GETHANDLE, EM_SETHANDLE messages.  Text buffer now stored on 
6161         application's local heap.
6163         * [windows/graphics.c]
6164         Corrected bug in Rectangle().  XFillRectangle has the same
6165         width as Rectangle, but XDrawRectangle is one pixel wider
6166         for the same co-ordinates.
6168         * [memory/heap.c] [include/heap.h]
6169         Added HEAP_LocalSize function.
6171         * [windows/event.c] [windows/keyboard.c]
6172         Improvements to KeyStateTable and addition of AsyncKeyStateTable.
6173         Added supporting code to GetKeyState and GetAsyncKeyState and
6174         merged mouse button states into GetKeyboardState.
6176         * [loader/resource.c] [include/accel.h]
6177         Added recognition of SHIFT, CONTROL and ALT keys to
6178         TranslateAccelerator.
6180         * [objects/metafile.c] [objects/font.c] [objects/bitblt.c]
6181         A bit more metafile support.
6183 Sun Jun 19 17:29:00 MET DST 1994  Erik Bos (erik@hacktic.nl)
6185         * [loader/resource.c]
6186         SizeofResource() and AllocResource() added, AccessResource() updated.
6188         * [if1632/kernel.spec]
6189         FreeLibrary() used for FreeModule().
6191         * [windows/graphics.c]
6192         Rectangle(): swap left & right corners when right < left,
6193         swap top & bottom when botton < top.
6195 Jun 19, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6197         * [controls/combo.c]
6198         Fix bug in window style of the associated listbox.
6200         * [controls/menu.c]
6201         Skip separators in keyboard navigation by using new internal 
6202                 functions SelectPrevItem() & SelectNextItem(),
6204         * [misc/profile.c]
6205         Bug fix in GetPrivateProfileInt(), was limited to 4 digit,
6206                 IntBuf must be alloc to (5+1)=6. char instead of 5.
6208         * [misc/main.c]
6209         Put code in functions SetEnvironment() & GetEnvironment().
6211         * [misc/shell.c]
6212         Start putting some code in ExtractIcon() function.
6214         * [misc/mmsystem.c]
6215         Some code for MMTimer functions & timers list.
6217         * [miscemu/int31.c]
6218         Few stubs for DPMI interrupt calls. Nothing work yet.
6220 Mon Jun 20 07:37:43 EDT 1994    John Richardson (jrichard@cs.uml.edu)
6222         * include/win.h (tagWND):
6223         Added icon fields icon, hIcon and rectClientSave to 
6224         the tagWND struct.
6226         * windows/Imakefile
6227         Added icon.c to the list of files to compile
6229         * windows/dce.c (GetDCEx):
6230         Added some checks for iconic mode and pass icon window as drawable,
6231         not the real window.
6233         * windows/defwnd.c (DefWindowProc)
6234         Added PAINTICON default windows procedure.
6236         * windows/event.c (EVENT_Expose)
6237         Added check for iconic window expose. If iconic window is exposed
6238         send a WM_PAINTICON message
6240         * windows/icon.c 
6241         New file.  ICON_Iconify, ICON_findIconFromPoint, ICON_Deiconify.
6243         * windows/mdi.c (DefMDIChildProc)
6244         Test for IsIconic during a SC_RESTORE, this doesn't work yet.
6246         * windows/message.c (hardware_event)
6247         Looks for icon as well as window now.
6249         * windows/nonclient.c (NC_HandleSysCommand, NC_DoNCPaintIcon)
6250         Added iconify/deiconify in NC_HandleSysCommand, new function
6251         NC_DoNCPaintIcon which paints an icon.
6253         * windows/painting.c (BeginPaint)
6254         Made a BeginPaint select the STOCK_BLACK_PEN, STOCK_WHITE_BRUSH,
6255         and STOCK_SYSTEM_FONT objects since this is (hopefully) default
6256         windows behavior.
6258         * windows/win.h (CreateWindowEx)
6259         Set the default background color of a window to be white.
6260         Create icon window, turn off MINIMIZE if it is on, since
6261         I don't know what to do with it as of yet... register
6262         the icon with the hwnd of its window so we can identify where
6263         icon messages are coming from.
6265 Mon Jun 20 10:15:59 1994  Miguel de Icaza  (miguel@sphinx)
6267         * windows/event.c: Added a hack to define XPointer when using
6268         X11R4. 
6270         * toolkit/hello.c: Test application for WineLib. To compile you'll
6271         need: gcc -Iinclude -DWINELIB -g hello.c -c, and to link you'll
6272         need: gcc hello.o libwine.a -lX11 -L/usr/openwin/lib -lm 
6274         * toolkit/heap.c: Extended the size of the block size per chunk.
6276         * misc/stress.c (GetFreeFileHandles): Fixed typo.
6278         * misc/main.c (main): Changes to allow compilation under SunOS. 
6280         * loader/library.c: Changed some ifdefs to compile WineLib.
6282 ----------------------------------------------------------------------
6283 Tue Jun 14 08:09:14 1994  Bob Amstadt  (bob@pooh)
6285         * loader/selector.c (GetCurrentPDB): 
6286         Added trivial function GetCurrentPDB() which returns the program
6287         segment prefix selector.
6289         * memory/heap.c (HEAP_Free): 
6290         If free list is empty, make the freed block the free list.
6292 Fri Jun 10 07:56:49 1994  Bob Amstadt  (bob@pooh)
6294         * controls/edit.c (EDIT_SetTextMsg): 
6295         Do not append a newline at the end of the last line.
6297         * windows/event.c (SetCapture): 
6298         Set winHasCursor if mouse capture succeeds.
6300 Jun 13, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6302         * [controls/listbox.c]
6303         Fix bug in listbox : InsertString should call AddString if -1.
6305         * [controls/menu.c]
6306         New function GetMenuState().
6308         * [controls/scroll.c] [windows/nonclient.c]
6309         Try to make ShowScrollBar() recalc NC_ regions. Not finished !
6311         * [objects/text.c]
6312         Add Stub for TabbedTextOut(), which temporarely call Textout().
6314         * [windows/keyboard.c] [windows/event.c]
6315         New function GetKeyBoardState() with an KeyStateTable array
6316                 & associated handling in function EVENT_key().
6318 Mon Jun 13 16:45:24 MET DST 1994 (erik@hacktic.nl)
6320         * [controls/menu.c]
6321         IsMenu() added.
6323         * [loader/library.c]
6324         ModuleFirst(), ModuleNext(), ModuleFindName(), ModuleFindHandle()
6325         added.
6327         * [object/gdiobj.c]
6328         IsGDIObject() added.
6330         * [miscemu/int2[56].c]
6331         bugfix: both didn't leave flags pushed on 16bit-stack.
6332         (winfile gets a bit further)
6334         * [miscemu/int16.c]
6335         Added (empty).
6337 Sat Jun 11 22:56:48 1994 Jon Tombs (jon@esix2.us.es)
6338         * windows/event.c:
6339         Added code to drop redundant motion Events in the XEvent queue.
6341 Thu Jun  9 10:55:55 MET DST 1994  Jochen Hein ( Hein@Student.TU-Clausthal.de )
6343         * [misc/main.c misc/message.c include/texts.h]
6344         Removed the text-constants from message.c into variables
6345         which may be changed from X-resources.
6347         * [misc/main.c misc/message.c]
6348         added <locale.h> and setlocale() to main.c, used toupper() in message.c
6350 Mon, 13 Jun 94 09:41:16 -0500 Paul Bramel <paulbr@comm.mot.com>
6352         * controls/button.c ( [CR]B_LButton* ) 
6353         left rc.right at full window width so click on label also 
6354         activates the control (MSWin behavior)
6356 Sat Jun 11 19:05:40 1994  Olaf Flebbe  (flebbe@tat.physik.uni-tuebingen.de)
6358         * include/windows.h:
6359           functions pointers can not be packed.
6360           (annoying warnings with forthcomming gcc-2.6.x)
6361         
6362         * loader/main.c (InitDLL): 
6363           Fixed a printf statement. (for control.exe) 
6365           (InitializeLoadedDLLs): 
6366           deleted shadow definition of  *wpnt.
6367           (Breaks many programs, because now COMMDLG will be
6368            initialized :-(
6370         * windows/win.c (SetWindowText): 
6371           added missing breaks; (PENSATE starts) 
6373         * windows/graphics.c (FloodFill): 
6374           Proper boundarys. (BANGBANG starts) FloodFile_rec should
6375           be rewritten.
6377         * objects/font.c (FONT_GetMetrics): 
6378           TYPO: use font->perchar only if it is defined. (WRITE starts)
6380 Sun June 12, Peter Broadhurst (pbr@ua.nwl.ac.uk)
6381         controls/scroll.c:
6382         Fixes for improved behaviour when dragging thumb;
6383         Added SB_THUMBPOSITION message when thumb is released.
6385 ----------------------------------------------------------------------
6386 Tue Jun  7 08:41:27 1994  Bob Amstadt  (bob@pooh)
6388         * loader/selector.c (FixupFunctionPrologs): 
6389         New function to fixup loaded DLL function prologs.  It replaces the
6390         do nothing code with code that loads DS with the appropriate data
6391         segment for the DLL.
6393         * misc/cursor.c (LoadCursor): 
6394         Disabled cursor loading from .EXE or .DLL.  The code needs to handle
6395         the possibility of multiple cursors in a single directory.  Also,
6396         it should check to see if the cursor is the right size.
6398         * objects/font.c (EnumFonts): 
6399         Checked for lpLogFontList[i] == NULL
6401         * objects/gdiobj.c (SetObjectOwner): 
6402         Removed stub.  Replaced with simple return in gdi.spec.  This
6403         function is not defined for the retail version of Windows.
6405         * memory/heap.c (WIN16_LocalHandleDelta): 
6406         New function.  This is really a dummy that imitates the proper
6407         return values.
6409         * loader/library.c (GetProcAddress): 
6410         Fixed definition of IS_BUILTIN_DLL() macro.
6412 Mon Jun  6 18:15:40 1994  Bob Amstadt  (bob@pooh)
6414         * miscemu/int21.c (SeekFile): 
6415         Needed to return current position in DX:AX.
6417         * windows/utility.c (windows_wsprintf): 
6418         Added support for '#' in format, and fixed bug with "ptr" being
6419         incremented too many times.
6421         * miscemu/int21.c (OpenExistingFile): 
6422         Add code to handle opening files read-only and write-only.
6424         * loader/wine.c:
6425         Segment fixups now done in LoadImage instead of _WinMain.  This
6426         is necessary to support LoadLibrary().
6428 Sun Jun  5 17:34:24 1994  Erik Bos (erik@hacktic.nl)
6430         * [loader/*]
6431                 - fixed: GetModuleHandle() sometimes returned
6432                   a wrong handle.
6433                 - don't init dlls when cs == 0 (lzexpand, doesn't
6434                   seem to have a init function)
6435                 - LoadLibrary & LoadImage now return error instead
6436                   of stopping wine.
6437                 - moved most of NE-functions into one file.
6438                 - LoadLibrary() uses w_files list instead of its
6439                   own list.
6440                 - NE exectables are now fixed-up and initialised when
6441                   loaded instead of only once before calling InitTask.
6443         * [miscemu/int15.c] [miscemu/int31.c]
6444         Added.  
6446         * [loader/selector.c]
6447         Stubs added for {Get|Set}SelectorLimit(), {Get|Set}SelectorBase().
6449         * [misc/main.c]
6450         Stub added for IsRomModule().
6452         * [miscemu/int21.c]
6453         Some cleanup, added heap for returning data.
6455 Jun 6, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6457         * [tools/build.c]
6458         Change MAX_ORDINALS     define to higher value, 1299 entries.
6459         (MMSYSTEM doesn't have succesive numbers, some are around 1200).
6461         * [windows/utility.c]
6462         Bug fix in windows_wsprintf(), (twice increments ...).
6464         * [windows/winpos.c]
6465         Bug fix in SetWindowPos(), redraw was done if flag
6466                 was set to SWP_NOREDRAW while SWP_SHOWWINDOW).
6468         * [misc/message.c] [controls/combo.c]
6469         Add an InvalidateRect() in WM_SHOWWINDOW to statisfy the new 'saveunder'.
6471         * [windows/win.c]
6472         In CreateWindowEx(), do SetMenu() calls after window creation,
6473                 just before sending to WM_NCCALCSIZE.
6475         * [controls/menu.c]
6476         In function SetMenu(), now use SetWindowPos() with 
6477                 flags SWP_FRAMECHANGED to readjust menu area.
6478         Function MenuBarCalcSize() redone.
6480 Sun May 29 11:08:24 1994  David B. Thomas  (dt@yenta.abq.nm.us)
6482         * [objects/text.c]
6483         Fixed problems associated with DT_WORDBREAK flag.  String length
6484         was not being properly decremented when lines were folded, and
6485         wrapping was not performed when DT_NOCLIP and DT_NOPREFIX were
6486         both on in addition to DT_WORDBREAK.  Windows does wrapping in
6487         this case, and now so does wine.
6489 Sun Jun  5 19:17:49 1994  Olaf Flebbe  (olaf@dragon)
6491         * [edit.c]
6492         cp1 was uninitialized iff lineno == 0
6494         *  FindFile tests for existance of file even if a full
6495            filename was supplied. What about unix file names?
6497         * [controls/listbox ]
6498         wndPtr was uninitialized for LB_SETTOPINDEX
6500         * [misc/property.c]     
6501         Do not free lpProp. Is it really allocated by malloc?
6502         {edited by Bob Amstadt: changed free() to GlobalFree()}
6504 ----------------------------------------------------------------------
6505 Sat May 28 12:03:23 1994  Bob Amstadt  (bob@pooh)
6507         * miscemu/int21.c (OpenExistingFile): 
6508         OpenExistingFile needed to return handle in AX register instead
6509         of the BX register.
6511         * miscemu/int21.c (ioctlGetDeviceInfo): 
6512         Added a little code to give a fake result for normal files.
6514 Wed May 25 21:55:38 1994  Bob Amstadt  (bob@pooh)
6516         * [memory/global.c]
6517         return value from GlobalSize was completely wrong.
6519         * [miscemu/int21.h]
6520         fixed bug in FindFirst.  Directory pointer (dp) was not placed in
6521         dta correctly.
6523         * [tools/build.c]
6524         fixed creation of pop.h to guarantee that flags are restored correctly.
6526         * [misc/comm.c]
6527         changed all occurance of strncmp() to strncasecmp().
6528         BuildCommDCB() should not require that OpenComm() be called first.
6530         * [loader/selector.c]
6531         Heap initialized to size of full segment less stack size and 
6532         automatic data size.
6534 Sat May 28 09:14:33 1994  Rick Sladkey  (jrs@world.std.com)
6536         * [controls/listbox.c]
6537         Correct typos in ListBoxResetContent where lpls variable is
6538         used where lsls2 variable is meant.  Don't call USER_HEAP_FREE
6539         twice on the same handle if hData and hMem are the same.
6541         * [debugger/opcodes/i386-dis.c]
6542         Add new name array names_rmw for table driven decoding of the
6543         16-bit mod/rm field.  Omit large case statement in OP_E and
6544         replace with array reference to match existing coding style.
6545         Add new static variable machine with value 286 or 386 to
6546         correctly decode mod/rm field in either 16 or 32 bit modes.
6547         Set it in print_insn_i{2,3}86.  In OP_E use it to decide how
6548         to decode mod/rm.  While the code was correct for 16 bit code,
6549         it was improperly decoding mod/rm fields on word prefixed
6550         32 bit instructions.
6552         * [debugger/debug.l]
6553         Recognize new token ABORT.   Recognize single letters 'p'
6554         and 'q' as tokens.
6556         * [debugger/dbg.y]
6557         Add new token ABORT.  Allow print command to be invoked by
6558         'p' and quit command by 'q', ala GDB.  Change lots of '};'
6559         to just '}'.  Add static dummy_regs to wine_debug so that
6560         wine_debug(0, NULL) doesn't core dump with qmagic.
6562         * [debugger/info.c]
6563         Correct syntax of break command in helptext and omit former
6564         comment about probable bugginess of the disassembly since it
6565         is now correct.  Change fprintf of first backtrace stack
6566         frame to match that of the second and subsequent frames.
6568         * [loader/selector.c]
6569         Change construction of command line in CreatePSP from creating
6570         a string that looks like "arg1 arg2 \r" to "arg1 arg2".  A DOS
6571         PSP command line looks like " arg1 arg2\r" with the length not
6572         including the trailing "\r" but that is not how Windows does it.
6574         * [loader/library.c]
6575         Change uses of %s to print strings in GetModuleHandle to %x so
6576         that string IDs don't cause a core dump with qmagic.  Handle
6577         converting a string id to a literal module handle.  For
6578         example, GetModuleHandle((LPSTR) 0x57) now returns 0x57 if
6579         it is a real module handle.
6581         * [misc/message.c]
6582         In MessageBox, translate a NULL title argument to the string "Error".
6584         * [misc/profile.c]
6585         In GetSetProfile translate a NULL Default argument to "".  Any
6586         caller whose Default argument is NULL is buggy, but CHARMAP does it
6587         anyway.
6589         * [objects/font.c]
6590         Add NULL pointer checks in EnumFontFamilies to prevent core dumps.
6592 Sat May 28 20:01:51 1994 Jon Tombs (jon@gtex02.us.es) 
6594         * New options/resourses nosaveunders and nobackingstore.  By 
6595         default backingstore and saveunders are now enabled, these use 
6596         more memory but avoids those slow (sometimes multiple) redraws 
6597         caused be exposure events.
6599 May 30, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6601         * [misc/driver.c] New file
6602         Skeleton for 'Installable Wine Drivers' functions. :-)
6603         * [misc/audio.c] New file
6604         Skeleton for basic 'Audio Driver' functions.
6605         * [misc/network.c] New file
6606         Stubs for few networking functions.
6608         * [misc/mmsystem.c]
6609         More coding ... a dust in a galaxy ...
6610         * [misc/shell.c]
6611         Some coding for 'RegXXX' functions ... a dust in the wind ...
6613         * [misc/profile.c]
6614         Bug fix in GetSetProfile(), bad enumeration if KeyName == NULL.
6616         * [objects/gdi.c]
6617         New function CreateDiscardableBitmap(), it just calling 
6618         CreateCompatibleBitmap() for now. It's get 'clock.exe' running ! :-)
6620         * [controls/listbox.c]
6621         * [controls/combo.c]
6622         New font member assigned to SYSTEM_FONT as default.
6623         Added processing for WM_SETFONT message;
6626 Tue May 31 20:34:25 EDT 1994  John Richardson <jrichard@cs.uml.edu>
6628         * [windows/event.c]
6629         Added AsyncMouseButtonsStates array for GetAsyncKeyState.
6631         * [windows/keyboard.c]
6632         Implemented beginning of GetAsyncKeyState.
6634 Wed May 25 23:35:03 1994  David Metcalfe <david@prism.demon.co.uk>
6636         * [objects/metafile.c] [include/metafile.h]
6637           [windows/mapping.c] [objects/clipping.c] [objects/bitblt.c]
6638           [windows/dc.c]
6639         Further metafile support.
6641 ----------------------------------------------------------------------
6642 Mon May 23 15:07:36 1994  Bob Amstadt  (bob@pooh)
6644         * [loader/selector.c]
6645         Allocate heap and stack segments as 64k.
6647 Sat May 21 01:15:49 1994  Rick Sladkey  (jrs@world.std.com)
6649         * [loader/selector.c]
6650         Correct typos where memcpy is used instead of memset.
6652         * [loader/resource.c]
6653         Allow for legitimate cases where biSizeImage is 0 in LoadIcon
6654         by calculating the value when the bitmap is not compressed.
6656         * [miscemu/int21.c]
6657         Fix NULL dereference caused by superfluous DOS_closedir in FindNext.
6659         * [loader/resource.c]
6660         New function type_match to handle string resource types as
6661         well as IDs.  In addition, compare only low 4 bits of type_id
6662         when both numbers are IDs so that 0x0002 matches 0x8002.
6663         In FindResourceByNumber and FindResourceByName use type_match
6664         instead of comparing numbers.  In FindResource handle the
6665         "#number" syntax and empty strings in both the resource and
6666         type names.
6668 Mon May 23 00:48:25 1994  Rick Sladkey  (jrs@world.std.com)
6670         * [windows/dialog.c]
6671         Fix inadvertent printing of string IDs as strings.
6673 May 23, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6675         * [controls/menu.c]
6676         New functions GetMenuItemCount(), GetMenuItemID().
6677                 GetMenuString() & HiliteMenuItem().
6678         Bug fix in CheckMenuItem().
6679         Function SetMenu() now make client area recalc if menu removed.
6681         * [windows/winpos.c]
6682         Bug fix in SetWindowPos(), no more XMapping or XConfiguring     of
6683                 windows with initial width or height equal zero.
6685         * [objects/gdiobj.c]
6686         New function EnumObjects(), using new lpPenBrushList buildup
6687                 from calls to new function GDI_AppendToPenBrushList().
6688                 ('pbrush.exe' don't show its face yet ! ... :-( )
6689         New EMPTY STUB for function SetObjectOwner(),
6690                 ('mplayer.exe' call it via GetProcAddress() ...)
6692         * [objects/font.c]
6693         New internal functions ParseFontParms() & InitFontsList().
6694         EnumFonts() & EnumFontFamilies() enumerates fonts (no more dummies).
6695         FONT_MatchFont now make retries to find closest-smallest font.
6696                 ('charmap.exe' can now show the differents fonts available)
6698         * [windows/nonclient.c]
6699         Use small dos OBM_OLD_CLOSE button for MDI windows.
6701         * [windows/graphics.c] [objects/bitmap.c]
6702         Start to remove obsolete globals such XT_screen ...
6704         * [loader/library.c]
6705         Make function GetProcAddress() working also with builtin DLLs.
6707 Tue May 24 20:18:02 1994  Erik Bos (erik@hacktic.nl)
6709         * [if1632/system.spec] [if1632/toolhelp.spec]
6710         system.dll & toolhelp.dll added.
6712         * [loader/library.c]
6713         Modified GetModuleFileName() to return the full
6714         filename.
6715         Added a check to LoadLibrary() to prevent loading
6716         built in dlls. (eg. user.exe)
6717         Added a check to FreeLibrary() to prevent built-in
6718         dlls from being freed.
6719         Modified GetProcAddress() to support builtin dlls.
6721         * [loader/signal.c] [miscemu/int2f.c]
6722         Added => pifedit runs.
6724         * [misc/dos_fs.c]
6725         Added a NULL-ptr check to DOS_closedir().
6727 ----------------------------------------------------------------------
6728 Tue May 17 23:03:16 1994  Bob Amstadt  (bob@pooh)
6730         * [windows/dce.c]
6731         Fixed bug with dce initialization that was causing dialog boxes to not
6732         be displayed.
6734         * [if1632/callback.c]
6735         Better fix for bug found by Martin.
6737 Sat May 14 19:48:39 1994  Rick Sladkey  (jrs@world.std.com)
6739         * [ memory/heap.c ]
6740         Redirect HEAP_ReAlloc calls with NULL argument to HEAP_Alloc.
6742 May 16, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6744         * [objects/font.c]
6745         Make EnumFonts() calling a callback with dummy fonts ... :-)
6747         * [objects/text.c]
6748         Add Empty Stub for ExtTextOut(), which temporarely call Textout().
6750         * [if1632/callback.c]
6751         Temporarely go around bug in CallWindowProc(), you will see printfs.
6753         * [controls/edit.c]
6754         Make EDIT controls focused by a mouse click.
6756         * [misc/property.c]
6757         Bug Fix in function EnumProps(), better use of CallBack16().
6759         * [misc/mmsystem.c]
6760         Basic Skelton's for MCI messages dispatching function.
6762 Sun May 15 16:15:17 1994  Erik Bos (erik@hacktic.nl)
6764         * [windows/utility.c]
6765         Added windows_wsprintf() for the emulator, wsprintf() is
6766         for libwine.
6768 Sat May 14 22:16:40 1994  Rick Sladkey  (jrs@world.std.com)
6770         * [misc/cursor.c]
6771         Fix pointer problems in LoadCursor leading to heap corruption.
6773         *  [ controls/menu.c ]
6774         Fix two NULL dereferencing bugs.
6776 Sun May 15 20:07:48 1994  Rick Sladkey  (jrs@world.std.com)
6778         * [objects/font.c]
6779         Fix NULL pointer dereferencing bug in GetCharWidth.
6781         * [loader/resource.c]
6782         Fix under-allocation of memory in LoadAccelerators.
6784         * [windows/class.c]
6785         Ignore negative sizes for extra fields in RegisterClass.
6787 Sun May 15 06:35:03 1994  David Metcalfe <david@prism.demon.co.uk>
6789         * [objects/metafile.c] [include/metafile.h] [include/windows.h]
6790           [objects/gdiobj.c] [objects/brush.c] [objects/pen.c]
6791           [objects/text.c] [objects/dcvalues.c] [windows/graphics.c]
6792           [windows/dc.c] [windows/mapping.c]
6793         Beginnings of metafile support.
6795         * [misc/file.c]
6796         Corrected spelling of _lcreat.
6798         * [controls/edit.c]
6799         Minor bug fixes.
6800 ----------------------------------------------------------------------
6801 May 9, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6803         * [controls/scroll.c]
6804         Make thumbtrack button disappear if scroll box ratio < 3:1.
6805         Make arrow buttons rectangular if scroll box ratio < 2:1.
6806         Add code for SBS_TOPALIGN, SBS_BOTTOMALIGN, 
6807                                 SBS_LEFTALIGN & SBS_RIGHTALIGN.
6808         Bug fix in NC_CreateScrollBars(), no more bigbutt in calendar.exe... :-)
6810         * [loader/library.c] [loader/task.c] [misc/exec.c]
6811         Continue playing around trying to get a second task running.
6813         * [windows/mdi.c]
6814         Change OBM_CLOSE for OBM_OLD_CLOSE, a smaller dot button when maximized.
6816         * [everywhere]
6817         Adding previous works of the Apr 25, 94.
6819 Tue May 10 18:09:14 1994 Erik Bos (erik@trashcan.hacktic.nl)
6821         * [if1632/mmsystem.spec] [misc/mmsystem.c] [include/mmsystem.h]
6822         Added Martin's mmsystem.dll stubs.
6824         * [misc/sound.c]
6825         Added remaining stubs for sound.dll.
6827         * [if1632/shell.spec] [misc/shell.c]
6828         Fixed prototypes (I found them in BC 4) and added ShellAbout()
6829         and AboutDlgProc().
6831 ----------------------------------------------------------------------
6832 May 1, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6834         * [loader/signal.c]
6835         Add XUngrabPointer() & XUngrabServer() in wine_fault().
6837 Fri Apr 22 19:30:08 1994  Erik Bos (erik@trashcan.hacktic.nl)
6839         * [objects/bitblt.c]
6840         color_stretch() rewritten to use ints only. *fast!*
6841         BLACKONWHITE & WHITEONBLACK stretchmodes redirected to
6842         use color_stretch().
6844 Mon May  2 21:39:43 1994  Erik Bos (erik@trashcan.hacktic.nl)
6846         * [controls/menu.c]
6847         SetSysMenu() added.
6849         * [misc/cursor.c]
6850         GetCursor() added.
6852         * [misc/main.c]
6853         SwapMouseButton() added, (NOP).
6855         * [windows/win.c]
6856         GetDesktopHwnd() added.
6858         * [if1632/*spec]
6859         Added not implemented functions defs as comment.
6861         * [misc/winsocket.c]
6862         Change WSAGetXbyY() functions to non-blocking ones,
6863         Added WSAAsyncSelect(). 
6864         (WSA functions can't be canceled yet).
6866 Wed Apr 20 23:58:58 1994  Scott A. Laird  (scott@curly)
6868         * misc/profile.c: Fixed bug with GetIniFileName returning wrong
6869         path when given a simple file name.  Fixed GetSetProfile to allow
6870         enumerating all key names when KeyName is null.
6872 Apr 25, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6874         * [objects/bitblt.c]
6875         Add protection to BitBlt() & StretchBlt() for width or height = 0.
6877         * [windows/nonclient.c]
6878         Avoid painting in NC_DoNCPaint() if IsWindowVisible().
6879         Simplify NC_TrackMouseMenuBar() because code moved to MenuFocusLoop().
6881         * [windows/win.c]
6882         CreateWindowEx() & DestroyWindow() now call respectively
6883                 AddWindowToTask() & RemoveWindowFromTask().
6884         New empty stub for function AnyPopup().
6886         * [loader/library.c]
6887         Bug Fix : GetModuleFileName() now return full path filename.
6889         * [include/menu.h] [controls/menu.c]
6890         Add hText handle and remove obsolete MENUITEM struct members.
6891         Add a ReleaseCapture() in SetMenu() when menubar changed while captured.
6892         Add MenuMouseMove() MenuButtonUp() in function MenuFocusLoop().
6894         * [misc/file.c]
6895         GetTempFilename() now create a file.
6896         _lcreate() use unix open (name, mode, perm), with perm=O666.
6898         * [if1632/relay.c]
6899         Remove temporarly builtin SHELL.DLL, Add MMSYSTEM.DLL in builtin list.
6901         * New file [misc/mmsystem.c]
6902         * New file [include/mmsystem.h]
6903         * New file [if1632/mmsystem.spec]
6904         Many, many empty stubs ... :-)
6906 ----------------------------------------------------------------------
6908 Wed Apr 20 14:53:35 1994  Bob Amstadt  (bob@pooh)
6910         * [tools/build.c] [if1632/call.S] [if1632/Imakefile]
6911         Fixed bug for non-Linux systems.
6913 Apr 18, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6915         * [windows/win.c]
6916         Bug fixed in CreateWindowEx() : Now use SetMenu() for menubar setup.
6917         New empty stub for function SetSysModalWindow().
6919         * [misc/exec.c]
6920         New empty stub for function ExitWindows().
6922         * [objects/font.c]
6923         New empty stub for function EnumFonts().
6925         * New file [misc/property.c]
6926         New functions RemoveProp(), GetProp(), SetProp() & EnumProps().
6928         * New file [misc/shell.c]
6929         New empty stubs for function RegisterShellProc(), 
6930                         ShellExecute() & ShellProc().
6932         * New files [loader/task.c] & [include/task.h]
6933         Move functions GetWindowTask(), GetNumTask(), EnumTaskWindows()
6934                 from 'loader/library.c'.
6936         * [if1632/user.c] [if1632/kernel.c]
6937         Put Atoms functions entries.
6939         * [controls/combo.c]
6940         New functions DirDlgSelectComboBox() & DirDlgListComboBox().
6942         * [controls/listbox.c]
6943         New functions DirDlgSelect() & DirDlgList().
6945 Sun Apr 17 20:57:59 1994  Erik Bos (erik@trashcan.hacktic.nl)
6947         * [objects/test.c]
6948         GrayString() added.
6950         * [if1632/callback.c]
6951         CallGrayStringProc() added.
6953         * [if1632/relay.c] [if1632/mmsystem.spec]
6954         Added.
6956         * [if1632/kernel.spec] [if1632/user.spec]
6957         Added forgotten specs for atom functions.
6959 ----------------------------------------------------------------------
6960 Tue Apr 12 00:05:31 1994  Bob Amstadt  (bob@pooh)
6962         * misc/spy.c (SpyInit): Added more message types
6964         * [windows/mdi.c] [include/mdi.h]
6965         Maximizing and restoring child windows.
6966         Tiling of child windows.
6968 Mon Apr 11 20:48:28 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6970         * [windows/winpos.c]
6971         Revert focus and activation to previous window when hiding a window.
6973         * [windows/syscolor.c]
6974         Implemented system color objects (brushes and pens created at
6975         SetSysColor() time for better performance).
6977         * [windows/graphics.c] [windows/nonclient.c] [controls/button.c]
6978         Changed painting code to use system color objects.
6980         * [windows/message.c]
6981         New function MSG_InternalGetMessage() for internal messages
6982         loops (e.g. for dialogs or menus).
6984         * [windows/hook.c] [include/hook.h]  (New files)
6985         Beginning of the window hooks implementation.
6987         * [windows/dialog.c]
6988         Use new function MSG_InternalGetMessage() in DialogBox().
6990         * [if1632/callback.c]
6991         Added function CallHookProc().
6993 Apr 11, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6995         * [windows/event.c]
6996         Bug fix : WM_CHARs are sent to focused window like WM_KEY???.
6998         * [misc/exec.c]
6999         Nothing much more than a stub for LoadModule(), I saw there a lot
7000                 to be done in that corner, I will come back later ...
7002         * [loader/library.c]
7003         New functions GetWindowTask(), GetNumTask(), EnumTaskWindows() 
7004                         and associated modules & tasks linked-lists.
7005         (it's only an 'emerging bud', more to come next weeks).
7007         * [loader/wine.c]
7008         Use LoadLibrary() instead of LoadImage() for 'sysres.dll'.
7010         * [control/menu.c]
7011         You can now click outside menu region without problem.
7012         Keyboard navig more smootly, even if a child has the focus.
7013         Bug fix in InsertItem(), (bad linklist when insert point not found).
7014         change Realloc for Free & Alloc in ModifyItem().
7015         MF_STRING now set BLACK_PEN to fix bug of bad color of the underscores 
7016                 done by DrawText(), (maybe it should done in DrawText() itself ?).
7018 Sun Apr 10 14:06:08 1994  Erik Bos (erik@trashcan.hacktic.nl)
7020         * [misc/profile.c]
7021         .INI files will now be stored in / loaded from the windows dir
7022         if no path is supplied.
7024         * [if1632/kernel.spec]
7025         Fixed GetDriveType's prototype.
7027         * [if1632/winsock.spec] [include/winsock.h] [misc/winsocket.c]
7028         Fixed prototypes: winsock uses a word as socket handle not an int.
7030         * [misc/winsocket.c]
7031         Added heap allocation for returned structures.
7032         Added non-blocking WSAAsyncGetXbyY() functions as blocking ones.
7034         * [loader/wine.c]
7035         Added IsDLLLoaded(), used in LoadImage() to prevent loading
7036         a dll multiple times.
7037         Directory is added to wine's path when a fullpath is supplied when
7038         starting wine.
7039         LoadImage(): DLL filename used instead DLL's own internal name,
7040         fixes 'Bad DLL name' errors.
7042 Sat Apr  9 08:26:03 1994  David Metcalfe <david@prism.demon.co.uk>
7044         * [controls/edit.c] [controls/widgets.c]
7045         First release of edit control.
7047 ----------------------------------------------------------------------
7048 Tue Apr  5 14:36:59 1994  Bob Amstadt  (bob@pooh)
7050         * [include/mdi.h] [windows/mdi.c]
7051         Use WM_PARENTNOTIFY messages to activate children.
7052         Generate WM_CHILDACTIVATE messages.
7053         Beginnings handler for maxmized child window.
7054         Clean up when children are destroyed.
7056         * [windows/message.c] [windows/nonclient.c] [windows/winpos.c]
7057         Removed code add 94/03/26.
7059 Apr 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7061         * [control/menu.c]
7062         Make mouse menu navigation working again. :-))
7063         (be carefull, clicking outside menus (ie.: clientrect) 
7064         not resolved yet)
7066         * [windows/nonclient.c]  [controls/scroll.c]
7067         Bugs fix in NCTrackScrollBars().
7069         * [misc/dos_fs.c]
7070         Bug fix in 'ToDos()' in conversion for '/',
7071                 (example: '/window/' was translated to 'WINDOWs').
7073         * [miscemu/int21.c]
7074         Function ChangeDir() extract possible drive before DOS_ChangeDir().
7076         * [loader/library.c]  [loader/wine.c]
7077         Playing around moving function GetProcAddress() and put some code in.
7079 Mon Apr  4 21:39:07 1994  Alexandre Julliard (julliard@lamisun.epfl.ch)
7081         * [misc/main.c]
7082         Better explanation of command-line options.
7084         * [objects/dib.c]
7085         Implemented SetDIBitsToDevice().
7087         * [windows/dc.c]
7088         Bug fix in SetDCState().
7090         * [windows/event.c]
7091         Removed WS_DISABLED handling (now done in message.c).
7093         * [windows/message.c]
7094         Added sending a WM_PARENTNOTIFY message in MSG_TranslateMouseMsg().
7095         Use WindowFromPoint() to find the window for mouse events, taking
7096         into account disabled windows.
7098         * [windows/painting.c]
7099         Bug fix in BeginPaint() to allow calling it at other times than
7100         on WM_PAINT (Solitaire needs it...)
7102         * [windows/win.c]
7103         Implemented FindWindow().
7104         Rewritten EnableWindow() to behave more like Windows.
7106         * [windows/winpos.c]
7107         Rewritten WindowFromPoint() to also search child windows.
7109 Mon Apr  4 17:36:32 1994  Erik Bos (erik@trashcan.hacktic.nl)
7111         * [include/int21.h] -> [msdos.h]
7112         renamed.
7114         * [miscemu/int10.h] [miscemu/int25.h] [miscemu/int26.h] 
7115         new, added for int 10, 25 and 26.
7117         * [miscemu/ioports.c]
7118         new, added to allow win apps to use ioports.
7120         * [loader/signal.c]
7121         Added support for in, inb, out, outb instructions.
7123 ----------------------------------------------------------------------
7124 Sun Mar 27 13:40:25 1994  Bob Amstadt  (bob@pooh)
7126         * controls/menu.c (InsertMenu): Changed to use FindMenuItem().
7128 Sat Mar 26 21:23:55 1994  Bob Amstadt  (bob@pooh)
7130         * [windows/mdi.c]
7131         Window list properly updated.
7133         * [windows/message.c]
7134         Call WINPOS_ChildActivate() when mouse pressed.
7136         * [windows/nonclient.c]
7137         Use WINPOS_IsAnActiveWindow() instead of GetActiveWindow() in
7138         NC_HandleNCPaint().
7140         * [windows/winpos.c]
7141         Created functions WINPOS_IsAnActiveWindow() and WINPOS_ActivateChild()
7143 Thu Mar 24 14:49:17 1994  Bob Amstadt  (bob@pooh)
7145         * controls/menu.c (DeleteMenu): Changed to use FindMenuItem
7146         (DeleteMenu): Many bug fixes.
7148         * [controls/menu.c]
7149         Created function FindMenuItem().
7151 Thu Mar 24 14:17:24 1994  Bob Amstadt  (bob@pooh)
7153         * [windows/win.c]
7154         Removed incorrect MDI handling code from CreateWindowEx().
7156         * [controls/menu.c]
7157         MF_STRING items needed to allocate a private copy of string.
7159         * [controls/menu.c]
7160         Fixed buggy calls to GlobalFree().
7162         * [memory/global.c]
7163         Eliminated some redundant code with function call.
7165 Wed Mar 23 1994 Pentti Moilanen (pentti.moilanen@ntc.nokia.com)
7167         * [windows/timer.c]
7168         timer list pointers looped in InsertTimer
7170 Tue Mar 29 13:32:08 MET DST 1994  julliard@di.epfl.ch (Alexandre Julliard)
7172         * [misc/cursor.c]
7173         A few changes for desktop window support.
7175         * [misc/main.c]
7176         Added -depth option.
7178         * [misc/rect.c]
7179         Yet another bug fix in SubtractRect().
7181         * [objects/bitmap.c]
7182         Changes to use only one depth (specified with -depth)
7183         for color bitmaps.
7185         * [objects/brush.c]
7186         Added support for dithered solid brushes.
7188         * [objects/color.c]
7189         Use the same 20 system colors as in Windows.
7190         System palette initialisation now done in COLOR_InitPalette().
7191         Added support for a color mapping table to map logical color
7192         indexes to X colormap entries.
7193         Implemented GetNearestColor() and RealizeDefaultPalette().
7195         * [objects/dib.c]
7196         Added support for color mapping table.
7198         * [objects/dither.c]  (New file)
7199         Implemented solid color dithering.
7201         * [objects/palette.c]
7202         Implemented GetSystemPaletteEntries() and SelectPalette().
7204         * [windows/class.c]
7205         Make a copy of the menu name in RegisterClass().
7207         * [windows/dc.c]
7208         Fixed device caps when using a desktop window.
7209         Added support for the color mapping table in DCs.
7211         * [windows/event.c]
7212         Added ConfigureNotify handler on desktop window.
7214         * [windows/message.c]
7215         Removed call to XTranslateCoordinates() on every mouse motion
7216         New function MSG_Synchronize() to synchronize with the X server.
7218         * [windows/syscolor.c]
7219         Rewritten SYSCOLOR_Init() to read the system colors from WIN.INI.
7221         * [windows/winpos.c]
7222         Added synchronization on window mapping. Solves the double redraw
7223         problem when starting Solitaire.
7225 Mar 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7227         * [control/menu.c]      * [windows/defwnd.c]
7228         Make keyboard navigation working with menubar,
7229         but temporarely inserted a bug in menubar mouse handling ... :-((
7230         (it will be fix next week !)
7232         * [windows/defwnd.c]
7233         Connect VK_MENU to menubar navigation.
7235         * [loader/library.c]
7236         GetModuleHandle() return 'fictive 0xF000+ handles' for built-in DLLs.
7238 Sun Mar 20 22:32:13 1994 Erik Bos (erik@trashcan.hacktic.nl)
7240         * [misc/main.c]
7241         Added Copy(). Added a check for `-h' to show usage.
7243         * [misc/dos_fs.c]
7244         Fixed bug in FindFile(), to load directories as dlls.
7246         * [misc/dos_fs.c]
7247         Fixed ToUnix() and ToDos() again, as my previous patch
7248         didn't make it.
7250         * [misc/dos_fs.c] [miscemu/int21.c]
7251         Bug fixes, should be able to handle all winfile and progman int21
7252         requests now except for a few small things.
7254 Tue Mar 29 06:25:54 1994  crw@harris.mlb.semi.harris.com (Carl Williams)
7256         * [memory/heap.c]
7257         Implemented GetFreeSystemResources().
7259 ----------------------------------------------------------------------
7260 Mon Mar 21 17:32:25 1994  Bob Amstadt  (bob@pooh)
7262         * controls/menu.c (GetSubMenu): Function did not return correct value
7264         * [windows/mdi.c]
7265         Beginnings of menu handling.
7267 Thu Mar 10 11:32:06 1994  Stefan (SAM) Muenzel  (muenzel@tat.physik.uni-tuebingen.de)
7269         * [objects/font.c]
7270         if font.width equals zero use asterix instead.
7272 Mon Mar 21 17:23:37 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
7274         * [objects/bitmap.c]
7275         Rewritten bitmap code to use exclusively X pixmaps; *much* faster.
7277         * [objects/brush.c]
7278         Some changes with pattern brushes because of the new bitmap code.
7280         * [objects/color.c]
7281         Added function COLOR_ToPhysical for better color mapping.
7283         * [objects/dib.c]
7284         Heavily optimized SetDIBits().
7286         * [windows/dc.c]
7287         Opimized SetDCState() and DC_SetupGC*() functions.
7288         Added stub for CreateIC().
7290 Mar 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7292         * [misc/message.c]
7293         Call SetFocus() after closing box to give back focus to previous owner.
7295         * [misc/files.c]
7296         Small bug fix in GetTempFilename() : replace a '\' to '\\'.
7298         * [control/scroll.c]
7299         Calls to BitBlt() replace by StretchBlt().
7301         * [control/menu.c]
7302         Call SetFocus() to previous owner after closing Popups. 
7303         Fill stub DeleteMenu().
7305         * [control/listbox.c]
7306         * [control/combo.c]
7307         Use SetFocus() in WM_LBUTTONDOWN.
7308         Close ComboBox List upon WM_KILLFOCUS.
7309         Early development of WM_MEASUREITEM mecanism.
7311         * [windows/defwnd.c]
7312         Early development of WM_MEASUREITEM mecanism.
7314 Tue Mar 22 10:44:57 1994  Miguel de Icaza  (miguel@xochitl)
7316         * [misc/atom.c]
7317         Fixed sintaxis problem when building the library.
7319 ----------------------------------------------------------------------
7320 Tue Mar 15 13:11:56 1994  Bob Amstadt  (bob@pooh)
7322         * [include/windows.h]
7323         Added message types and structures for MDI
7325         * [include/mdi.h]
7326         Created internal structures for handling MDI
7328         * [windows/mdi.c]
7329         Began creating MDI support
7331 Thu Mar 10 16:51:46 1994  Bob Amstadt  (bob@pooh)
7333         * [loader/wine.c] [include/wine.h]
7334         Added new field to "struct w_files" to hold the "name table"
7335         resource for Windows 3.0 programs
7337         * [loader/resource.c]
7338         Added code to handle programs with a "name table" resource.
7339         LoadResourceByName() modified to check for the existence of
7340         this resource.
7342 Mon Mar 14 22:31:42 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
7344         * [objects/color.c]
7345         Added installing the private colormap on the desktop window.
7347         * [windows/event.c]
7348         Cleaned up focus event handling (see focus.c).
7349         Use GetFocus() to direct key events to the correct window.
7351         * [windows/focus.c]
7352         Rewritten SetFocus() to:
7353         - only set X focus on top-level windows
7354         - send WM_SETFOCUS and WM_KILLFOCUS messages (was done in event.c)
7355         - prevent setting focus to disabled windows
7356         - install private colormap so -privatemap option works again
7358         * [windows/message.c] [windows/timer.c]
7359         Changed timer management to no longer use PostMessage(), but
7360         to generate timer messages on the fly. Also fixed a related bug
7361         in GetMessage() which could cause busy-waiting.
7363         * [windows/win.c]
7364         Only select focus events on top-level windows.
7366         * [windows/winpos.c]
7367         Added some sanity checks for desktop window.
7369 Fri Mar  4 20:42:01 1994  Erik Bos (erik@trashcan.hacktic.nl)
7371         * [misc/dos_fs.c]
7372         bug fixes in ToUnix(), WinIniFileName(), GetUnixFileName(). 
7373         Support for tilde symbol added for rootdirectories in [drives]
7374         section of wine's configfile.
7376         * [misc/file.c]
7377         hread(), hwrite() added.
7379         * [misc/main.c]
7380         hmemcpy() added.
7382         * [if1632/stress.spec] [include/stress.h] [misc/stress.c]
7383         Added STRESS.DLL, an useless dll used to stress a windows system.
7385         * [*/*]
7386         Added missing #includes, fixed prototypes for prototype checking.
7388         * [include/prototypes.h]
7390         Added prototypes for loader/*c, if1632/*c.
7392 ----------------------------------------------------------------------
7393 Tue Mar  8 09:54:34 1994  Bob Amstadt  (bob@pooh)
7395         * [Configure]
7396         Added reminder to set WINEPATH, if it is not set.
7398         * [Imakefile]
7399         Removed #elif's
7401         * [controls/button.c]
7402         Added BN_CLICKED notification for owner-draw buttons.
7404         * [if1632/kernel.spec] [memory/heap.c]
7405         Changed Local* functions to WIN16_Local* to prevent unconcious use
7406         of these functions.
7408         * [if1632/relay.c]
7409         Push old Stack16Frame on stack before setting.
7411         * [include/atom.h] [misc/atom.c] [include/heap.h] [memory/local.c]
7412         Added multiple local heap handling in Atom* functions.
7414         * [include/regfunc.h] [miscemu/int21.c]
7415         Rewrote DOS3Call() use context frame that is already on the stack.
7417         * [misc/profile.c]
7418         Fixed to allow leading ";" to mark comments.
7420         * [misc/spy.c]
7421         Fixed bugs and added support for "include" and "exclude" filters.
7423         * [misc/user.c]
7424         Rearranged calls in InitApp().
7426         * [misc/font.c]
7427         Fixed font handling to create system fonts, if they are used.
7429         * [windows/dc.c]
7430         If text drawn on window with no font specified, then default the
7431         font to the system font.
7433 Mon Mar  7 20:32:09 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
7435         * [controls/desktop.c]
7436         Added handling of WM_NCCREATE and WM_ERASEBKGND functions.
7437         Implemented SetDeskPattern().
7439         * [misc/main.c]
7440         Added -desktop option to get a large desktop window with
7441         everything inside it.
7442         Added -name option.
7444         * [misc/rect.c]
7445         Bug fix in SubtractRect().
7447         * [objects/*.c]
7448         Replaced the DefaultRootWindow() macro by the rootWindow variable.
7450         * [windows/event.c] [windows/message.c]
7451           [windows/nonclient.c] [windows/win.c]
7452         A few changes to accomodate the new desktop window.
7454  Tue Mar  8 11:13:03 1994  Miguel de Icaza  (miguel@xochitl.nuclecu.unam.mx)
7456         * [toolkit/arch.c] --New file-- 
7457         Routines for converting little endian data structures to
7458         big-endian data structures, currently only BITMAP structures are 
7459         converted.
7461         * [misc/atom.c]
7462         When used as part of the WineLib, the code is much simpler.
7463         Doesn't depend on alignement.
7465         * [loader/wine.c]
7466         Ifdefed Emulator dependent code if compiling WineLib.
7468         * [loader/resource.c]
7469         Moved misc/resource.c to loader/resource.c.
7471         * [loader/dump.c,ldt.c,ldtlib.c,library,c,selector.c,signal.c]
7472         Ifdefed whole code if compiling WINELIB.
7474         * [include/winsock.h]
7475         Added compilation define to allow compilation on SunOS.
7477         * [include/wine.h]
7478         Removed load_typeinfo and load_nameinfo prototypes, they belong
7479         to neexe.h
7481         * [include/neexe.h]
7482         Added load_typeinfo and load_nameinfo prototypes.
7484         * [include/arch.h]
7485         Fixed some bugs in the conversion routines.
7486         Added macros for Bitmap loading.
7488 Tue Mar  8 12:52:05 1994  crw@maniac.mlb.semi.harris.com (Carl Williams)
7489         
7490         * [if1632/kernel.spec] [memory/global.c]
7491         Implemented GetFreeSpace()
7493         * [if1632/user.spec] [loader/resource.c]
7494         Implemented CreateIcon()
7496 ----------------------------------------------------------------------
7497 Tue Mar  1 11:30:21 1994  Bob Amstadt  (bob@pooh)
7499         * [Configure] [*/Imakefile]
7500         Created configure script to handle different types of Wine builds.
7502         * [Configure] [tools/build.c] [if1632/Imakefile] [Wine.tmpl]
7503         Added ability to compile Wine on systems with 14-char filename limit.
7505         * [if1632/relay.c] [include/options.h] [misc/main.c]
7506         Added -relaydbg option to command line if DEBUG_RELAY is defined.
7508         * [loader/selector.c]
7509         Fixed bug in GetEntryDLLName() that caused Wine to seg fault.
7511         * [memory/heap.c]
7512         Fixed LocalInit() to work correctly.
7514         * [misc/user.c]
7515         Added code to call loaded DLLs' initialization routines.
7517 Tue Mar  1 01:01:17 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
7519         * [windows/dce.c]
7520         Added clipping of child windows by their parent's client area.
7522         * [windows/nonclient.c]
7523         Bug fix in NC_DoNCPaint().
7525         * [windows/painting.c]
7526         Bug fix in RedrawWindow().
7528 Feb 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7530         * [mem/atom.c]
7531         Bug fix again in ATOM_DeleteAtom() : 
7532                 change LocalFree() by USER_HEAP_FREE().
7533         (Previous patch done Feb 13th had been lost)
7535         * [controls/scroll.c]
7536         Move bitmaps loading in AllocScrollBar() instead of in WM_CREATE.
7538         * [windows/class.c] (sorry Alex ...)
7539         There was no bug there "in RegisterClass() : 
7540                 WNDCLASS->lpszClassName was reset to NULL."
7541                               ^^^^^
7543         * [misc/clipboard.c]    --- New File ---
7544         New function EnumClipboardFormats().
7545         New function OpenClipboard().
7546         New function CloseClipboard().
7547         New function EmptyClipboard().
7548         New function GetClipboardOwner().
7549         New function GetClipboardViewer().
7550         New function CountClipboardFormats().
7551         New function IsClipboardFormatAvailable().
7552         New function OpenClipboard().
7553         New function GetClipboardData().
7554         New function SetClipboardViewer().
7555         New function EnumClipboardFormats().
7556         New function RegisterClipboardFormat().
7557         New function ChangeClipboardChain().
7558         New function SetClipboardData().
7559         New function GetOpenClipboardWindow().
7560         New function GetPriorityClipboardFormat().
7561         New function GetClipboardFormatName().
7563 Tue Mar  1 20:15:45 1994  Erik Bos <erik@trashcan.hacktic.nl>
7565         * [misc/comm.c]
7566         bugfix in OpenComm().
7568 ----------------------------------------------------------------------
7569 Tue Feb 22 18:04:02 1994  Jeffrey Hsu <hsu@freefall.cdrom.com>
7571         * [include/winsock.h]
7572         The sockproto struct is already defined in <sys/socket.h>
7574         * [misc/winsock.c]
7575         Need to include <netinet/in.h> for struct in-addr.
7576         Use sys_errlist[] instead of strerror[].
7578         *[toolkit/heap.c]
7579         ANSI C specifies that the malloc functions are defined in stdlib.h,
7580           so we don't need to include malloc.h.
7582         *[loader/ldtlib.c]
7583         Print informative error message about probable cause of i386_set_ldt()
7584           failure and then exit.
7586         *[Imakefile]
7587         For systems that don't use gmake by default, set the MAKE variable
7588           to gmake and propagate it on recursive makes.
7589         Take out -li386 for FreeBSD systems and define __FreeBSD__ so Wine
7590           can be built with the FreeBSD 1.0.2 compiler.
7592 Tue Feb 22 02:52:19 EST 1994    jrichard@cs.uml.edu (John Richardson)
7594         * [objects/bitblt.c]
7595         Added in three functions to do stretching and compression
7596         for WHITEONBLACK, BLACKONWHITE, and color copies.
7598 Tue Feb 22 15:01:31 EST 1994    jrichard@cs.uml.edu (John Richardson)
7600         * [windows/graphics.c]
7601         Added FloodFill and FloodFill_rec.  FloodFill_rec is pretty
7602         inefficent, but should suffice for now.
7604         * [include/windows.h]
7605         Changed the x,y paramaters for the FloodFill prototype 
7606         from ints to shorts
7608 Tue Feb 22 00:58:28 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
7610         * [windows/widgets.c]
7611         Added desktop window class.
7613         * [windows/painting.c]
7614         Bug fix in RedrawWindow().
7615         Implemented ExcludeUpdateRgn().
7617         * [windows/win.c] [windows/winpos.c]
7618         Implemented desktop window.
7620         * [controls/desktop.c]
7621         Preliminary desktop window procedure.
7623 Feb 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7625         * [controls/menu.c]
7626         New function LoadMenuIndirect().
7627         New function GetMenuCheckMarkDimensions().
7629         * [if1632/user.spec]
7630         Entry for DefDlgProc().
7632         * [windows/class.c]
7633         Fix bug in RegisterClass() : 
7634                 WNDCLASS->lpszMenuName was reset to NULL.
7636         * [windows/win.c]
7637         In CreateWindowEx(), if hMenu == 0 then use 
7638                 wndclass->lpszMenuName to load Menu from resource;
7640 Mon Feb 21 22:38:28 1994 Erik Bos (erik@trashcan.hacktic.nl)
7642         * [loader/library.c] [loader/wine.c]
7643         Fixed runing DLL's as main executable problem.
7645         * [misc/dos_fs.c]
7646         Added wildcard support in DOS_readdir().
7648         * [misc/winsocket.c]
7649         Added proper error handling of BSD winsocket functions.
7651         * [miscemu/int21.c]
7652         KERNEL_DOS3Call renamed to DOS3Call and modified to use do_int21().
7654         * [main/main.c]
7655         Added functions for GetVersion, GetWinFlags and GetTimerResolution
7656         for libwine.a, SystemParametersInfo() partly implemented.
7658 Tue Feb 22 19:00:02 1994  Miguel de Icaza  (miguel@xochitl.nuclecu.unam.mx)
7660         * [toolkit/winmain.c]
7661         Added _WinMain function. Setups the library (calls USER_InitApp).
7663         * [toolkit/sup.c]
7664         Added load_mz_header, load_ne_header, load_type_info and
7665         load_name_info functions.
7667         * [toolkit/heap.c] 
7668         Code cleanup. 
7670         * [misc/user.c]
7671         Moved from loader/misc.c. I hope to put back all the loader
7672         functions in the ~loader subdirectory in the future. CUrrently is
7673         needed since it has USER_InitApp.
7675         * [misc/resource.c]
7676         Since WineLib will probably need DLLs (currently it needs
7677         Sysres.dll). WineLib will be using much code of the loader again.
7678         So I removed some ifdefs that were used by WineLib.
7680         Added load_typeinfo and load_nameinfo (and the corresponding
7681         functions in [toolkit/sup.c]
7683         Added integer convertion functions in the needed places.
7685         Added very ugly patch (includes wine.c). In the next release I
7686         plan to move back all the loader routines to ~/loader. In the
7687         meantime I needed this patch. It doesn't affect any of the
7688         emulator code (its ifdefed for WineLib).
7690         * [misc/main.c]
7691         Cleaned up call to WinMain (now uses [toolkit/winmain.c]
7692         Ifdefed argument number checking when compiling the library.
7694         * [loader/wine.c]
7695         Modified to use load_(mz|ne)_header instead of doing a direct
7696         read.  When compiling the emulator it still uses the direct read
7697         for performance. 
7699         * [include/wine.h]
7700         Prototypes for loading routines.
7702         * [include/class.h]
7703         Added WINE_PACKED macro instead of __attribute__ ((packed))
7705         * [include/arch.h]
7706         Macros for converting integers (Little endian to big-endian).
7707         Needed in the Sun to allow loading of DLL files.
7709 ----------------------------------------------------------------------
7710 Mon Feb 14 23:48:09 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
7712         * [windows/clipping.c]
7713         Moved everything into windows/painting.c and removed this file.
7715         * [windows/message.c]
7716         Removed calls to memmove() in MSG_RemoveMsg().
7718         * [windows/nonclient.c]
7719         Added WM_GETMINMAXINFO support for window resizing.
7721         * [windows/painting.c]
7722         Implemented RedrawWindow().
7724         * [windows/scroll.c]
7725         Bug fix in ScrollWindowEx().
7727         * [windows/win.c]
7728         Moved UpdateWindow() to windows/painting.c.
7730 Fri Feb 11 12:41:28 1994  Erik Bos (erik@trashcan.hacktic.nl)
7731         
7732         * [loader/wine.c] [misc/dos_fs.c]
7733         getenv() eq NULL bugfixes.
7735         * [misc/comm.c]
7736         cfmakeraw changed for SunOS.
7738 Feb 13, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7740         * [mem/atom.c]
7741         Bug fix in ATOM_DeleteAtom() : 
7742                 change LocalFree() by USER_HEAP_FREE().
7744         * [misc/message.c]
7745         New function FatalAppExit().
7747         * [objects/font.c]
7748         New empty stub SetMapperFlags().
7750         * [controls/menu.c]
7751         Better CheckMark & other bitmaps placement.
7753         * [windows/graphics.c]
7754         New function RoundRect() : calc.exe now working...
7756 Tue Feb 15 14:29:37 1994  John Richardson
7758         * [objects/bitblt.c]
7759         Fixed StretchBlt so it works quicker and faster.  It still doesn't
7760         use the StretchMode bits for bitmap compression, but that will
7761         come soon.
7763 Mon Feb 14 13:21:04 1994  Miguel de Icaza  (miguel@roxanne.nuclecu.unam.mx)
7765         * [include/windows.h,dialog.h,gdi.h]
7766         Changed __atribute__ ((packed)) for WINE_PACKED. 
7767         When compiling the library this is defined as nothing. This gets
7768         rid with all the problems compiling under SunOS. Also 
7770         * [windows/utility.c]
7771         Added DebugPrintString.
7773         * [toolkit/sup.c]
7774         Added hSysRes = 1 definition to resolve externals.
7775         Added CallLineDDAProc function (toolkit version).
7776         Added toy, and hi ineficient memmove until code in message.c get
7777         rewritten.
7779         * [objects/gdiobj.c]
7780         Ifdefed linux/emulator-dependent code to allow compilation of
7781         WineLib.
7783         * [misc/winsocket.c]
7784         Added ifdef to allow compilation under SunOS.
7786         * [misc/resource.c]
7787         When compiling the library, the resource file is expected to be in
7788         a file called $argv[0].Res. Also the information of the resource
7789         is expected to be at offset 0 of the .Res file.
7791         * [misc/main.c]
7792         Call WinMain with arguments if compiling WineLib.
7793         Call shutdown functions (Comm_DeInit, DOS_DeInitFS).
7794         Call sync_profiles to preserve changes to .INI files.
7796         * [misc/comm.c,dos_fs.c]
7797         removed call to atexit(Comm_DeInit)
7798         removed call to atexit(DOS_DeInitFS)
7799         Shutdown functions are now called from the return of WinMain
7801         * removed memorylib subdirectory
7803         * moved memory/atom.c    to misc/atom.c
7804           moved memorylib/heap.c to toolkit/heap.c
7806         * [loader/wine.c]
7807         Moved DebugPrintString to windows/utility.c
7809         * [include/winsock.h]
7810         Define SO_DONTLINGER only if it has not been previously defined.
7812         * [include/windows.h]
7813         added definition for DLGPROC.
7814         added definition for LMEM_WINE_ALIGN and other LMEM_* constants.
7815         When compiling WineLib WNDPROC is defined with all the parameters
7816         to avoid compilation problems.
7818         * [include/user.h]
7819         When compiling WineLib USER_HEAP_(ALLOC|REALLOC|ADDR|FREE) the
7820         calls are translated to the library allocation routines.
7822         * [include/gdi.h,user.h]
7823         When compiling WineLib GDI_HEAP_(ALLOC|ADDR|FREE) the calls are
7824         translated to the library allocation routines.
7826         * [include/atom.h]
7827         Defined LocalAlign. When compiling the emulator it's translated as
7828         a call to LocalAlloc (the original code), when compiling WineLib
7829         as a call to LocalAlloc with a WINE-flag called LMEM_WINE_ALIGN
7830         (atom.c needs aligned data on a 4 byte boundary).
7832         * [misc/file.c]
7833         Renamed KERNEL_* functions and fixed prototypes.
7835         * [if1632/kernel.spec]
7836         Renamed KERNEL_* functions in order to be used by applications
7837         using Wine as a library (OpeFile, _lclose, _lread, _lcreate,
7838         _llseek, _lopen, _lwrite).
7840         * [Makefile]
7841         Create library instead of executable when building target
7842         libwine.a 
7844 ----------------------------------------------------------------------
7845 Tue Feb  8 13:52:11 1994  Miguel de Icaza  (miguel@roxanne)
7847         * [Makefiles]
7848         Use $(CC) instead of cc.
7849         Added libwine target.
7851         * [include/prototypes]
7852         #ifdefed section for WineLib
7854         * moved loader/cursor.c   to misc/cursor.c
7855           moved loader/resource.c to misc/resource.c
7856           moved misc/emulate.c    to miscemu/emulate.c
7857           moved misc/int1a.c      to miscemu/int1a.c
7858           moved misc/int21.c      to miscemu/int21.c
7859           moved misc/kernel.c     to miscemu/kernel.c
7860           moved misc/user.c       to miscemu/user.c
7862         * [memorylib/heap.c]
7863         Heap management for WineLib
7865         * [misc/comm.c]
7866         Modified to allow compilation under SunOS (#include errno, SunOS
7867         doesn't have atexit ()).
7869         * [misc/dos_fs.c]
7870         Modified to allow compilation under SunOS (#include vfs.h)
7872         * [misc/file.c]
7873         Modified to allow compilation under SunOS (OPEN_MAX constant,
7874         #include unistd.h)
7876         * [objects/palette.c]
7877         Modified to allow compilation under SunOS (#include limits)
7879         * [toolkit/sup.c]
7880         WineLib version of CallWindowProc.
7882         * [windows/event.c]
7883         Typedef XPointer under X11R4 (OpenWindows).
7885         * [windows/win.c]
7886         When compiling WineLib, use direct callbacks instead of the
7887         windows supplied callbacks.
7889 Mon Feb  7 22:37:34 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
7891         * [loader/cursor.c]
7892         New function CURSOR_SetWinCursor(), for internal use, to set
7893         the cursor of a specific window more reliably than with SetCursor().
7895         * [windows/nonclient.c]
7896         Better window management. Moving and resizing from the system
7897         menu should work now.
7898         Added scroll-bar mouse tracking.
7900         * [windows/win.c]
7901         Moved scroll-bar creation and destruction to defwnd.c.
7903 Feb 5, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7905         * [windows/nonclient.c]
7906         Call to StdDrawMenuBar() during NC's drawing.
7907         New NC_TrackMouseMenuBar() function which call 
7908                 MenuButtonDown(), MenuButtonUp() & MenuMouseMove().
7910         * [controls/menu.c]
7911         New ChangeMenu() function.
7912         Remove permanently old Xt menu code.
7913         Make common functions MenuButtonDown(), MenuButtonUp()
7914                 & MenuMouseMove() for both popups & menubar.
7915         
7916         * [controls/combo.c]
7917         Paint OBM_COMBO directly in combo client.
7919         * [controls/listbox.c]
7920         Fix bug in multicolumns calculations.
7922         * [controls/Makefile]
7923         Remove rules for old file 'caption.c'.
7925         * [misc/kernel.c]
7926         Remove empty stub GetModuleFileName().
7928         * [loader/library.c]
7929         New GetModuleHandle() function.
7930         New GetModuleUsage() function.
7931         New GetModuleFileName() function.
7933         * [loader/resource.c]
7934         Try to find the bug a missing menu loading ... Not found yet !
7936         * [windows/win.c]
7937         Remove old menubar creation.
7939 Thu Feb  3 22:30:11 1994  Erik Bos (erik@trashcan.hacktic.nl)
7941         * [misc/winsocket.c]
7942         More functions added.
7944         * [if1632/winsock.spec] [misc/winsocket.c]
7945         Added John Brezak's winsock.dll stuff.
7947 ----------------------------------------------------------------------
7948 Tue Feb  1 21:14:47 1994  Bob Amstadt  (bob@pooh)
7950         * [loader/selector.c]
7951         Added function CreateNewSegments().  Modified IPCCopySelector
7952         to allow aliasing to any arbitrary memory space.
7954         * [memory/global.c]
7955         Fixed potential bug in GlobalGetFreeSegments().
7957         * [memory/linear.c]
7958         Created functions GlobalLinearLock() and GlobalLinearUnlock().
7960 Tue Feb  1 05:51:43 1994  julliard@di.epfl.ch (Alexandre Julliard)
7962         * [controls/widgets.c]
7963         Removed CAPTION window class.
7965         * [loader/cursor.c]
7966         Bug fix in LoadCursor(): don't allocate memory every time for
7967         built-in cursors.
7969         * [windows/clipping.c]
7970         Invalidate child windows in InvalidateRgn().
7972         * [windows/defwnd.c]
7973         Added repaint of the caption when changing window text.
7975         * [windows/event.c]
7976         Modified SetCapture() to allow keyboard events while capturing.
7978         * [windows/message.c]
7979         New function MSG_GetHardwareMessage(), to do mouse tracking
7980         without returning control to the Windows program.
7982         * [windows/nonclient.c]
7983         A couple of changes in frame drawing for DLGMODALFRAME windows.
7984         Rewritten window moving code, to use MSG_GetHardwareMessage()
7985         instead of non-client mouse events (this is the way Windows
7986         does it), and to send WM_ENTERSIZEMOVE messages.
7987         Removed WM_NCBUTTONUP and WM_NCMOUSEMOVE handlers.
7989         * [windows/win.c]
7990         Allocate temporary structures on the USER heap instead of
7991         using GlobalAlloc().
7993         * [windows/winpos.c]
7994         Added function WINPOS_GetMinMaxInfo() to get sizing informations.
7996 Jan 31, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7998         * [windows/nonclient.c]
7999         Call to StdDrawScrollBar() during NC's drawing.
8000         Call to NC_ScrollBarButtonDown() on NC mouse events WM_LBUTTONDOWN.
8001         Call to NC_ScrollBarButtonUp() on NC mouse events WM_LBUTTONUP.
8002         Call to NC_ScrollBarMouseMove() on NC mouse events WM_MOUSEMOVE.
8004         * [controls/menu.c]
8005         New GetSubMenu() function.
8006         Move GetMenu() & SetMenu() functions from 'windows/win.c'.
8008         * [controls/listbox.c]
8009         Start changes to satisfy recent changes in scrollbars/windows.
8011         * [loader/resource.c]
8012         Put some code in LoadAccelerators() stub.
8013         New TranslateAccelerator() function.
8015         * [windows/win.c]
8016         Remove GetMenu() & SetMenu() functions.
8017         Call to NC_CreateScrollBars() if required by CreateWindow().
8019 ----------------------------------------------------------------------
8020 Mon Jan 24 10:40:10 EST 1994 John Richardson (jrichard@cs.uml.edu)
8022         * [window/win.c]
8023         Added functions EnumWindows, EnumChildWindows, and helper
8024         WIN_EnumChildWin.  EnumWindows won't list all wine windows
8025         because GetDesktopWindow isn't complete.  However, the code
8026         is in place for it to work correctly and only needs 
8027         GetDesktopWindow to do so.  
8029 Tue Jan 25 05:51:47 1994  julliard@di.epfl.ch (Alexandre Julliard)
8031         * [windows/defwnd.c]
8032         Added handling of activation messages (WM_ACTIVATE,
8033         WM_NCACTIVATE, WM_MOUSEACTIVATE)
8035         * [windows/event.c]
8036         De-activate the window when losing input focus.
8038         * [windows/focus.c]
8039         Bug fix in SetFocus().
8041         * [windows/message.c]
8042         Added activation of the window on mouse-clicks.
8044         * [windows/nonclient.c]
8045         Changed non-client area painting to use the correct colors
8046         depending upon the activation state.
8047         Added WM_NCACTIVATE message handling.
8048         Fixed a couple of bugs in window moving and resizing.
8050         * [windows/winpos.c]
8051         Implemented Get/SetActiveWindow().
8052         Implemented SWP_NOACTIVATE flag in SetWindowPos().
8054 Jan 17, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8056         * [misc/message.c]
8057         MessageBox has a CaptionBar for his title except for
8058                 MB_SYSTEMMODAL with MB_ICONHAND.
8060         * [windows/nonclient.c]
8061         Call to NC_TrackSysMenu on SysMenu button mouse click.
8063         * [windows/defwnd.c]
8064         Call to NC_TrackSysMenu on Alt key (VK_MENU).
8066         * [controls/menu.c]
8067         New GetSystemMenu() function.
8068         New CopySystemMenu() internal function.
8069         New NC_TrackSysMenu() internal function.
8071         * [include/windows.h]
8072         New WM_INITMENU, WM_INITMENUPOPUP, WM_MENUSELECT & WM_MENUCHAR defines.
8074 ----------------------------------------------------------------------
8075 Thu Jan 13 11:45:13 1994  John Richardson <jrichard@cs.uml.edu>
8077         * [window/win.c]
8078         Added functions EnableWindow, IsWindowEnabled, and helper 
8079         WIN_SetSensitive.
8080         
8081         * [window/event.c]
8082         Added checks for WS_DISABLED windows in EVENT_key, EVENT_MotionNotify,
8083         EVENT_ButtonPress, EVENT_ButtonRelease, EVENT_ConfigureNotify,
8084         EVENT_FocusIn, EVENT_FocusOut, and EVENT_EnterNotify.  Key and 
8085         button presses beep for a disabled window.  
8086         If anyone finds better places for these checks, please tell me.
8088 Jan 17, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8090         * [misc/message.c]
8091         Cleanup on buttons answer value returned.
8093         * [control/combo.c]
8094         Now use OBM_COMBO bitmap dropdown button.
8096 Mon Jan 17 21:56:45 1994  Erik Bos (erik@trashcan.hacktic.nl)
8098         * [misc/comm/c]
8099         A few bugfixes.
8101 Tue Jan 18 06:36:48 1994  julliard@di.epfl.ch (Alexandre Julliard)
8103         * [loader/cursor.c]
8104         Added X cursor for IDC_SIZENS and IDC_SIZEWE.
8106         * [include/options.h] [misc/main.c]  (New files)
8107         Rewrote main() function to get rid of Xt application context,
8108         and added command-line option parsing.
8110         * [objects/color.c]
8111         Use of a private map now configurable with command-line option.
8113         * [windows/defwnd.c]
8114         Added WM_SYSCOMMAND handling, and better WM_SETCURSOR handling.
8116         * [windows/event.c]
8117         Removed ConfigureNotify event handler (no longer needed).
8119         * [windows/message.c]
8120         Send WM_SETCURSOR message on mouse events.
8122         * [windows/nonclient.c]
8123         Use OEM bitmaps for the drawing of the non-client area.
8124         Added caption bar buttons handling, and moving and resizing of
8125         the window via the window frame (bypassing the window manager).
8127         * [windows/painting.c]
8128         Bug fix in BeginPaint().
8130         * [windows/win.c]
8131         Set the override_redirect flag for windows (to bypass window
8132         manager).
8134         * [windows/winpos.c]
8135         Implemented WindowFromPoint(), ChildWindowFromPoint(),
8136         BringWindowToTop(), Get/SetInternalWindowPos(),
8137         Get/SetWindowPlacement().
8139 Mon Jan 17 20:48:24 1994  Bob Amstadt  (bob@pooh)
8141         * [memory/heap.c]
8142         Added support for multiple local heaps.
8144 ----------------------------------------------------------------------
8145 Tue Jan  4 13:01:33 1994  David Metcalfe <david@prism.demon.co.uk>
8147         * [window/caret.c]
8148         Modified code to use system timer.
8150 Jan 9, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8152         * [windows/win.c]
8153         Windows create if required new XLIB MenuBar & CaptionBar.
8155         * [windows/defwnd.c]
8156         WM_CALCSIZE Move & Resize caption, menubar & scrollbars.
8157         (I'm not sure it's the good place for it, but it work...)
8159         * [loader/resource.c]
8160         optimize in FindResourceByNumber, make lseek() if next type ...
8162         * [controls/scroll.c]
8163         scrollbar buttons are now using system resources bitmaps.
8165         * [controls/caption.c] - new file ...
8166         captionbar showing title, close button with SysMenu,
8167         and other buttons using system resources bitmaps.
8169         * [controls/menu.c]
8170         New functions: SetMenuItemBitmaps() with 'glues',
8171         Make new version of LoadMenu() & ParseMenu(),
8172         ( put #define USE_POPUPMENU ).
8173         Implementation of MenuBar functions.
8174         
8175         * [sysres.dll]
8176         New bitmaps for system such OBM_CLOSE, OBM_MINIMIZE, OBM_UPARROWI.
8177         New SYSMENU menu, it don't work yet ! :-((
8179 Tue Jan 11 05:27:45 1994  julliard@di.epfl.ch (Alexandre Julliard
8181         * [memory/atom.c]
8182         Fixed a bug that could cause atoms to be case-sensitive.
8184         * [misc/rect.c]
8185         Bug fix in SubtractRect().
8187         * [objects/clipping.c]
8188         Bug fix when setting the clip mask to an empty region.
8190         * [windows/dce.c]
8191         Bug fix in ReleaseDC().
8193         * [windows/dialog.c]
8194         Call AdjustWindowRectEx() before creating the dialog window.
8195         Added support for DS_MODALFRAME style.
8197         * [windows/event.c]
8198         Cleaned up event handling and removed old Xt stuff.
8199         Moved double-click handling to windows/message.c
8201         * [windows/focus.c]
8202         Bug fix: only set the X focus when the window is viewable.
8204         * [windows/graphics.c]
8205         Rewritten DrawReliefRect() to use brush instead of pen, and
8206         to use the system colors.
8208         * [windows/message.c]
8209         Implemented WM_NCHITTEST message sending, and non-client
8210         mouse messages.
8211         Cleaned up double-click handling, and removed the Xt code.
8213         * [windows/nonclient.c]  (New file)
8214         Implemented AdjustWindowRect().
8215         Implemented WM_NCCALCSIZE, WM_NCHITTEST and WM_NCPAINT handling.
8217         * [windows/painting.c]
8218         Added sending of the WM_NCPAINT message in BeginPaint().
8220         * [windows/sysmetrics.c] [include/sysmetrics.h]  (New files)
8221         Implemented system metrics.
8223         * [windows/win.c]
8224         Bug fix in setting the parent and owner in CreateWindow().
8225         Removed the Xt code.
8227         * [windows/winpos.c]
8228         Added sending of the WM_NCPAINT message in SetWindowPos().
8229         Removed the Xt code.
8231 Sun Jan  2 12:38:53 1994  David Metcalfe <david@prism.demon.co.uk>
8233         * [windows/class.c]
8234         Implemented GetClassName and GetClassInfo.
8236         * [windows/caret.c]
8237         Various improvements to text caret code.
8239 Fri Dec 31 15:22:22 1993  John Brezak <brezak@apollo.hp.com>
8241         * [misc/comm.c]
8242         Patches to work with NetBSD.
8244 Thu Dec 30 12:11:55 1993  John Richardson <jrichard@cs.uml.edu>
8246         * [objects/bitblt.c] Added StretchBlt().
8248 Tue Jan  4 05:22:07 1994  julliard@di.epfl.ch (Alexandre Julliard)
8250         * [misc/user.c]
8251         Added creation of system message queue.
8253         * [objects/bitmap.c] [objects/dcvalues.c] [windows/dc.c]
8254         Added DC size fields into DC structure.         
8256         * [objects/clipping.c]
8257         Bug fix in CLIPPING_IntersectRect().
8259         * [windows/class.c]
8260         Allocate a DCE instead of a DC for CS_CLASSDC classes.
8262         * [windows/clipping.c]
8263         Fixed GetUpdateRect() and GetUpdateRgn() to clip to the client area.
8265         * [windows/dce.c]
8266         Implemented GetDCEx() and GetWindowDC().
8268         * [windows/defwnd.c]
8269         Implemented WM_WINDOWPOSCHANGED handling.
8271         * [windows/event.c]
8272         Preliminary support for Xlib event handling instead of Xt callbacks.
8273         Changed MSG_AddMsg() calls to hardware_event() or PostMessage().
8275         * [windows/message.c]
8276         Preliminary support for multiple message queues.
8277         Implemented hardware_event() to store messages into the system queue.
8278         Implemented Get/SetTaskQueue().
8279         Better WM_PAINT and WM_TIMER handling.
8280         Changes to use Xlib instead of Xt for events.
8282         * [windows/painting.c]
8283         Use GetDCEx() to retrieve the DC, to get a correct visible region.
8285         * [windows/timer.c]
8286         Moved the timer procedure callback into DispatchMessage().
8287         Changed implementation to get rid of Xt timeouts.  Timer checking
8288         is now done inside GetMessage().
8290         * [windows/win.c]
8291         Allocate a DCE instead of a DC for CS_OWNDC windows.
8292         Replaced Xt calls with Xlib calls.
8293         Moved window positioning functions into windows/winpos.c
8295         * [windows/winpos.c]  (New file)
8296         Rewritten most of the window positioning functions.
8297         Implemented SetWindowPos() and MapWindowPoints().
8299 Jan 3, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8301         * [if1632/user.spec]
8302         Bad arguments description for function SetDlgItemText.
8304         * [objects/text.c]
8305         Function DrawText now handle DT_CALCRECT request.
8307         * [misc/message.c]
8308         Message boxes now use DrawText with DT_CALCRECT.
8310         * [windows/graphics.c]
8311         Bug fix in function FrameRect, (it was using PEN instead of BRUSH).
8313         * [windows/win.c]
8314         Bug fix for flags in function ShowWindow.
8315         More accurate WM_SIZE generated by function ShowWindow.
8317         * [controls/listbox.c]
8318         More code for LBS_MULTIPLESEL.
8319         More code for LBS_MULTICOLUMN.
8321         * [include/windows.h]
8322         Bad define for MF_SEPARATOR.
8324         * [controls/menu.c]
8325         New functions: PopMenuWndProc() with 'glues',
8326         CreatePopupMenu(), AppendMenu(), InsertMenu(), RemoveMenu(), 
8327         DeleteMenu(), ModifyMenu(), TrackPopupMenu().
8328         Code in stubs: CreateMenu(), DestroyMenu(). 
8330 Sat Jan  1 10:22:43 1994  Bob Amstadt  (bob@pooh)
8332         * loader/wine.c: Added support for relocation types 5 and 6.
8334 Mon Dec 27 11:06:03 1993  Erik Bos (erik@trashcan.hacktic.nl)
8336         * [misc/comm.c]
8337         new functions: BuildCommDCB(), OpenComm(), CloseComm(),
8338         SetCommBreak(), ClearCommBreak(), EscapeCommFunction(), FlushComm(),
8339         GetCommError(), SetCommEventMask(), GetCommEventMask(),
8340         SetCommState(), GetCommState(), TransmitCommChar(), ReadComm(), 
8341         WriteComm().
8343 Wed Dec 22 13:00:15 1993  David Metcalfe <david@prism.demon.co.uk>
8345         * [windows/caret.c]
8346         Implemented text caret functions.
8348 Tue Dec 21 06:13:58 1993  julliard@di.epfl.ch (Alexandre Julliard)
8350         * [loader/wine.c]
8351         Bug fix in LoadImage().
8353         * [objects/bitblt.c] [objects/clipping.c] [objects/text.c]
8354           [windows/dc.c] [windows/dce.c] [windows/graphics.c]
8355         Modified graphics calls to take into account the DC origin.
8357         * [windows/defwnd.c]
8358         Added preliminary WM_NCCALCSIZE handling.
8360         * [windows/event.c]
8361         Send WM_NCCALCSIZE message on resize event.
8363         * [windows/win.c]
8364         Send WM_NCCALCSIZE message in CreateWindow().
8365         Realize widgets at creation time (should prevent problems with
8366         unrealized widgets).
8368 Dec 19, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8370         * [controls/static.c]
8371         Send mouse & keyboard message received to its parent.
8373         * [controls/scroll.c]
8374         Send keyboard message received to its parent.
8376         * [controls/listbox.c]
8377         Add Navigation keys .
8378         ListBox now use VSCROLL & HSCROLL instead of children.
8379         Alpha version of LBS_MULTIPLESEL.
8380         Alpha version of LBS_MULTICOLUMN.
8382         * [controls/combo.c]
8383         Add Navigation keys on closed ComboBox.
8384         Remove useless 'COMBOBOX_CreateComboBox' function.
8386 Mon Dec 19 20:39:34 1993  Erik Bos (erik@trashcan.hacktic.nl)
8388         * [loader/wine.
8389         LoadImage() modified to use FindFile().
8391         * [misc/file.c]
8392         SetErrorMode added
8394         * [misc/dos_fs.c]
8395         bug fixes.
8397 Dec 13, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8399         * [memory/global.c]
8400         bug fix in GlobalGetFreeSegment : good ptr in 'g_prev'.
8402         * [sysres.dll]
8403         preliminary version of a 'glass of wine' bitmap
8405         * [windows/event.c]
8406         New function 'GetCapture'.
8408         * [controls/scroll.c]
8409         Remove useless 'SCROLLBAR_CreateScrollBar' function.
8411         * [controls/listbox.c]
8412         Remove useless 'LISTBOX_CreateListBox' function.
8414 Mon Dec 13 13:51:00 1993  David Metcalfe <david@prism.demon.co.uk>
8416         * [objects/font.c]
8417         Corrected bugs in GetCharWidth().
8419         * [windows/event.c]
8420         Modified EVENT_key to send Windows virtual key codes for
8421         WM_KEYDOWN and WM_KEYUP messages, and a WM_CHAR message
8422         for printable characters.
8424 Wed Dec 08 19:20:00 1993  Karl Guenter Wuensch (hn324wu@unidui.uni-duisburg.de)
8426         * [windows/graphics.c]
8427         Added Polyline and Polygon
8429 Mon Dec 13 14:51:54 1993  Erik Bos (erik@trashcan.hacktic.nl)
8431         * [controls/listbox.c]
8432         ListBoxDirectory() modified to use dos_fs.c's functions to
8433         access files&|drives.
8435 Sat Dec 04 17:04:23 1993  Erik Bos (erik@trashcan.hacktic.nl)
8437         * [misc/dos_fs.c]
8438         Added FindFile() to search a file in a dos/unix style path.
8439         
8440         * [misc/file.c]
8441         New Win31 functions: OpenFile, _lcreate, _llseek, GetTempDrive,
8442         GetTempFileName, GetWindowsDirectory, GetSystemDirectory,
8443         GetDriveType.                      
8445         * [misc/int21.c]
8446         Modified.
8448 Wed Dec  1 16:20:45 1993  Miguel de Icaza  (miguel@roxanne.nuclecu.unam.mx)
8450         * [misc/profile.c]
8451         The Profile functions now return the correct values. They now
8452         implement all the features described in the SDK.
8454 Tue Nov 30 13:55:27 1993  Bob Amstadt  (bob at amscons)
8456         * [loader/selector.c]
8457         Rewrote selector aliasing routines to use System V IPC
8458         routine to alias memory segments.
8460 Nov 28, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8462         * [controls/listbox.c]
8463         More consistency in functions using wIndexes
8465         * [controls/scroll.c]
8466         New function : ShowScrollBar().
8468         * [loader/cursor.c] ... New file
8469         Move cursor functions from [loader/resource.c].
8470         New function : ClipCursor().
8471         New function : GetClipCursor().
8472         New function : CreateCursor().
8473         SetCursor() now working using gloabal variable 'winHasCursor'.
8475         *[object/palette.c]
8476         New stub only : SelectPalette().
8477         New stub only : RealizePalette().
8479         *[win/event.c]
8480         New function : EVENT_enter_notify(),
8481                 update 'winHasCursor' and send WM_SETCURSOR.
8483         *[win/defwnd.c]
8484         Add processing of WM_SETCURSOR message.
8486         *[win/win.c]
8487         New members in WND structure : hCursor, hWndVScroll & hWndHScroll. 
8488         CreateWindowEx() now create children for WM_HSCROLL & WM_VSCROLL.
8489         New function ClientToScreen().
8490         New function ScreenToClient().
8492 Mon Nov 25 18:25:40 1993  Erik Bos (erik@trashcan.hacktic.nl)
8494         * [files.h / regfunc.h / misc/dos.c]
8495         Removed.
8497         * [misc/dos_fs.c]
8498         Added support for loading dosdrive cfg from wine.ini.
8500         * [misc/int21.c]
8501         Modified.
8504 Wed Nov 24 11:37:33 1993  julliard@disuns2.epfl.ch (Alexandre Julliard)
8506         * [include/atom.h] [memory/atom.c]
8507         Implemented atoms.
8509         * [windows/class.c]
8510         Modified RegisterClass() to use atoms.
8511         Implemented CS_GLOBALCLASS style.
8513         * [windows/message.c]
8514         Implemented RegisterWindowMessage().
8516         * [loader/resource.c]
8517         Bug fix in LoadResource().
8519         * [windows/dialog.c]
8520         Modified CreateDialogParam() to use Find/LoadResource().
8522 Mon Nov 22 13:58:56 1993  David Metcalfe <david@prism.demon.co.uk>
8524         * [windows/scroll.c]
8525         Preliminary implementations of ScrollWindow, ScrollDC and
8526         ScrollWindowEx.
8528 Nov 21, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8530         * [controls/listbox.c]
8531         Optimization of redraw during 'Add' or 'Insert'.
8533         * [controls/scroll.c]
8534         Optimization of WM_PAINT during 'thumbtracking'.
8536         * [controls/button.c]
8537         Add of beta implement of 'BS_OWNERDRAW'
8539         * [controls/static.c]
8540         Style 'SS_ICON' new supported.
8542         * [misc/message.c]
8543         Begin of implemantation of MB_XXX styles.
8545         * [loader/resource.c]
8546         Function LoadIcon() : now prepare transparency Bitmap mask.
8547         Function LoadCursor() : now prepare a 'X pixmapcursor'.
8548         New function SetCursor() : not finished.
8549         New function ShowCursor() : not finished.
8550         New function AccessResource() : stub.
8552         * [obj/dib.c]
8553         Function DrawIcon(): deugging phase of icon transparency mask.
8555         * [loader/library.c]
8556         new file for news functions LoadLibrary() & FreeLibrary().
8558         * [sysres.dll]
8559         Resources only 16bits DLL for System Resources, icons, etc...
8561 Sun Nov 14 14:39:06 1993  julliard@di.epfl.ch (Alexandre Julliard)
8563         * [include/dialog.h] [windows/dialog.c]
8564         Simplified dialog template parsing.
8565         Implemented DialogBoxIndirect().
8567         * [windows/win.c]
8568         Fixed bug in CreateWindow() when aborting window creation.
8569         Modified UpdateWindow() to only update visible windows.
8570         Implemented IsWindow().
8572 Nov 14, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8574         * [controls/listbox.c]
8575         Listbox control window : new messages.
8577         * [controls/combo.c]
8578         Combo box control window : new messages.
8580         * [misc/message.c]
8581         Moved stub MessageBox() to this new file.
8582         Implemented of a callback, now MessageBox show a window.
8584         * [loader/resource.c]
8585         New function DestroyIcon()
8586         New function DestroyCursor()
8587         Filled stub LoadIcon()
8588         Filled stub LoadCursor()
8589         Bug fixed in FindResourceByName() : missing lseek().
8591         * [obj/dib.c]
8592         New function DrawIcon()
8594         * [windows/win.c]
8595         New function CloseWindow()
8596         New function OpenIcon()
8597         New function IsIconic()
8598         New Function FindWindow()
8600 Sun Nov 14 08:27:19 1993  Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de)
8602         * [loader/selector.c]
8603         Wrote AllocCStoDSAlias() and AllocDStoCSAlias()
8605 Sun Nov 14 08:27:19 1993  Bob Amstadt  (bob at amscons)
8607         * [loader/selector.c]
8608         Wrote AllocSelector() and PrestoChangoSelector().  YUK!
8610 Sat Nov 13 13:56:42 1993  Bob Amstadt  (bob at amscons)
8612         * [loader/resource.c]
8613         Wrote FindResource(), LoadResource(), LockResource(),
8614         and FreeResource()
8616         * [include/segmem.h] [loader/selector.c] [loader/signal.h]
8617         Changed selector allocation method.
8619 Sun Nov 10 08:27:19 1993  Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de)
8621         * [if1632/callback.c if1632/call.S if1632/user.spec] 
8622         added Catch (KERNEL.55) and Throw (KERNEL.56)
8623         
8624 Nov 7, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8626         * [controls/scroll.c]
8627         Scroll bar control window
8628                 Bug resolved : Painting message before scroll visible.
8630         * [controls/listbox.c]
8631         Listbox control window
8632                 Destroy cleanup.
8634         * [controls/combo.c]
8635         Combo box control window
8636                 Destroy cleanup.
8638         * [controls/button.c]
8639                 GetCheck Message now return is state.
8641         * [windows/win.c]
8642         New function IsWindowVisible()
8644 Mon Nov  1 14:40:21 1993  julliard@di.epfl.ch (Alexandre Julliard)
8646         * [if1632/user.spec]
8647         Removed some duplicate entries.
8649         * [include/dialog.h] [windows/dialog.c]
8650         Implemented dialog units and fonts.
8651         Added preliminary loading of dialog resources.
8652         Preliminary implementation of DialogBox().
8653         Implemented Get/SetDlgItem* functions.
8655         * [windows/win.c]
8656         Implemented WM_PARENTNOTIFY message.
8657         Implemented CreateWindowEx() and GetWindow().
8658         Completed DestroyWindow().
8660 Mon Nov  1 18:19:34 1993  Erik Bos
8662         * [loader/signal.c]
8663         Added support for int 0x11 & 0x12.
8665         * [loader/int21.c]
8666         Improved function handling.
8668 Sun Oct 31 12:38:09 1993  David Metcalfe <david@prism.demon.co.uk>
8670         * [objects/font.c]
8671         Implemented GetCharWidth().
8673 Wed Oct 27 09:56:06 1993  John Brezak <brezak@ch.hp.com>
8675         * [Makefile]
8676         Use GNU malloc.
8678         * [include/int21.h include/wine.h]
8679         Change sc_eflags to sc_efl .
8681         * [include/wine.h]
8682         Fix misplaced #endif
8683         Include <signal.h> for NetBSD
8685         * [loader/int21.c]
8686         Don't include <sys/vfs.h> in NetBSD
8687         Do include <sys/mount.h> in NetBSD
8688         Cleanup some lint.
8690 Mon Oct 26 17:59:01 1993  Erik Bos
8692         * [include/int21.h]
8693         Added.
8695         * [loader/int21.c]
8696         Added support for many dos ints.
8698         * [misc/file.c] [include/files.h]
8699         Moved OPEN_MAX and DosDriveStruct to files.h.
8701 Sun Oct 24 13:36:50 1993  David Metcalfe <david@prism.demon.co.uk>
8703         * [controls/button.c]
8704         Implemented CHECKBOX, AUTOCHECKBOX, 3STATE, AUTO3STATE,
8705         RADIOBUTTON, AUTORADIOBUTTON, GROUPBOX controls, together with
8706         a preliminary USERBUTTON control.
8708         * [objects/text.c]
8709         Corrected bugs in TEXT_NextLine() and added handling of prefix
8710         character.
8712         * [controls/button.c]
8713         Disabled focus handling by commenting out SetFocus() calls until
8714         serious bug can be found.
8716 Oct  20, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8718         * [controls/listbox.c]
8719         Listbox control window
8720                 Painting cleanup, new messages processed.
8722         * [controls/scroll.c]
8723         Scroll bar control window
8724                 Painting cleanup.
8726         * [controls/combo.c]
8727         Combo box control window
8728                 Painting cleanup.
8730 Tue Oct 12 17:50:11 1993  julliard@di.epfl.ch (Alexandre Julliard)
8732         * [objects/color.c] [objects/palette.c] [windows/syscolor.c]
8733         Better support for the private color map.
8734         Using a private map is now the default.
8736         * [windows/win.c]
8737         Bug fix.
8739         * [include/dialog.h] [windows/dialog.c]
8740         Implemented CreateDialog*() and IsDialogMessage().
8742         * [misc/xt.c] [windows/defwnd.c]
8743         Moved DefWindowProc() to defwnd.c.
8744         Added WM_NCCREATE, WM_NCDESTROY and WM_CTLCOLOR handling.
8746         * [windows/defdlg.c]
8747         Started the implementation of DefDlgProc().
8749         * [windows/win.c]
8750         Added WM_NCCREATE and WM_NCDESTROY messages.
8751         Implemented IsChild().
8753 Tue Oct 12 17:50:20 1993  David Metcalfe <david@prism.demon.co.uk>
8755         * [windows/focus.c]
8756         Implemented GetFocus() and SetFocus().
8758         * [windows/event.c]
8759         Added processing of FocusIn and FocusOut events.
8761         * [windows/graphics.c]
8762         Added DrawFocusRect().
8764 Sat Oct  9 14:36:57 1993  Erik Bos
8766         * [loader/int1a.c]
8767         Added more function handling.
8769 Wed Oct  6 12:21:22 1993  Erik Bos
8771         * [loader/signal.c]
8772         Split signal.c into int1a.c, int21.c and signal.c.
8774 Tue Oct  5 22:12:40 1993  David Metcalfe
8776         * [controls/static.c] [control/widgets.c]
8777         Static control class.
8779         * [objects/text.c]
8780         Added processing of additional DT_ flags to DrawText().
8782         * [windows/win.c] [misc/xt.c]
8783         Added SetWindowText() and WM_SETTEXT processing.
8785 Tue Oct  5 22:12:40 1993  Martin Ayotte
8787         * [controls/listbox.c]
8788         Listbox control window
8790         * [controls/scroll.c]
8791         Scroll bar control window
8793         * [controls/combo.c]
8794         Combo box control window
8796         * [include/combo.h]
8797         Combo box definitions
8799         * [include/listbox.h]
8800         Listbox definitions
8802         * [include/scroll.h]
8803         Scroll bar definitions
8805 Sat Oct  2 09:35:54 1993  Bob Amstadt  (bob at pooh)
8807         * [if1632/callback.c]
8808         Fixed bug in MakeProcInstance().
8810         * [debugger/info.c]
8811         Changed x/w and x/b to display in hex.
8813         * [debugger/i386-pinsn.c]
8814         Added code to properly unassemble 16-bit indexing.
8816 Fri Oct  1 08:29:05 1993  Bob Amstadt  (bob at pooh)
8818         * [loader/files.c] [misc/profile.c]
8819         System initialization file is now called "wine.ini" and can
8820         be located in the current directory, the user's home directory,
8821         or any directories specified in the WINEPATH environment variable.
8823         * [tools/build.c] [if1632/call.S] [include/regfunc.h]
8824         Changed register function stack to match sigcontext structure.
8826 Thu Sep 30 22:30:21 1993  Bob Amstadt  (bob at pooh)
8828         * [loader/files.c]
8829         Created function to search a path for files to load.
8831         * [loader/wine.c]
8832         Modified exe and dll file loading to search through path
8833         specified by the environment variable WINEPATH.
8835 Thu Sep 30 22:30:21 1993  Eric Youngdale
8837         * [loader/signal.c]
8838         Bug fix.
8840 Thu Sep 30 22:30:21 1993  John Brezak
8842         * [debugger/dbg.y] [debugger/debug.l] [debugger/dtest.c] 
8843           [debugger/obstack.h]
8844         Updates to allow debugger to function under NetBSD.
8846 Tue Sep 28 19:59:21 1993  David Metcalfe
8848         * [windows/win.c]
8849         Implemented support for windows with no borders.  Added
8850         GetParent(), GetDlgCtrlID(), GetWindowText() and
8851         GetWindowTextLength() functions.
8853         * [misc/xt.c]
8854         Added processing of WM_GETTEXT and WM_GETTEXTLENGTH messages
8855         to DefWindowProc and Implemented MessageBeep().
8857         * [windows/syscolor.c]
8858         Added preliminary system color support.
8860         * [controls/button1.c]
8861         Mods to new button control and integration with Wine.
8863 Tue Sep 28 19:59:21 1993  Johannes Ruscheinski
8865         * [controls/button1.c]
8866         New button control using GDI functions.
8867         
8868 Tue Sep 28 19:59:21 1993  Eric Youngdale
8870         * [debugger/*]
8871         Added debugging capabilities to Wine
8873 Sat Sep 25 13:22:50 1993  Alexandre Julliard  (julliard@di.epfl.ch)
8875         * [objects/region.c]
8876         Bug fix
8878 Fri Sep 24 07:35:11 1993  Bob Amstadt  (bob at pooh)
8880         * [tools/build.c]
8881         Changed the entry point code to reduce the standard entry
8882         point size from 22 bytes to 10 bytes.  This leaves about
8883         4000 free entry points instead of the 800 in version 0.4.2.
8885         * [loader/resource.c]
8886         Rewrote functions to allow loading of resources from any
8887         DLL.
8889         * [loader/wine.c] [include/wine.h]
8890         Added functions GetFilenameFromInstance() and GetFileInfo()
8891         to search for a loaded file based on its instance handle.
8892         Added a field in struct w_files to make searching by an instance
8893         handle faster.
8895 Tue Sep 21 09:57:01 1993  miguel@roxanne.nuclecu.unam.mx (Miguel de Icaza)
8897         * [misc/profile.c]
8898         Implementation of .INI file handling
8900 Mon Sep 20 10:54:32 1993  David Metcalfe
8902         * [misc/profile.c.old]
8903         Implementation of .INI file handling
8905 Mon Sep 20 10:54:32 1993  John Brezak
8907         * [controls/WinButton.c]
8908         Bug fix with call to XtVaSetValues.
8910 Mon Sep 20 10:54:32 1993  Alexandre Julliard
8912         * [windows/win.c]
8913         Quick patch to get colormaps to work with button widget.
8915 Mon Sep 20 02:42:54 1993    (yngvi@hafro.is)
8917         * misc/keyboard.c: 
8918         Ifdefed out some bogus Ansi<->Oem conversion functions
8920         * misc/lstr.c: 
8921         New file with string functions like lstr* IsChar* *Ansi* 
8923 Wed Sep 15 20:35:10 1993  John Brezak
8925         * [loader/signal.c]
8926         Additional changes to support NetBSD.
8928 Wed Sep 15 22:19:22 1993  Martin Ayotte
8930         * [windows/graphics.c]
8931         Added FrameRect function
8933 Tue Sep 14 13:54:45 1993  Alexandre Julliard
8935         * [objects/color.c] [objects/palette.c]
8936         Preliminary support for private color map.
8938         * [windows/class.c]
8939         Implemented CS_CLASSDC style.
8941         * [windows/dce.c]
8942         Moved DCEs to USER heap.
8943         Implemented class and window DCs.
8945         * [windows/event.c]
8946         Implemented CS_DBLCLKS style.
8948         * [windows/graphics.c]
8949         Bug fix in SetPixel().
8951         * [windows/win.c]       
8952         Implemented CS_OWNDC style.
8953         Implemented Get/SetWindowLong().
8955         * [controls/menu.c] [windows/class.c] [windows/clipping.c] 
8956           [windows/dce.c] [windows/message.c] [windows/win.c]   
8957         Moved windows from global heap to USER heap.
8959 Mon Sep 13 05:00:11 1993  Eric Youngdale
8961         * [Makefile] [if1632/relay.c] [include/dlls.h] [selector.c]
8962           [loader/wine.c] [tools/build.c]
8963         Added ability to generate missing functions statistics.
8965 Mon Sep 13 12:09:47 1993  Scott A. Laird  (scott@curly)
8967         * [WIN31-APPLETS]
8968         Added new file.
8970         * [if1632/kernel.spec]
8971         Added definitions for GetProfile{Int,String} and SetHandleCount.
8973         * [if1632/keyboard.spec]
8974         Created interface specification for Keyboard driver DLL.
8976         * [if1632/relay.c]
8977         Added keyboard.dll to list of included DLLs.
8979         * [if1632/user.spec]
8980         Added LoadAccelerators definition.
8982         * [loader/resource.c]
8983         Added LoadAccelerators stub.
8985         * [misc/file.c]
8986         Changed OpenFile, and added SetHandleCount (for winfile.exe)
8988         * [misc/keyboard.c]
8989         Added keyboard code.
8991         * [misc/profile.c] [misc/xt.c]
8992         Moved GetPrivateProfile* commands here, and added GetProfile*
8993         commands.
8995 Mon Sep 13 10:24:37 1993  Andrew Bulhak
8997         * [windows/utility.c]
8998         Implemented MulDiv(), OutputDebugString() and wvsprintf()
9000 Fri Sep 10 09:13:30 1993  John Brezak
9002         * [*/Makefile]
9003         Created patch to allow BSD make to build wine.
9005         * [windows/win.c]
9006         Fixed NULL pointer reference.
9008         * [windows/message.c] [misc/xt.c]
9009         Defined HZ to handle system specific timing.
9011         * [windows/graphics.c]
9012         Use M_PI is PI
9014         * [objects/pallete.c]
9015         NetBSD does not have /usr/include/values.h and MAXINT is INT_MAX.
9017         * [dump.c] [ldt.c] [wine.c]
9018         ifdef'ed linux headers for linux compile.
9020         * [loader/ldtlib.c]
9021         Add NetBSD system calls when compiled on that system.
9023         * [loader/selector.c]
9024         Use mmap(MAP_ANON, ...) for NetBSD.
9026         * [if1632/call.S]
9027         Fixed selector assumptions.
9029 Thu Sep 9 20:01:37 1993  David Metcalfe
9031         * [controls/WinButton*] [controls/button.c] [controls/widget.c]
9032           [windows/win.c] [windows/class.c]
9033         Added 3D button control and tied into CreateWindow()
9035 Thu Sep  9 07:35:24 1993  Scott Laird
9037         * [if1632/sound.spec]
9038         Created interface specification for SOUND DLL.
9040         * [if1632/win87em.spec]
9041         Added more functions to the WIN87EM DLL interface specification
9043         * [misc/emulate.c]
9044         Created stubs for the new math emulation functions.
9046         * [misc/sound.c]
9047         Created stubs for the SOUND DLL.
9049 Sun Sep  5 21:02:10 1993  John Burton
9051         * [if1632/kernel.spec]
9052         Added interface specifications for OpenFile, _lclose, _lread, _lopen,
9053         and _lwrite.
9055         * [include/windows.h]
9056         Added OF_ macros
9058         * [misc/file.c]
9059         Implemented OpenFile, _lclose, _lread, _lopen and _lwrite.
9061 Fri Sep  3 18:47:03 1993  Alexandre Julliard
9063         * [windows/dc.c]
9064         Bug fix
9066         * [objects/text.c]
9067         Bug fix
9069 Fri Sep  3 18:47:03 1993  Bob Amstadt
9071         * [objects/linedda.c]
9072         Finished LineDDA().
9074 Fri Sep  3 11:52:18 1993  Bob Amstadt
9076         * [windows/timer.c]
9077         Changed to use CallWindowProc() rather directly calling callback.
9079         * [windows/event.c]
9080         Implemented SetCapture() and ReleaseCapture()
9082         * [windows/keyboard.c]
9083         Created stub for GetKeyState()
9085         * [objects/linedda.c]
9086         Created stub for LineDDA()
9088         * [if1632/callback.c]
9089         Created callback handler for LineDDA callback procedure.
9091         * [if1632/callback.c]
9092         Created FreeProcInstance()
9094 Fri Sep  3 08:36:52 1993  David Metcalfe
9096         * [loader/signal.c]
9097         Patch to and code for INT 1A
9099 Thu Sep  2 00:31:54 1993  Alexandre Julliard
9101         * [objects/font.c] [objects/text.c]
9102         More text support: implemented justification and underlining.
9104         * [windows/clipping.c] [objects/clipping.c]
9105         Moved low-level clipping functions to objects/clipping.c.
9107         * [windows/clipping.c] [windows/event.c] [windows/message.c]
9108         Implemented window update regions.
9110         * [windows/dc.c] [objects/dcvalues.c]
9111         Moved some device-independent DC functions to objects/dcvalues.c.
9113         * [windows/graphics.c]
9114         Implemented InvertRect() and GetPixel().
9116 Sat Aug 28 08:40:23 1993  Eric Youngdale
9118         * [include/neexe.h] [loader/wine.c]
9119         Added code to handle relocation type 4.
9121         * [loader/signal.h] [loader/wine.c] [loader/selector.c]
9122         Added support for dos interrupts.
9124 Thu 26 Aug 19:15:00 1993  Eric Youngdale
9126         * [loader/selector.c]
9127         Fixed bug dealing with loading DLLs.
9129 Thu Aug 26 19:22:40 1993  Alexandre Julliard
9131         * [include/gdi.h] [objects/font.c] [windows/dc.c]
9132         Beginning of real font support.
9134         * [windows/graphics.c]
9135         Implemented PatBlt().
9137         * [memory/global.c]
9138         Corrected a bug with linked list handling in GlobalAlloc().
9140         * [objects/bitmap.c]
9141         Corrected a bug in BITMAP_SelectObject().
9143 Tue Aug 24 19:22:40 1993  David Metcalfe
9145         * [controls/Command*] [controls/Label*] [controls[MenuButto*]
9146           [controls/SmeMenuButt*]
9147         Change code to support & as a special character in menu item text.
9149 Tue Aug 24 19:22:40 1993  Alexandre Julliard
9151         * [include/gdi.h] [windows/dc.c]
9152         Heavily modified the DC structure for better device-independence.
9154         * [objects/bitmap.c]
9155         Implemented bitmap dimensions.
9157         * [windows/dc.c] [windows/dce.c]
9158         Implemented DC state saving and restoring.
9160         * [windows/dc.c]
9161         Implemented ROP mode.
9163         * [windows/graphics.c]
9164         Implemented FillRect().
9166 Mon Aug 23 22:08:34 1993  Bob Amstadt  (bob at pooh)
9168         * [misc/xt.c]
9169         Fixed bug in InvalidateRect().  Solitaire attempted to
9170         clear window before it was realized.
9172         * [loader/resource.c]
9173         Began rewrite of LoadBitmap().
9175         * [loader/wine.c]
9176         Fixed code which set Argv and Argc global variables.
9178         * [loader/selector.c]
9179         Added code to set up command line arguments.
9181         * [include/neexe.h]
9182         Fixed error in PSP structure.
9184 Tue Aug 17 20:41:12 1993  Alexandre Julliard
9186         * [include/gdi.h] [windows/dc.c]
9187         Implemented device capabilities.
9189         * [objects/region.c]
9190         Implemented EqualRgn() and CombineRgn().
9192         * [windows/clipping.c]
9193         Implemented Save/RestoreVisRgn().
9195         * [windows/graphics.c]
9196         Implemented PaintRgn() and FillRgn().
9198         * [windows/mapping.c]
9199         Implemented mapping modes.
9201 Tue Aug 10 14:07:38 1993  Alexandre Julliard
9203         * [if1632/user.spec] [misc/rect.c]
9204         Implemented rectangle API functions.
9206         * [if1632/gdi.spec] [include/gdi.h] [objects/region.c]
9207         Implemented regions.
9209         * [windows/class.c]
9210         Corrected a typo in UnregisterClass().
9212         * [windows/clipping.c] [windows/dc.c]
9213         Implemented DC clipping and visible region.
9215 Tue Aug 10 20:57:56 1993  Bob Amstadt  (bob at pooh)
9217         * [controls/menu.c] [windows/win.c]
9218         SetMenu(), GetMenu(), CheckMenuItem() implemented
9220 Thu Aug  5 22:33:22 1993  Bob Amstadt  (bob at pooh)
9222         * [controls/menu.c] [windows/win.c]
9223         Many improvements menus.  LoadMenu() should work.
9225 Wed Aug  4 14:55:36 1993  Alexandre Julliard
9227         * [objects/dib.c]
9228         Started the implementation of device-independent bitmaps.
9230         * [objects/bitmap.c]
9231         Added support for multiple bitmap depths.
9233         * [objects/brush.c]
9234         Implemented pattern brushes.
9236         * [windows/dc.c] [windows/graphics.c]
9237         Implemented some GDI graphics primitives.
9239 Tue Aug  3 21:16:47 1993  Bob Amstadt  (bob at pooh)
9241         * [controls/menu.c] [windows/win.c] [include/menu.h]
9242         Code to load class menus from executable file.
9244         * [if1632/user.spec]
9245         Fixed specification of SendMessage() and PostMessage.
9247 Mon Jul 26 21:53:24 1993  Alexandre Julliard
9249         * [if1632/call.S]
9250         Corrected a bug in KERNEL_InitTask().
9252         * [include/windows.h]
9253         Added a lot of constants.
9255         * [loader/selector.c]
9256         Corrected a bug in segment allocation in CreateSelectors().
9258         * [objects/bitmap.c]
9259         Implemented SelectObject() for bitmaps.
9261         * [objects/brush.c]
9262         Implemented hatched brushes and SelectObject().
9264         * [objects/gdiobj.c]
9265         Removed linked list (not needed).
9267         * [objects/palette.c]
9268         Implemented system palette creation and misc. palette API functions.
9270         * [windows/timer.c]
9271         Implemented timers.
9273         * [windows/dc.c]
9274         Implemented memory device contexts.
9276 Tue Jul 20 10:38:59 1993  Bob Amstadt  (bob at pooh)
9278         * [dos.c]
9279         Split DOS3Call() out of kernel.c.  Added support for get date
9280         and time functions.
9282         * [call.S]
9283         Added function ReturnFromRegisterFunc() to allow DOS calls
9284         to return values in registers.
9286         * [regfunc.h]
9287         Macros to access registers saved on stack.
9289 Tue Jul 20 10:38:59 1993  Alexandre Julliard
9291         * [win.c]
9292         Corrected allocation of the WM_CREATE data structure.
9294         * [dce.c] [dce.h]
9295         Implemented DCE handling.
9297         * [bitmap.c] [brush.c] [dc.c] [font.c] [gdi.h] [gdi.spec] 
9298           [gdiobj.c] [palette.c] [pen.c]
9299         Implemented the GDI objects data structures and allocation.
9301         * [windows.h]
9302         Added several structures and constants for GDI objects.
9304 Mon Jul 19 12:51:10 1993  Bob Amstadt  (bob at pooh)
9306         * [ldtlib.c]
9307         Modified system calls to match Linus' new interface for
9308         the LDT modification.
9310         * [win.c]
9311         Fixed bug with WM_CREATE message.
9313         * [heap.c] [kernel.spec]
9314         Completed local heap allocation functions.
9316         * [global.c]
9317         Created function GlobalQuickAlloc() for easy allocation from DLLs
9319 Tue Jul 13 20:31:31 1993  Bob Amstadt  (bob at pooh)
9321         * [global.c]
9322         Completed global memory pool API
9324 Sun Jul 11 16:59:52 1993  Alexandre Julliard
9326         * [message.c] [user.c] [user.spec] [windows.h]
9327         Added emulation of Windows message queue.
9329 Thu Jul  8 19:29:27 1993  Bob Amstadt  (bob at pooh)
9331         * [build.c] Original by Bob Amstadt
9332         * [callback.c] Original by Bob Amstadt, updates by 
9333         Alexandre Julliard
9334         * [dump.c] Original by Bob Amstadt
9335         * [global.c] Original by Bob Amstadt
9336         * [heap.c] Original by Bob Amstadt
9337         * [kernel.c] Original by Bob Amstadt
9338         * [ldt.c] Original by Bob Amstadt
9339         * [ldtlib.c] Original by Bob Amstadt
9340         * [relay.c] Original by Bob Amstadt
9341         * [resource.c] Original by Bob Amstadt, updates by 
9342         Alexandre Juliard
9343         * [selector.c] Original by Bob Amstadt, updates by Eric Youngdale
9344         * [user.c] Original by Bob Amstadt
9345         * [wine.c] Original by Bob Amstadt, updates by Eric Youngdale and
9346         Alexandre Julliard
9347         * [wintcl.c] Original by Regents of the University of California,
9348         updates by Peter MacDonald and Alexandre Julliard
9349         * [callback.h] Original by Bob Amstadt
9350         * [dlls.h] Original by Bob Amstadt
9351         * [heap.h] Original by Bob Amstadt
9352         * [neexe.h] Original by Bob Amstadt
9353         * [prototypes.h] Original by Bob Amstadt, updates by 
9354         Eric Youngdale
9355         * [segmem.h] Original by Bob Amstadt
9356         * [tkInt.h] Original by Regents of the University of California
9357         * [windows.h] Original by Peter MacDonald, updates by 
9358         Alexandre Julliard and Bob Amstadt
9359         * [wine.h] Original by Eric Youngdale
9360         * [kernel.spec] Original by Bob Amstadt, updates by 
9361         Alexandre Julliard
9362         * [gdi.spec] Original by Bob Amstadt, updates by 
9363         Alexandre Julliard
9364         * [shell.spec] Original by Bob Amstadt
9365         * [unixlib.spec] Original by Bob Amstadt
9366         * [user.spec] Original by Bob Amstadt, updates by Alexandre Julliard
9367         * [win87em.spec] Original by Bob Amstadt
9368         * [Windows.tcl] Original by Peter MacDonald, updates by 
9369         Alexandre Julliard
9370         * [build-spec.txt] Original by Bob Amstadt
9371         * [if1632.S] Original by Bob Amstadt, updates by Eric Youngdale