Fix docs to reflect change to .winerc processing.
[wine] / ChangeLog
index 25f6bd6..2ed9016 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+----------------------------------------------------------------
+2000-02-27  Alexandre Julliard  <julliard@winehq.com>
+
+       * win32/init.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       GetComputerNameA(): added parameter check like Win95 does.
+
+       * tools/build.c: Patrik Stridvall <ps@leissner.se>
+       - Fixed some Solaris specific assembler problems
+       - Fixed some missing .type @function (helps debugging with dbx)
+       - Fixed code needing __attribute__((constructor))__ for non-GCC ELF compilers
+       - Fixed use of zero width arrays (ANSI C violation)
+       - @GOTOFF on Solaris doesn't work - use @GOT and redirection instead
+
+       * memory/selector.c, include/selectors.h:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some Solaris specific assembler problems.
+
+       * dlls/ole32/ole32.spec, dlls/shell32/shlwapi.spec:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some issues found by winapi_check.
+
+       * tools/winapi_check/win32/ntdll.api, tools/winapi_check/win32/ole32.api, tools/winapi_check/win32/oleaut32.api:
+       Patrik Stridvall <ps@leissner.se>
+       Updated winapi_check.
+
+       * tools/genpatch: Steven Elliott <elliotsl@mindspring.com>
+       Added utility that generates patches for submission to
+       wine-patches@winehq.com.
+
+       * dlls/oleaut32/Makefile.in, dlls/oleaut32/oleaut32.spec:
+       oleaut32 should not import functions from olepro32.
+
+       * dlls/comctl32/listview.c, include/listview.h:
+       Pierre Mageau <pierre@macadamian.com>
+       Don't display the context menu on a double click.
+
+       Ulrich Czekalla <ulrichc@corel.ca>
+       Set the font on the edit label control to that used by the listview
+       control. It also uses text metrics to set a more reasonable initial
+       edit control size.
+
+       Pierre Mageau <pierre@macadamian.com>
+       Handle M_SETREDRAW in ListView.
+       Fix to EnsureVisible to handle small and large icon correctly.
+       Add edit label functionnality to the listview and the file open dialog.
+
+       Ulrich Czekalla <ulrichc@corel.ca>
+       RelaseDC in CreateEditLabel.
+
+       Pierre Mageau <pierre@macadamian.com>
+       Add functionnality to create new folder in the open dialog.
+       Add support for right click menu in common file dialog.
+       LISTVIEW_EndEditlabel is now handling NONLPSTR_TEXTCALLBACK listview items.
+
+       Serge Ivanov <sergei@corel.ca>
+       LISTVIEW_GetColumnA fix (do not copy string, pass pointers).
+
+       Luc Tourangeau <luc@macadamian.com>
+       Preventing a divide by zero when handling LVW_ENSUREVISIBLE message.
+
+       Don Kelly
+       -Implemented the sorting on insert of items into a ListView control
+        with either LVS_SORTASCENDING or LVS_SORTDESCENDING set.
+       -(helping evil applications): sometimes not so well structured apps
+        (PFPI90, in this case) will not fully initialize structs.  In the case
+        of the LVM_GETITEM message the app may have only initialized the mask
+        and iItem members of the struct.  Added processing of the LVIF_PARAM
+        mask in the case that iSubItem was set but is invalid/uninitialized.
+
+       Pierre Mageau <pierre@macadamian.com>
+       Fix for handling correctly the cancelling mode of the Edit label.
+       Fix width calculation of the edit label.
+
+       Pascal Lessard <pascal@macadamian.com>
+       Implemented the behavior of sending WM_CONTEXTMENU when receiving a
+       WM_RBUTTONUP.
+
+       Ulrich Czekalla <ulrichc@corel.ca>
+       Fixed a painting problem with listview when the view changes and an
+       edit label is active.
+
+       Ulrich Czekalla <ulrichc@corel.ca>
+       Fixed a notification problem with listview. On creation if the user
+       specifies an item with focus and/or selection we should send the
+       proper notification. Insert was preventing LISTVIEW_SetItem from
+       seeing the changes and sending the notification.
+
+       Make the draw item rectangle consistent with the selection
+       rectangle. This allows us to click on the folders and icons in the
+       file open dialog box and the item actually gets selected.
+
+       * files/drive.c: Petr Tomasek <tomasek@etf.cuni.cz>
+       - Write serial numbers to the device (FAT)
+       - DRIVE_ReadSuperblock: better checking for the FAT fs.
+
+       * files/dos_fs.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       GetFullPathName fixes.
+
+2000-02-26  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/winbase.h, include/winnt.h, memory/string.c, dlls/ntdll/ntdll.spec, dlls/ntdll/rtl.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Fixed definition of the RtlMemory functions. Use macros internally and
+       for Winelib, use real functions for exports from ntdll.
+
+       * include/ole2.h: Juergen Schmied <juergen.schmied@debitel.net>
+       Prototypes OleInitialize, OleUninitialize.
+
+       * dlls/commdlg/filedlg95.c:
+       Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
+       ArrangeCtrlPositions: fix for user-defined template with no stc32.
+
+       * controls/menu.c, include/menu.h, windows/message.c:
+       Ulrich Czekalla <ulrichc@corel.com>
+       Send WM_HELP message when F1 is pressed.
+
+       * controls/listbox.c: Yuxi Zhang <yuxi@corel.ca>
+       In the listbox, when the last item is selected and deleted, it still
+       appeared in the window.
+
+       Sheri Steeves <sheri@macadamian.com>
+       In LISTBOX_UpdateScroll(), if the listbox did not have the WS_SCROLL
+       style it would just return.  This left the horizontal scroll bar
+       uninitialized and it was appearing at the bottom of the listbox when
+       it did not have to.
+
+       Serge Ivanov <sergei@corel.com>
+       LISTBOX_SetColumnWidth adds extra 2 pixels to the passed column width
+       (it says it is for column margins). Obviously it is wrong, because
+       margins must be internal.
+
+       * dlls/ole32/Makefile.in, dlls/ole32/errorinfo.c, dlls/oleaut32/Makefile.in, dlls/oleaut32/errorinfo.c:
+       ErrorInfo functions need to be in ole32, not oleaut32.
+
+       * dlls/crtdll/wcstring.c: More portable CRTDLL_iswctype.
+
+       * dlls/shell32/shlmenu.c, dlls/shell32/shlview.c, dlls/shell32/shlwapi.spec, dlls/shell32/shv_bg_cmenu.c, dlls/shell32/shv_item_cmenu.c, dlls/shell32/pidl.h, dlls/shell32/shlfileop.c, dlls/shell32/shlfolder.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Moved file functions to shlfileop.c
+       New SHELL_DeleteDirectoryA
+       Use shell notifications.
+       Enabled file manipulation functions.
+
+       * dlls/shell32/folders.c, dlls/shell32/iconcache.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Fix for OpenIcon.
+
+       * dlls/shell32/shell32.spec, dlls/shell32/shellpath.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Stub PathIsDirectory.
+
+       * dlls/shell32/shellord.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Fixes for ShellExecuteEx.
+
+       * dlls/shell32/shell32_main.h, include/wine/undocshell.h, dlls/shell32/changenotify.c, dlls/shell32/shell32_main.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Basic implementation of shell notifications.
+
+       * documentation/shell32: Juergen Schmied <juergen.schmied@debitel.net>
+       Updated.
+
+       * include/wine/obj_contextmenu.h, include/wine/obj_extracticon.h, include/wine/obj_shellfolder.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Added Winelib types.
+
+       * dlls/shell32/shres.rc: Juergen Schmied <juergen.schmied@debitel.net>
+       Added icon no 4 (open folder).
+
+       * dlls/ole32/ole32.spec, dlls/oleaut32/Makefile.in, dlls/oleaut32/errorinfo.c, dlls/oleaut32/oleaut32.spec, include/oleauto.h:
+       Patrik Stridvall <ps@leissner.se>
+       Added stubs for {Create,Get,Set}ErrorInfo.
+
+       * dlls/ole32/ole2stubs.c: Abey George <abey@macadamian.com>
+       Return an error instead of a success code in OleCreate stub function.
+
+       * dlls/comctl32/tab.c, include/tab.h: Don Kelly
+       In Windows Property Sheet can have any mix of icon-less tabs and tabs
+       with icons.  Adds a check to see if the icon we're adding is non-NULL
+       (otherwise random junk from memory can be rendered) when the application
+       has specified the PSP_USEICONID flag is set.  Changes to the Tab control
+       to only render icons for tabs that have the TCIF_IMAGE flag set
+       (previously, if the flag was set the entire image list of icons was
+       rendered).
+
+       Stephane Lussier <stephane@macadamian.com>
+       Fixes for some tab control bugs
+
+       Henning Hoffmann
+       Fixed some width problem with OWNERDRAW tab.
+
+       Luc Tourangeau <luc@macadamian.com>
+       TCM_ADJUSTRECT is now returning consistant compare to Windows.
+
+       Serge Ivanov <sergei@corel.ca>
+       Fixed problem with tab selection. When you select tab it becames first
+       visible tab. Now leftmost visible tab is calculated properly.
+       - Added code for correct handling of updown control.
+       - Forced recalculation of tabs' coordinates when:
+       a) all items are deleted,
+       b) window style is canged
+
+       * include/commctrl.h: Ian Schmidt <ischmidt@cfl.rr.com>
+       Added necessary defines and structures to compile WineLib apps using
+       MFC 6.0 headers.
+       Fixed typo in TCM_SETMINTABWIDTH constant.
+
+       * controls/button.c: Bill Jin <billj@corel.ca>
+       Bitmap buttons were not refreshed correctly.
+
+       * dlls/comctl32/propsheet.c: Jim Aston <jima@corel.ca>
+       This reverts Matts patch.  The messaging needs double checking.
+
+       * windows/message.c, windows/winproc.c, memory/selector.c, misc/w32scomb.c, msdos/dpmi.c, relay32/relay386.c, scheduler/sysdeps.c, scheduler/syslevel.c, tools/build.c, win32/kernel32.c, controls/edit.c, controls/listbox.c, debugger/registers.c, dlls/ntdll/signal_i386.c, if1632/snoop.c, if1632/thunk.c, include/selectors.h, include/thread.h, include/winnt.h, loader/main.c:
+       Improved the selector get/set functions.
+       Support ANSI-compatible inline asm (with the help of Patrik Stridvall).
+
+       * dlls/winmm/joystick/Makefile.in, dlls/winmm/mcianim/Makefile.in, dlls/winmm/mciavi/Makefile.in, dlls/winmm/mcicda/Makefile.in, dlls/winmm/mciseq/Makefile.in, dlls/winmm/mciwave/Makefile.in, dlls/winmm/midimap/Makefile.in, dlls/winmm/wavemap/Makefile.in, dlls/winmm/wineoss/Makefile.in, include/acconfig.h, include/config.h.in, dlls/Makefile.in, dlls/avifil32/Makefile.in, dlls/comctl32/Makefile.in, dlls/commdlg/Makefile.in, dlls/msvideo/Makefile.in, dlls/oleaut32/Makefile.in, dlls/shell32/Makefile.in, dlls/winmm/.cvsignore, dlls/winmm/Makefile.in, Make.rules.in, Makefile.in:
+       Made winmm a separate shared library.
+
+       * scheduler/process.c, tools/bin2res.c, include/wine/windef16.h, loader/ne/resource.c, misc/registry.c, objects/dib.c, ole/ole2nls.c, programs/clock/winclock.c, dlls/shell32/changenotify.c, dlls/shell32/shellord.c, graphics/x11drv/dib.c, if1632/builtin.c, include/dplobby.h, include/wingdi.h, dlls/dplayx/dplobby.c, dlls/icmp/icmp_main.c, dlls/ntdll/reg.c, dlls/odbc32/proxyodbc.c, dlls/oleaut32/typelib.c, dlls/commdlg/filedlg95.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed ANSI C violations.
+
+       * server/context_i386.c: Patrik Stridvall <ps@leissner.se>
+       Fixed Solaris specific compiler issue.
+
+       * files/dos_fs.c, win32/init.c: Patrik Stridvall <ps@leissner.se>
+       Fixed some debug message crashes.
+
+       * include/dinput.h, windows/dinput.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       - implement EnumObjects and GetProperty for Mouse and Joystick drivers
+       - implement SetDataFormat for the Mouse driver
+
+       * dlls/winmm/joystick/.cvsignore, dlls/winmm/joystick/Makefile.in, dlls/winmm/joystick/joystick.c, dlls/winmm/joystick/joystick.spec, include/debugdefs.h, include/message.h, include/mmddk.h, windows/message.c, Make.rules.in, configure, configure.in, dlls/Makefile.in, dlls/winmm/Makefile.in, dlls/winmm/joystick.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Moved hardware related handling to dlls/winmm/joystick driver.
+       Got rid of joySendMessages() hack (now implementation with a timer).
+
+2000-02-25  Alexandre Julliard  <julliard@winehq.com>
+
+       * misc/debugstr.c:
+       Release unused space in debug strings to avoid too frequent
+       wrap-arounds in the circular buffer.
+
+       * dlls/oleaut32/Makefile.in: Added import of olepro32.
+
+       * winedefault.reg: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added OLE entries and comments.
+
+       * ole/nls/jpn.nls: Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
+       Japanese support implemented.
+
+       * ole/ole2nls.c: Steven Elliott <elliotsl@mindspring.com>
+       Stubbed out the implementation of LCMAP_SORTKEY in LCMapStringW() in
+       order to allow Windows 9x Perl to start.
+
+       * dlls/winspool/info.c: Ulrich Czekalla <ulrichc@corel.ca>
+       This patch initializes the return buffer used in GetPrinterDriverA to
+       zeros. This prevents buffer overruns caused by accessing garbage data.
+       Some improvements to the NULL check patch.
+
+       Gautam Jain
+       EnumPrinters is not returning the number of printers found in case the
+       parameter dwLevel is 1.
+
+       * dlls/ntdll/reg.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Do not overwrite the valid ObjectAttributes->RootDirectory.
+       Perform case insensitive comparison for the registry paths.
+
+       * include/ntddk.h: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Added prototypes for registry functions.
+
+       * include/winbase.h, include/winnls.h:
+       Dmitry Timoshkov <dmitry@sloboda.ru>
+       Move definition of CPINFO structure from winbase.h to winnls.h
+       Add definition of CPINFOEX structure to winnls.h
+
+       * include/crtdll.h: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Add prototype for CRTDLL_wcstol.
+
+       * dlls/comctl32/toolbar.c: Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
+       Fix for toolbar button size.
+
+       * misc/lstr.c: Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
+       Fixed CharNextA/CharNextExA for DBCS.
+
+       * windows/multimon.c, windows/x11drv/monitor.c, include/debugger.h, misc/comm.c, ole/ole2nls.c, relay32/snoop.c, tools/build.c, debugger/msc.c, debugger/stabs.c, dlls/comctl32/draglist.c, graphics/ddraw.c:
+       James Abbatiello <abbeyj@WPI.EDU>
+       Misc. fixes for compiler warnings.
+
+       * dlls/ole32/stg_stream.c, dlls/ole32/storage32.c, dlls/ole32/storage32.h, include/ole2.h, include/wine/obj_base.h, include/winerror.h:
+       Pierre Mageau <pierre@macadamian.com>
+       Implementation of OleConvert routines.
+
+       Thuy Nguyen <thuy@macadamian.com>
+       Don't allow to resize stream open in read only mode
+       Allow write access for stream/storage open with STGM_READWRITE.
+       StgOpenStorage return values are now more detailed.
+       Don't rely on STGM_CREATE flag in the Storage constructor.
+       Preventing to write out of date property.
+
+       Owen Wang <owenw@corel.ca>
+       Allow both positive & negative 32-bit integers as with MFC assumption.
+       This patch improves the 32bit limit on IStream::*_Seek operations.
+
+       John Li <johnl@corel.ca>
+       When WP opens a linked file, the malloc function in
+       OLECONVERT_LoadOLE10(...) returns a NULL. This causes a later Wine
+       crash. The actual problem is the function reading a large data length.
+
+       * dlls/version/info.c: Patrik Stridvall <ps@leissner.se>
+       Made some local functions static.
+
+       * dlls/oleaut32/oleaut32.spec, server/context_i386.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some issues found by winapi_check.
+
+       * tools/winapi_check/*:
+       Patrik Stridvall <ps@leissner.se>
+       Moved some of the API specification from the global file to the local
+       files.
+
+       * dlls/mouse/mouse_main.c, include/mouse.h, include/ttydrv.h, include/x11drv.h, windows/ttydrv/mouse.c, windows/x11drv/mouse.c:
+       James Abbatiello <abbeyj@WPI.EDU>
+       Better thread safety for WarpPointer hack.
+
+       * dlls/advapi32/advapi32.spec, dlls/advapi32/security.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Added AddAccessAllowedAce.
+
+       * include/commctrl.h: Juergen Schmied <juergen.schmied@debitel.net>
+       Some more ListView_ macros, winelib fixes.
+
+       * objects/cursoricon.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Fixed allocation of 16x16 icons.
+
+       * dlls/commdlg/filedlg95.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       For unicode: give the selected filename back.
+
+       * tools/wineinstall: Ove Kaaven <ovek@arcticnet.no>
+       Check for Xpm headers and add /usr/local/lib to /etc/ld.so.conf if
+       necessary.
+
+       * windows/painting.c: Serge Ivanov <sergei@corel.ca>
+       We don't need to call LPtoDP in here as far as PatBlt does it internally.
+
+       * dlls/comctl32/propsheet.c: Serge Ivanov <sergei@corel.ca>
+       In Windows, if PropertySheet can't create some page it just skips it. This
+       patch adds similar behaviour to Wine. It also adds some NULL checks.
+
+       <yuxi@corel.com>
+       Fix property sheet initialization bugs.
+
+       Matthew Robertson
+       The template was calling GetActiveIndex which was not being set in the
+       propsheet code, and the call was moved before we call SetActive -
+       because that's where we query for the Active Index.
+
+       Noomen Hamza
+       Resize property sheet to the largest dialog size.
+
+       Don Kelly
+       In the WM_INITDIALOG handler for the prop sheet, there is a call to
+       PROPSHEET_IsTooSmall() which, if it returns TRUE, calls
+       PROPSHEET_AdjustSize().  Contrary to its comment, .._AdjustSize() actually
+       aligns the sizes of the "largest" prop. sheet dialog template and the tab
+       control.  The IsTooSmall() call doesn't properly catch this mismatch.
+       Modified the function to return TRUE if the sizes mismatch and renamed it to
+       PROPSHEET_SizeMismatch() to reflect its proper use.
+
+       * dlls/shell32/shlwapi.spec: Marcus Meissner <marcus@jet.franken.de>
+       We define PathISURLA, so use it.
+
+       * dlls/comctl32/imagelist.c: Serge Ivanov <sergei@corel.ca>
+       In function IMAGELIST_InternalDrawMask we have to mask out overlay mask in
+       fStyle. Otherwise comparison fStyle == ILD_NORMAL will not work, which leads
+       to improper display of overlay images.
+
+       * windows/win.c:
+       Alexandre Julliard <julliard@codeweavers.com> (for Corel)
+       ATOMs are considered unique, so we don't need to check class
+       pointers in FindWindow.
+
+       * objects/region.c: Serge Ivanov <sergei@corel.com>
+       Not all region functions updated 'type' field to reflect current
+       region state.
+
+       * programs/cmdlgtst/cmdlgr.rc, programs/cmdlgtst/cmdlgtst.c:
+       Eric Williams <ewill@ncal.verio.com>
+       Minor fixups and tweaking, and a dummy hook.
+
+       * dlls/commdlg/filedlg.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Fixed handling of filedlg flags.
+
+2000-02-20  Alexandre Julliard  <julliard@winehq.com>
+
+       * scheduler/process.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added FIXME comment for entry point parameter.
+
+       * dlls/ole32/moniker.c, dlls/ole32/ole32.spec:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - stub for OLE32.MkParseDisplayName
+       - spelling fixes
+
+       * windows/dialog.c, windows/win.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - fixed my slightly incorrect EndDialog patch
+       - cleaned up win.c
+
+       * windows/x11drv/wnd.c, dlls/comctl32/tab.c, windows/winproc.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Spelling fixes.
+
+       * dlls/dsound/dsound_main.c: Marcus Meissner <marcus@jet.franken.de>
+       Made the buffer list in the directsound object thread-safe.
+
+       * loader/module.c, loader/ne/module.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       It seems to be GetModuleFileName16 that checks exe version on whether
+       to return long or short paths, not GetModuleFileNameA.
+
+       * dlls/commdlg/filedlg.c: Gerard Patel <g.patel@wanadoo.fr>
+       Avoid too much refreshing when changing the drive in the 16 bits file
+       dialog.
+
+       * files/dos_fs.c: Petr Tomasek <tomasek@etf.cuni.cz>
+       GetLongPathName rewrite.
+
+       * dlls/commdlg/cdlg_En.rc, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/filedlgbrowser.h, dlls/commdlg/filetitle.c:
+       Corel merge:
+
+       Pierre Mageau
+       Don't update the combo box selection when closing the dialog only when
+       clicking on OK button.  Adjust file dialog size when help button isn't
+       present.
+
+       Don Kelly.
+       Fixes problems with open dialog box filters.
+
+       Ulrich Czekalla
+       Prevents the help button from displaying on OpenFile dialogs unless
+       the proper flag is set in the OPENFILENAME struct.
+
+       Yuxi Zhang
+       Fixed memory leak.
+
+       Jean-Claude Batista
+       Add tooltips to the file Dialog toolbar.
+
+       Sylvain Bouchard, Bill Jin
+       Three new functions
+       EnumSelectedPidls, GetNumSelected, FILEDLG95_OnOpenUsingView: corrections
+       Instead of passing in a copy of ofn, passing in the pointer of ofn.
+
+       David Golding
+       A "!" was missing in a check against lpstrInitialDir.
+
+       Rick Mutzke
+       Fixed crash: if dialog has no filetypes appearing in the dropdown list.
+
+       Matt Robertson, Ulrich Czekalla
+       Fixed problems occurring with selection of files inside openfiledlg.
+
+       * dlls/commdlg/filedlg.c: Juergen Schmied <juergen.schmied@debitel.net>
+       - activated use of templates
+       - moved the creating of new folders to the shellview
+
+       * dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Started with shell-clipboard handling (context menu cut&paste,
+       drag&drop).
+
+       * dlls/shell32/dataobject.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Removed ItemIDListList, reorganisation, more formats.
+
+       * dlls/shell32/shlview.c: Juergen Schmied <juergen.schmied@debitel.net>
+       - implemented rename, copy and delete file
+       - "new file" is activating label edit for rename
+       - implemented IShellView_SelectItem
+
+       * dlls/shell32/shres.rc, dlls/shell32/shresdef.h, dlls/shell32/shv_bg_cmenu.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Better context menus.
+
+       * dlls/shell32/Makefile.in, dlls/shell32/clipboard.c, dlls/shell32/contmenu.c, dlls/shell32/shv_item_cmenu.c, include/wine/obj_contextmenu.h, include/wine/obj_shellview.h, include/wine/undocshell.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - new files related to context menu and drag drop file operations
+       - render functions for clipboardformats
+
+       * dlls/shell32/shell.c, dlls/shell32/shellpath.c: Stephane Lussier
+       Implemented PathIsURLA and modified ShellExecute16 to be able to load URL
+
+       * dlls/shell32/shell32.spec, dlls/shell32/changenotify.c, dlls/shell32/shellord.c, include/shell.h, include/shellapi.h, include/shlobj.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Started implementation of shell notifications.
+
+       * dlls/shell32/shlfileop.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       New file (SHFileOperation).
+
+       * dlls/shell32/classes.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Fixes.
+
+       * dlls/shell32/shellfolder.h, dlls/shell32/shlfolder.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - new internal interface for item manipulation (cut/paste/new folder/delete/rename)
+       - implemented IPersistFolder2 interface
+
+       * dlls/shell32/pidl.c, dlls/shell32/pidl.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       New aPidl handling functions.
+
+       * misc/main.c: Avoid crash on usage message.
+
+       * dlls/advapi32/registry.c: Avoid crash on NULL data pointer.
+
+       * dlls/ntdll/ntdll.spec, dlls/ntdll/rtl.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added stub for RtlAssert().
+
+       * windows/x11drv/keyboard.c:
+       Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
+       Added Japanese jp106 and pc98x1 keyboard layout.
+
+       * dlls/winmm/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Got rid of PROFILE_ functions, now accessing Wine config options
+       through the registry.
+
+       * files/profile.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       While creating the wine config key, make sure that only Wine's subkeys
+       are volatile.
+
+       * graphics/psdrv/driver.c: Marcus Meissner <marcus@jet.franken.de>
+       Check for NULL ptr in PSDRV_GetDeviceCapabilities.
+
+       * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
+       Added a bit magic to CONSOLE_get_input so we don't get single Escapes
+       from function key escape sequences.
+
+2000-02-19  Alexandre Julliard  <julliard@winehq.com>
+
+       * memory/atom.c: Bug fix for native USER.
+
+       * loader/loadorder.c, wine.ini:
+       Hard-coded DllPairs configuration; there is no need for the user to
+       change it.
+
+       * graphics/psdrv/afm.c, graphics/x11drv/xfont.c, include/console.h, include/main.h, include/options.h, misc/main.c, misc/version.c, windows/x11drv/main.c, windows/x11drv/wnd.c, console/interface.c, documentation/wine.man.in, files/profile.c:
+       Store config file contents in the registry so we only have to load it
+       once per session.
+       Replaced PROFILE_EnumerateWineIniSection by PROFILE_EnumWineIniString.
+       Removed a few unnecessary/unused command-line options.
+
+2000-02-18  Alexandre Julliard  <julliard@winehq.com>
+
+       * loader/dos/module.c, loader/ne/module.c, loader/pe_image.c, loader/task.c, scheduler/process.c, server/process.c, server/process.h, server/trace.c, include/process.h, include/server.h:
+       Store the handle of the process exe file in the server.
+       Removed PROCESS_Initial().
+
+       * dlls/oleaut32/variant.c: Owen Wang <owenw@corel.com>
+       Set the type of VarBstrFromDate to dwFlags, instead of lcid.
+
+       Ulrich Czekalla  <ulrichc@corel.ca>
+       Fixed the problem with the date being off by one.
+
+       Petar Djukic
+       VariantCopy was ignoring VT_DISPATCH,VT_UNKNOWN, and VT_VARIANT. Same
+       with VariantClear.
+       Coerce function doesn't implement coercion for VT_DISPATCH type.
+
+       * if1632/gdi.spec, if1632/kernel.spec, if1632/user.spec:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added/corrected ordinals of kernel, gdi, user.
+
+       * include/win.h, windows/win.c: Noomen Hamza <noomen@macadamian.com>
+       Popup windows will be hidden when minimizing the main frame.
+
+       * dlls/oleaut32/typelib.c, dlls/oleaut32/typelib.h:
+       Alexandre Julliard <julliard@codeweavers.com> (for Corel)
+       Changed the loading of typelib files to use a memory mapping instead
+       of reading the file bit by bit.
+
+       * files/drive.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       DRIVE_FindDriveRoot() always checked from drive A: to Z: for each
+       path component even if a match already occurred.
+
+       * dlls/oleaut32/ole2disp.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed prototype for OleTranslateColor.
+
+       * files/file.c: Matthew Cline <matt@nightrealms.com>
+       Added WARN messages on open errors.
+
+       * misc/wsprintf.c: Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
+       The maximum size of the buffer is 1024 bytes in Win32.
+
+2000-02-16  Alexandre Julliard  <julliard@winehq.com>
+
+       * relay32/snoop.c, windows/driver.c, windows/hook.c, windows/win.c, windows/winproc.c, if1632/snoop.c, if1632/thunk.c, include/region.h, loader/loadorder.c, loader/ne/module.c, misc/ddeml.c, misc/toolhelp.c, objects/enhmetafile.c, objects/metafile.c, objects/region.c, files/drive.c, files/file.c, files/profile.c, graphics/driver.c, graphics/enhmetafiledrv/graphics.c, graphics/enhmetafiledrv/init.c, graphics/enhmetafiledrv/objects.c, graphics/metafiledrv/bitblt.c, graphics/metafiledrv/graphics.c, graphics/metafiledrv/init.c, graphics/metafiledrv/objects.c, graphics/win16drv/init.c, graphics/win16drv/prtdrv.c, graphics/x11drv/xfont.c, dlls/lzexpand/lzexpand_main.c, dlls/mpr/mpr_main.c, dlls/winaspi/winaspi16.c, dlls/winmm/lolvldrv.c, dlls/winmm/mci.c, dlls/winmm/wineoss/midi.c, dlls/wnaspi32/winaspi32.c, files/dos_fs.c, dlls/advapi32/security.c:
+       Moved SystemHeap allocations to the process heap.
+
+       * windows/win.c: Gerard Patel <g.patel@wanadoo.fr>
+       Do not use GlobalFindAtom with atom handles in CreateWindow* functions.
+
+       * windows/defwnd.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Send WM_HELP message when F1 is pressed.
+
+       * ole/nls/brf.nls, ole/nls/cor.nls, ole/nls/cym.nls, ole/nls/gae.nls, ole/nls/gdh.nls, ole/nls/gdv.nls, documentation/wine.man.in, include/options.h, include/winnls.h, misc/main.c, ole/ole2nls.c:
+       Alastair McKinstry <Alastair.McKinstry@digital.com>
+       Added support for the following celtic languages: Irish Gaelic, Scots
+       Gaelic, Manx Gaelic, Breton, Welsh, Cornish.
+
+2000-02-14  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/ole32/clipboard.c, dlls/ole32/compobj.c, dlls/ole32/ole32.spec:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Added stub for CoResumeClassObjects.
+
+       * windows/dinput.c: Lionel Ulmer <lionel.ulmer@free.fr>
+       - added argument printing to stubs
+       - replaced memcmp by IsEqualGUID
+       - implemented GetCapabilities for Mouse and Keyboard
+
+       * dlls/winsock/socket.c: Ove Kaaven <ovek@arcticnet.no>
+       ioctlsocket() now returns success if the app sets nonblocking mode for
+       WSAAsyncSelect()-ed sockets.
+
+       * dlls/crtdll/wcstring.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
+       Fixed FreeBSD compile.
+
+       * dlls/winmm/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       - fixed crash on mci channel tracing
+       - fixed 16 to 32 bit translation for MCI_BREAK and MCI_SYSINFO messages
+
+2000-02-13  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/x11drv/bitblt.c: James Abbatiello <abbeyj@wpi.edu>
+       Moved CLIPPING_UpdateGCClipping call outside of the X11 section.
+
+       * include/winbase.h, scheduler/process.c, scheduler/thread.c, server/process.c, server/thread.c:
+       Dave Pickles <davep@nugate.demon.co.uk>
+       Added definition for STILL_ACTIVE.
+
+       * server/request.c, configure, configure.in, include/config.h.in, scheduler/client.c:
+       Juergen Lock <nox@jelal.kn-bremen.de>
+       Added configure check for the unix domain sockaddr length.
+
+       * misc/cdrom.c: Juergen Lock <nox@jelal.kn-bremen.de>
+       Fixed CDROM_Audio_Seek for non-linux systems.
+
+       * objects/gdiobj.c, include/gdi.h: Matthew Cline <matt@nightrealms.com>
+       GetObjectA() now rejects GDI handles which are invalid.
+
+       * misc/version.c: Juergen Lock <nox@jelal.kn-bremen.de>
+       VERSION_GetSystemDLLVersion crashed when being called on a .so.
+
+       * windows/defwnd.c: Martin Fuchs <martin-fuchs@gmx.net>
+       Display the system popup menu when clicking with the right mouse
+       button in the window caption.
+
+       * dlls/ole32/clipboard.c: Removed check for class existence.
+
+       * dlls/comctl32/animate.c, dlls/comctl32/comboex.c, dlls/comctl32/datetime.c, dlls/comctl32/flatsb.c, dlls/comctl32/header.c, dlls/comctl32/hotkey.c, dlls/comctl32/ipaddress.c, dlls/comctl32/listview.c, dlls/comctl32/monthcal.c, dlls/comctl32/nativefont.c, dlls/comctl32/pager.c, dlls/comctl32/progress.c, dlls/comctl32/rebar.c, dlls/comctl32/status.c, dlls/comctl32/tab.c, dlls/comctl32/toolbar.c, dlls/comctl32/tooltips.c, dlls/comctl32/trackbar.c, dlls/comctl32/updown.c:
+       Alexandre Julliard <julliard@codeweavers.com>
+       Removed superfluous GlobalFindAtom calls.
+
+       * misc/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Reading of ri blocks.
+       Better error handling.
+
+       * windows/mdi.c: Matthew Cline <matt@nightrealms.com>
+       Check that ci->hWindowMenu is not zero before using it.
+
+       * dlls/crtdll/crtdll.spec, dlls/crtdll/wcstring.c, dlls/ntdll/ntdll.spec:
+       David Howells <David.Howells@nexor.co.uk>
+       Implemented isw*() wctype.h functions.
+
+       * miscemu/main.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Better error messages.
+
+       * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
+       Fixed off-by-one error.
+
+       * memory/atom.c, server/Makefile.in, server/atom.c, server/main.c, server/object.h, server/request.h, server/trace.c, server/unicode.h, windows/class.c, windows/message.c, windows/win.c, if1632/kernel.spec, if1632/user.spec, include/server.h, include/wine/winbase16.h, include/wine/winuser16.h:
+       Moved global atoms to the server (based on the work of Sergei
+       Turchanov <turchanov@otvprim.ru>).
+
+2000-02-12  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/wingdi.h: Matthew Cline <matt@nightrealms.com>
+       Added a PTEXTMETRIC[A|W] definition.
+
+       * include/windef.h: Matthew Cline <matt@nightrealms.com>
+       Added typedefs for PSHORT and PUSHORT.
+
+       * windows/dialog.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Protect EndDialog() from invalid window handles.
+
+       * graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       Replaced fprintfs by proper debug macros and fixed some compilation warnings.
+
+2000-02-10  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/ddraw.h: Ian Schmidt <ischmidt@cfl.rr.com>
+       Added GUIDs, defines, and structures for DirectX7.
+
+       * dlls/winmm/winmm_Ru.rc, dlls/winmm/winmm_res.rc:
+       Oleg Korda <oleg@isp.nsc.ru>
+       Added Russian translation.
+
+       * windows/class.c: Phillip Ezolt <ezolt@perf.zko.dec.com>
+       Added missing goto in switch statement.
+
+       * misc/main.c: Marcus Meissner <marcus@jet.franken.de>
+       Initialize the NONCLIENTMETRICS with 0 (helps moorhuhn.exe).
+
+       * win32/kernel32.c, windows/x11drv/event.c, windows/x11drv/main.c, graphics/psdrv/afm.c, graphics/psdrv/ppd.c, graphics/psdrv/ps.c, if1632/builtin.c, include/debugdefs.h, include/debugtools.h, include/miscemu.h, memory/global.c, memory/heap.c, memory/ldt.c, memory/virtual.c, misc/cpu.c, misc/debugstr.c, misc/error.c, misc/main.c, misc/registry.c, msdos/dpmi.c, msdos/int2a.c, msdos/int3d.c, msdos/int41.c, msdos/int4b.c, msdos/ioports.c, relay32/snoop.c, tools/make_debug, dlls/winmm/mcicda/mcicda.c, dlls/winmm/mciseq/mcimidi.c, dlls/winmm/mmio.c, dlls/winmm/wineoss/mixer.c, dlls/wnaspi32/winaspi32.c, files/file.c, graphics/ddraw.c, dlls/ole32/compobj.c, dlls/ole32/compositemoniker.c, dlls/oleaut32/typelib.c, dlls/shell32/classes.c, dlls/shell32/shellord.c, dlls/version/install.c, dlls/version/resource.c, dlls/winaspi/winaspi16.c, dlls/advapi32/registry.c, dlls/comctl32/datetime.c, dlls/comctl32/ipaddress.c, dlls/comctl32/trackbar.c, dlls/commdlg/filedlg95.c, dlls/dplayx/dplayx_global.c, dlls/dsound/dsound_main.c, dlls/lzexpand/lzexpand_main.c, dlls/ntdll/misc.c, dlls/ntdll/ntdll_misc.h, dlls/ntdll/signal_i386.c:
+       Optimized debugging API to reduce code size.
+
+       * library/winestub.c, misc/cdrom.c, msdos/int2f.c, objects/linedda.c, dlls/oleaut32/variant.c, dlls/olecli/olecli_main.c, dlls/olesvr/olesvr_main.c, graphics/cache.c, graphics/escape.c, graphics/ttydrv/text.c, include/color.h, include/enhmetafiledrv.h, include/metafiledrv.h, include/ole.h, include/psdrv.h, include/win16drv.h, include/wingdi.h, dlls/ole32/compobj.c, dlls/ole32/datacache.c, dlls/ole32/storage.c:
+       Removed extra includes from ole.h and wingdi.h.
+
+       * */*:
+       Jeremy White <jwhite@codeweavers.com>
+       Removed #include of wingdi.h and windef.h from winuser.h (and resolved
+       the resulting compilation failures).
+
+2000-02-07  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/ole32/compobj.c: Owen Wang <owenw@corel.ca>
+       Make CLSIDFromString return a CLSID of zeros instead of crashing when
+       passed a null pointer.
+
+       * dlls/winmm/joystick.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
+       Fixed unconditional use of JOYDEV.
+
+       * include/commdlg.h, include/windowsx.h, include/wingdi.h, include/winuser.h:
+       Michael Cardenas <michael_cardenas@deneba.com>
+       Added a bunch of macros needed for compiling Winelib apps.
+
+       * include/commctrl.h: Juergen Schmied <juergen.schmied@debitel.net>
+       Added ListView_EditLabel macros.
+
+       * dlls/commdlg/cdlg32.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Changed import to ordinal.
+
+       * include/wine/obj_shellfolder.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Added IPersistFolder2 interface.
+
+       * misc/cdrom.c, msdos/int2f.c, dlls/winmm/mcicda/mcicda.c, dlls/winmm/mcicda/mcicda.spec, files/drive.c, include/cdrom.h, include/debugdefs.h:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - implemented serial numbers for audio CDs and data CDs
+       - big clean up of misc/cdrom.c and dlls/winmm/mcicda/mcicda.c function
+         naming and such
+       - split debug channel cdaudio into cdrom and mcicda
+       - fixed some typos
+
+       * dlls/oleaut32/olefont.c, include/olectl.h:
+       Sean Langley <seanl@corel.ca>
+       Made OleCreateFontIndirect have the same signature (exactly) as the
+       header file. Added olepro32 dll stubs.
+
+       * Make.rules.in, configure, configure.in, dlls/Makefile.in, dlls/olepro32/.cvsignore, dlls/olepro32/Makefile.in, dlls/olepro32/README, dlls/olepro32/olepro32.spec, dlls/olepro32/olepro32stubs.c:
+       Sean Langley <seanl@corel.ca>
+       OLEPRO32 stubs.
+
+       * windows/clipboard.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Added CF_HDROP.
+
+       * dlls/winmm/joystick.c: Wolfgang Schwotzer <woschwot@gmx.net>
+       Extended the winmm joystick API calls to support the new Linux
+       joystick driver.
+
+       * server/context_i386.c: Juergen Lock <nox@jelal.kn-bremen.de>
+       Added context functions for FreeBSD.
+
+       * dlls/shell32/systray.c: Sheri Steeves <sheri@macadamian.com>
+       Fix for the system tray, Icon and popup menu's now work.
+
+       * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
+       Use window properties instead of window long, also use them to
+       determine if we really own a window and can destroy it.
+       The pixelformat for 256 colors has PALETTE|RGB flags (Tomb Raider 2)
+       Set paintable flag for application passed cooperative/drawing window.
+       GetDisplayMode: We might have and do support 2 backbuffers.
+
+       * dlls/ole32/moniker.c: Noomen Hamza <noomen@macadamian.com>
+       Running object table are not using 0 as a valid index anymore.
+
+       * controls/static.c: Luc Tourangeau <luc@macadamian.com>
+       Implementation of Static OwnerDraw.
+
+       * dlls/comctl32/imagelist.c: Marcus Meissner <marcus@jet.franken.de>
+       Height calculation was 1 off in ImageList_Read.
+
+2000-02-03  Alexandre Julliard  <julliard@winehq.com>
+
+       * programs/view/init.c, programs/view/view.c, tools/wrc/wrc.c, windows/mdi.c, controls/edit.c, controls/menu.c, dlls/commdlg/colordlg.c, dlls/commdlg/filedlg.c, dlls/commdlg/finddlg.c, dlls/commdlg/fontdlg.c, dlls/commdlg/printdlg.c, dlls/shell32/brsfolder.c, dlls/shell32/shell32_main.c, graphics/psdrv/driver.c, include/resource.h, loader/ne/resource.c:
+       Removed resource.h.
+
+       * programs/regtest/Makefile.in, programs/regtest/regtest.spec, programs/view/.cvsignore, programs/view/Makefile.in, programs/view/view.spec, programs/wcmd/.cvsignore, programs/wcmd/Makefile.in, programs/wcmd/wcmd.spec, programs/winhelp/.cvsignore, programs/winhelp/Makefile.in, programs/winhelp/winhelp.spec, programs/winver/.cvsignore, programs/winver/Makefile.in, programs/winver/winver.spec, programs/avitools/.cvsignore, programs/avitools/Makefile.in, programs/avitools/aviinfo.spec, programs/avitools/aviplay.spec, programs/avitools/icinfo.spec, programs/clock/.cvsignore, programs/clock/Makefile.in, programs/clock/clock.spec, programs/cmdlgtst/.cvsignore, programs/cmdlgtst/Makefile.in, programs/cmdlgtst/cmdlgtst.spec, programs/control/.cvsignore, programs/control/Makefile.in, programs/control/control.spec, programs/notepad/.cvsignore, programs/notepad/Makefile.in, programs/notepad/notepad.spec, programs/osversioncheck/.cvsignore, programs/osversioncheck/Makefile.in, programs/osversioncheck/osversioncheck.spec, programs/progman/.cvsignore, programs/progman/Makefile.in, programs/progman/progman.spec, programs/regapi/.cvsignore, programs/regapi/Makefile.in, programs/regapi/regapi.spec, programs/regtest/.cvsignore, libtest/.cvsignore, libtest/Makefile.in, libtest/expand.spec, libtest/hello.spec, libtest/hello2.spec, libtest/hello3.spec, libtest/hello4.spec, libtest/hello5.spec, libtest/new.spec, libtest/rolex.spec, libtest/vartest.spec, libtest/volinfo.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added .spec files for all libtest/ and programs/ WineLib apps.
+       Updated all Makefiles to use .spec files and new resource handling.
+
+       * loader/libres.c, loader/main.c, loader/pe_resource.c, loader/resource.c, relay32/builtin32.c, resources/sysres.c, tools/build.c, include/builtin32.h, include/libres.h, include/module.h, include/pe_image.h, include/resource.h, loader/Makefile.in, loader/elf.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added .spec keyword 'mode' to allow creating built-in EXE modules.
+       Use built-in EXE modules for WineLib apps (instead of ELF modules).
+       Removed dummy ELF module creation.
+       Removed LIBRES handling.
+
+       * programs/notepad/main.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed memory overwrite bug.
+
+       * include/windef.h, include/wine/windef16.h:
+       Jeremy White <jwhite@codeweavers.com>
+       Moved definitions such as BOOL16 and INT16 from windef.h into
+       wine/windef16.h.
+
+       * ole/ole2nls.c: Julio César Gázquez <jgazquez@dld.net>
+       GetNumberFormatA implementation added.
+
+       * win32/console.c: Marcus Meissner <Marcus.Meissner@caldera.de>
+       Save and restore cursor in WriteConsoleOutputA.
+
+       * include/datetime.h, include/monthcal.h, dlls/comctl32/datetime.c, dlls/comctl32/monthcal.c:
+       Alex Priem <alexp@sci.kun.nl>
+       - Implementation of WM_SETFORMAT
+       - Reworked drawing/selection
+       - Implementation of WM_KEYDOWN
+
+       * include/miscemu.h, msdos/int09.c, msdos/int16.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Added INT_Int16ReadChar and made int09 handle special keys.
+
+       * graphics/vga.c, include/vga.h: Ove Kaaven <ovek@arcticnet.no>
+       Added alphanumeric mode to the VGA emulation.
+       Use service thread for the periodic refresh.
+
+       * loader/dos/module.c: Ove Kaaven <ovek@arcticnet.no>
+       Cleanup VGA refresh when terminating.
+
+       * win32/console.c: Ove Kaaven <ovek@arcticnet.no>
+       Handle backspace correctly.
+
+2000-01-31  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure, Make.rules.in, */Makefile.in:
+       Build most dlls as separate shared libraries.
+
+2000-01-30  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure.in, include/config.h.in, server/context_i386.c, configure:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added configure check for sys/reg.h.
+
+       * dlls/comctl32/imagelist.c, include/imagelist.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       Overlay indices are signed shorts (-1 means no overlay)
+       (ImageList_SetOverlayIndex) should accept -1 as overlayindex.
+       (ImageList_Read) We can read a NxM bitmap from the stream and have
+       to convert it into a 1x(M*N) bitmap, set cCurImage,cMaxImage. Added
+       documentation.
+       (others) removed some potential operator precendence problems.
+
+       * objects/dc.c: Marcus Meissner <marcus@jet.franken.de>
+       GetDeviceCaps: spot yet unsupported accesses to the DeviceCaps struct.
+
+       * include/wine/exception.h, miscemu/main.c, win32/except.c, Makefile.in, debugger/dbg.y, debugger/external.c, dlls/ntdll/exception.c, include/debugger.h, include/thread.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved debugger to libwine to make it available to WineLib apps.
+       Try to invoke external debugger if internal debugger crashes.
+       Try to handle early invocation of debugger more gracefully.
+
+       * include/main.h, include/process.h, include/task.h, loader/main.c, scheduler/process.c, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Mark initial process as 32-bit for WineLib apps.
+       Use teb->tibflags instead of teb->flags (for Win95 USER32 compatibility).
+       Removed unused thread event.
+
+       * files/profile.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - Windows skips the '\t' and ' ' at the beginning and end of section
+         key names of .INI files.
+       - Fixed Get/WritePrivateProfileStructA():
+         - (re-)translate the binary data into ASCII hex chars
+         - add checksum / checking of it
+
+----------------------------------------------------------------
+2000-01-30  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure.in, include/config.h.in, server/context_i386.c, configure:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added configure check for sys/reg.h.
+
+       * dlls/comctl32/imagelist.c, include/imagelist.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       Overlay indices are signed shorts (-1 means no overlay)
+       (ImageList_SetOverlayIndex) should accept -1 as overlayindex.
+       (ImageList_Read) We can read a NxM bitmap from the stream and have
+       to convert it into a 1x(M*N) bitmap, set cCurImage,cMaxImage. Added
+       documentation.
+       (others) removed some potential operator precendence problems.
+
+       * objects/dc.c: Marcus Meissner <marcus@jet.franken.de>
+       GetDeviceCaps: spot yet unsupported accesses to the DeviceCaps struct.
+
+       * include/wine/exception.h, miscemu/main.c, win32/except.c, Makefile.in, debugger/dbg.y, debugger/external.c, dlls/ntdll/exception.c, include/debugger.h, include/thread.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved debugger to libwine to make it available to WineLib apps.
+       Try to invoke external debugger if internal debugger crashes.
+       Try to handle early invocation of debugger more gracefully.
+
+       * include/main.h, include/process.h, include/task.h, loader/main.c, scheduler/process.c, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Mark initial process as 32-bit for WineLib apps.
+       Use teb->tibflags instead of teb->flags (for Win95 USER32 compatibility).
+       Removed unused thread event.
+
+       * files/profile.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - Windows skips the '\t' and ' ' at the beginning and end of section
+         key names of .INI files.
+       - Fixed Get/WritePrivateProfileStructA():
+         - (re-)translate the binary data into ASCII hex chars
+         - add checksum / checking of it
+
+       * files/directory.c, misc/registry.c, documentation/wine.conf.man.in, wine.ini:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - fixes, loading of settings per user
+       - autodetecting of windows registry version
+
+       * dlls/commdlg/filedlgbrowser.c, dlls/dplayx/dpclassfactory.c, dlls/dsound/dsound_main.c, dlls/ole32/oleobj.c, dlls/oleaut32/typelib.c, include/wine/obj_base.h:
+       Francois Gouget <fgouget@psn.net>
+       The COM virtual tables must use the
+       'ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE' macro to provide padding in C++.
+
+       * msdos/int09.c: Ove Kaaven <ovek@arcticnet.no>
+       Made int9 handler add keystroke to BIOS keyboard buffer.
+
+       * loader/dos/dosmod.c, loader/dos/dosmod.h:
+       Ove Kaaven <ovek@arcticnet.no>
+       dosmod protocol revision 3, featuring MPROTECT and ENTERIDLE.
+
+       * include/wincon.h: Ove Kaaven <ovek@arcticnet.no>
+       Added a couple of prototypes.
+
+       * winedefault.reg: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Add information about code pages to default registry.
+
+       * configure.in, Make.rules.in, configure:
+       Patrik Stridvall <ps@leissner.se>
+       - Unixware (Solaris) linker typo fixed
+       - Solaris (and possibly Unixware) specific linker support for the
+         GNU:ism --[no-]whole-archive
+       - Solaris make specific makefile fix
+
+       * server/context_i386.c: Patrik Stridvall <ps@leissner.se>
+       Solaris support for {set,get}_thread_context added.
+
+2000-01-29  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/context_i386.c:
+       Added our own user_regs_struct definition for better compatibility.
+
+       * controls/button.c, windows/dialog.c:
+       Dmitry Timoshkov <dmitry@sloboda.ru>
+       Correct the behaviour of the accelerator keys in dialogs according to
+       the Windows' one.
+
+       * programs/notepad/.cvsignore, programs/notepad/Makefile.in, programs/notepad/dialog.c, programs/notepad/main.c, programs/notepad/main.h, programs/notepad/notepad.rc, programs/notepad/rsrc.rc, programs/progman/.cvsignore, programs/progman/Makefile.in, programs/progman/Xx.rc, programs/progman/accel.rc, programs/progman/main.c, programs/progman/rsrc.rc, programs/winhelp/.cvsignore, programs/winhelp/Makefile.in, programs/winhelp/Pt.rc, programs/winhelp/Xx.rc, programs/winhelp/rsrc.rc, programs/winhelp/winhelp.c, programs/clock/.cvsignore, programs/clock/Makefile.in, programs/clock/clock.rc, programs/clock/main.c, programs/clock/rsrc.rc:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Link only a single .rc file with application.
+
+       * windows/x11drv/wnd.c, dlls/shell32/shlfolder.c, documentation/no-windows, documentation/wine.man.in, graphics/d3dtexture.c, if1632/snoop.c, loader/loadorder.c, loader/ne/module.c, loader/pe_image.c, scheduler/process.c, BUGS, README, dlls/comctl32/treeview.c, dlls/dplayx/dplay.c, dlls/ole32/storage32.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - add some documentation items
+       - fix some spelling
+       - fix some warnings
+
+       * dlls/winmm/mcicda/mcicda.c, documentation/cdrom-labels, files/drive.c, include/cdrom.h, include/debugdefs.h, include/drive.h, libtest/volinfo.c, misc/cdrom.c, msdos/int2f.c, wine.ini:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - support for reading labels and serial nums from device
+       - "reasonable" misc/cdrom.c device handling
+       - much improved audio CD support
+       - serial number overwrite bug fix
+       - spelling fixes
+
+       * Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/setupx/.cvsignore, dlls/setupx/Makefile.in, dlls/setupx/setupx.spec, dlls/setupx/setupx_main.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added SETUPX dll.
+
+       * dlls/ole32/ole2.spec, server/process.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed minor issues found by winapi_check.
+
+       * tools/winapi_check/*:
+       Patrik Stridvall <ps@leissner.se>
+       - Minor fixes.
+       - Moved some of the API specifications from the global file to the
+         local files.
+
+       * include/imagelist.h, dlls/comctl32/imagelist.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Implemented ImageList_Read (not 100% correct in regarding to setting
+       the bitmap).
+       Filled out unknown members of ILHEAD.
+       Started reordering IMAGELIST to make it Windows binary compatible.
+
+       * dlls/shell32/iconcache.c: Marcus Meissner <marcus@jet.franken.de>
+       nIconIndex == -1 should return nr of available icons, not 0.
+
+       * Makefile.in: Fixed building of dosmod and wineclipsrv.
+
+       * misc/debugstr.c:
+       Bug fix: added temp structure to cope with debug traces during thread
+       startup.
+
+       * win32/newfns.c, windows/msgbox.c, dlls/avifil32/avifile.c, dlls/ntdll/misc.c, dlls/ntdll/nt.c, dlls/ntdll/sec.c, dlls/ntdll/sync.c, if1632/snoop.c, include/debugstr.h, libtest/vartest.c, loader/resource.c, objects/text.c, relay32/relay386.c, relay32/snoop.c, relay32/utthunk.c:
+       Removed debugstr.h.
+
+       * misc/debugstr.c, scheduler/thread.c, if1632/relay.c, include/debugtools.h, include/thread.h:
+       Use a per-thread buffer and write(2) for debug traces.
+       Removed debug_dumpstr.
+
+2000-01-27  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/ntdll/rtlstr.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Small fix.
+
+       * server/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Get HCU name from unix user name.
+
+       * scheduler/process.c, server/process.c, server/process.h, server/request.h, server/thread.c, server/trace.c, tools/make_requests, include/server.h, memory/selector.c:
+       Implemented GetThreadSelectorEntry through the server.
+
+2000-01-26  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/winmm/lolvldrv.c:
+       Dynamically load version.dll in MMDRV_GetDescription32.
+
+       * dlls/ole32/ole2.c:
+       Use a linked list instead of a DPA for the hook list.
+
+       * windows/x11drv/clipboard.c:
+       Use a linked list instead of a DPA to manage pixmaps.
+
+       * dlls/ole32/storage32.c, dlls/ole32/storage32.h, dlls/ole32/stg_stream.c:
+       Gerard Patel <g.patel@wanadoo.fr>
+       Returns an error if trying to write to a stream opened for read.
+
+       * files/directory.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Add a newbie warning for slashes in the search Path= of wine.conf.
+
+       * graphics/ddraw.c: Ove Kaaven <ovek@arcticnet.no>
+       Wait for ShmCompletion during Flip.
+
+       * configure.in, libtest/Makefile.in, Make.rules.in, Makefile.in, configure:
+       Made --enable-dll the default.
+       Use $(MAKE) instead of $(SUBMAKE) for recursive makes.
+       Cleaned up install targets in main Makefile.
+
+       * dlls/ntdll/sync.c: Don't crash when ObjectAttributes is NULL.
+
+2000-01-25  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/x11drv/monitor.c, debugger/dbgmain.c, debugger/stabs.c, dlls/crtdll/crtdll_main.c, include/options.h, loader/dos/module.c, loader/main.c, misc/main.c, miscemu/main.c, scheduler/client.c:
+       Use argv[0] to locate the server executable.
+
+       * memory/heap.c, include/heap.h, include/process.h, include/winnt.h, memory/environ.c, memory/global.c:
+       Alexandre Julliard <julliard@codeweavers.com>
+       Share the system heap between different address spaces. Made process
+       heap per-address space instead of per-process.
+
+       * server/thread.h, server/trace.c, Makefile.in, include/server.h, include/thread.h, loader/main.c, misc/registry.c, scheduler/client.c, scheduler/process.c, scheduler/thread.c, server/Makefile.in, server/main.c, server/object.c, server/object.h, server/process.c, server/process.h, server/request.c, server/request.h, server/select.c, server/thread.c:
+       Alexandre Julliard <julliard@codeweavers.com>
+       Made the server listen for new clients on a Unix socket in
+       $HOME/.wine. Newly started wine processes now attach to an existing
+       server if one is running.
+
+       * files/profile.c, include/options.h:
+       Added PROFILE_GetConfigDir function.
+
+2000-01-24  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/advapi32/registry.c, dlls/ntdll/reg.c, dlls/ntdll/sync.c, dlls/winsock/socket.c, include/server.h, scheduler/client.c, server/*.c:
+       Changed the server to return STATUS_* error codes.
+
+       * dlls/ntdll/Makefile.in, dlls/ntdll/error.c, dlls/ntdll/rtl.c:
+       Built a complete translation table for RtlNtStatusToDosError.
+
+       * include/winerror.h, include/winnt.h: Added some error codes.
+
+       * windows/nonclient.c:
+       Use GetProcAddress instead of calling ShellAboutA directly.
+
+2000-01-23  Alexandre Julliard  <julliard@winehq.com>
+
+       * Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/version/Makefile.in, dlls/version/ver.spec, dlls/version/ver16.c:
+       Merged dlls/ver into dlls/version.
+
+       * dlls/advapi32/advapi32.spec, dlls/advapi32/security.c, dlls/ntdll/Makefile.in, dlls/ntdll/file.c, dlls/ntdll/misc.c, dlls/ntdll/nt.c, dlls/ntdll/ntdll.spec, dlls/ntdll/ntdll_misc.h, dlls/ntdll/om.c, dlls/ntdll/reg.c, dlls/ntdll/rtl.c, dlls/ntdll/rtlstr.c, dlls/ntdll/sec.c, dlls/ntdll/sync.c, include/ntddk.h, include/ntdef.h, include/ntsecapi.h, include/winbase.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
+         NtAllocateLocallyUniqueId
+       - implementation or stubs for NtAccessCheck, NtSetSecurityObject,
+         RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
+         RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
+         RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
+         RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
+         RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
+         RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
+         RtlValidSid, RtlxUnicodeStringToOemSize
+       - corrected most RtlString* functions, added documentation
+       - more fixes and partial implementations
+
+       * misc/main.c, windows/x11drv/event.c, windows/x11drv/main.c, graphics/ddraw.c, include/options.h:
+       Ove Kaaven <ovek@arcticnet.no>
+       Added -dxgrab command line option, which confines cursor motion to the
+       DirectX primary surface.
+
+       * dlls/commdlg/filedlg95.c: Marcus Meissner <marcus@jet.franken.de>
+       Replaced some weird C constructs (char[]="" ) with more compatible ones.
+       Added another NULL ptr check in _OnOpen.
+
+       * misc/winsock_async.c, relay32/Makefile.in, relay32/wsock32.spec, Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/winsock/.cvsignore, dlls/winsock/Makefile.in, dlls/winsock/async.c, dlls/winsock/socket.c, dlls/winsock/winsock.spec, dlls/winsock/wsock32.spec, if1632/Makefile.in, if1632/winsock.spec, misc/Makefile.in, misc/winsock.c:
+       Moved winsock implementation to dlls/winsock.
+
+       * dlls/*/.cvsignore:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added *.spec.c, *.spec.glue.s, *.glue.c to .cvsignore that need them.
+
+       * graphics/x11drv/dib.c: Marcus Meissner <marcus@jet.franken.de>
+       Corrected arguments to VirtualFree().
+
+       * dlls/shell32/pidl.c, dlls/shell32/shlfolder.c, include/wine/winestring.h, memory/string.c:
+       Dmitry Timoshkov <dmitry@sloboda.ru>
+       Replaced LocalToWideChar() by lstrcpynAtoW(), WideCharToLocal() by
+       lstrcpynWtoA().
+
+       * windows/winproc.c: Gerard Patel <g.patel@wanadoo.fr>
+       Map WM_MENUSELECT 32->16 bits for closing menu.
+
+       * windows/mdi.c: Gerard Patel <g.patel@wanadoo.fr>
+       Fix parameters for MDI_RestoreFrameMenu in WM_DESTROY msg.
+
+       * dlls/oleaut32/oleaut.c: Marcus Meissner <marcus@jet.franken.de>
+       Implemented (Register|Get|Revoke)ActiveObject from the docs.
+
+       * graphics/ddraw.c, include/x11drv.h, windows/x11drv/event.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Supercharged XShm implementation for DirectDraw.
+
+       * debugger/msc.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: missing NULL pointer checks.
+
+       * loader/pe_image.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Check for MZ header before trying to decipher the PE header.
+
+       * relay32/kernel32.spec:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Export GetLongPathName[A|W].
+
+       * memory/global.c, memory/heap.c:
+       Guy Albertelli <galberte@neo.lrun.com>
+       Fix problems with GlobalHandle and GlobalFree so results match Win98.
+       Restructure HEAP_ValidateInUseArena, HeapValidate, and add
+       HEAP_IsRealArena to eliminate *bogus* error messages.
+
+       * windows/message.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Actually print return value of message.
+
+       * objects/dib.c: Marcus Meissner <marcus@jet.franken.de>
+       Corrected arguments in DIB_DeleteDIBSection.
+
+       * files/file.c: Marcus Meissner <marcus@jet.franken.de>
+       Handle \\.\<dosdevice> like <dosdevice> in CreateFile. Tested with
+       help of James Feeney <james@nurealm.net>.
+
+2000-01-20  Alexandre Julliard  <julliard@winehq.com>
+
+       * scheduler/debugger.c, scheduler/thread.c, server/Makefile.in, server/context_i386.c, server/debugger.c, server/object.h, server/request.h, server/trace.c, tools/make_requests, include/server.h:
+       Alexandre Julliard <julliard@codeweavers.com>
+       Added Get/SetThreadContext support through the server.
+
+2000-01-18  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/dinput.c, dlls/oleaut32/ole2disp.c, dlls/oleaut32/oleaut.c, dlls/oleaut32/olefont.c, dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, dlls/shell32/enumidlist.c, dlls/shell32/folders.c, dlls/shell32/memorystream.c, dlls/shell32/regstream.c, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, dlls/shell32/shv_bg_cmenu.c, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c, include/debugstr.h, misc/debugstr.c, dlls/avifil32/avifile.c, dlls/dplayx/dpclassfactory.c, dlls/dplayx/dplay.c, dlls/dplayx/dplobby.c, dlls/dsound/dsound_main.c, dlls/ole32/clipboard.c, dlls/ole32/datacache.c, dlls/ole32/defaulthandler.c, dlls/ole32/ifs.c, dlls/ole32/storage.c:
+       Added debugstr_guid function and used it to replace
+       WINE_StringFromCLSID in all debugging messages.
+
+       * dlls/winmm/wineoss/audio.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Always initialize lpWaveHdr->lpNext to NULL.
+       Don't fail on strange fragment sizes.
+
+2000-01-17  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/winnls.h: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Add some defines needed for Unicode to Ascii conversions.
+
+       * misc/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Better error handling, less keys held open.
+
+       * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
+       EnumDisplayModes must pass lPitch.
+
+       * controls/menu.c: Gerard Patel <g.patel@wanadoo.fr>
+       Validate the menu handles.
+
+       * dlls/win87em/emulate.c: Gerard Patel <g.patel@wanadoo.fr>
+       Rounds to the lowest integer, not the nearest.
+
+       * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed race between Win16 parent and child for first rescheduling
+       of child process. This fixes WinExec returning too early.
+
+2000-01-16  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure, configure.in: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Use --whole-archive to force linking all of libwine.a. into wine.
+
+       * if1632/builtin.c, include/builtin16.h, include/builtin32.h, relay32/builtin32.c, tools/build.c:
+       Added automatic registration of built-in DLLs.
+
+2000-01-15  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure.in, configure: Aaron Hope <edh@mail.brioforge.com>
+       Fixed IPX detection.
+
+       * misc/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
+       New implementation of the win95 registry loader.
+
+       * dlls/advapi32/registry.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       If there is enough space in the buffer and the type is REG_SZ and the
+       string is not 0-terminated RegQueryValue and RegEnumValue are appending a 0.
+
+       * debugger/hash.c: Gerard Patel <g.patel@wanadoo.fr>
+       Display the external modules after the internal modules in crash report.
+
+       * files/drive.c: Ove Kaaven <ovek@arcticnet.no>
+       Made SetVolumeLabel report failure on CD-ROM drives.
+
+       * documentation/status/directplay:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       Updated documentation.
+
+       * dlls/winmm/lolvldrv.c, dlls/winmm/mci.c, include/driver.h, windows/driver.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Replaced Wine specific DRIVER_GetType by a correct implementation of
+       GetDriverFlag.
+
+       * configure, configure.in, include/wine_gl.h:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       - (ugly) fix for the 'Xmd.h' problem
+       - fix the detection of DGA 2 in configure script
+
+       * include/thread.h, scheduler/thread.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - added NT fields to TEB
+       - moved tls-fields and some wine specific fields to a higher offset
+       - added some documentation
+       - initialisation of the UnicodeString
+
+       * dlls/dsound/dsound_main.c: Todd T. Fries <todd@fries.net>
+       Add HAVE_SOUNDCARD_H to support OpenBSD.
+
+       * include/wingdi.h, objects/enhmetafile.c, relay32/gdi32.spec:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       - Added some missing EMR record types and updated and fixed others
+       - Added stubs and headers for CreateColorSpace,DeleteColorSpace and SetColorSpace
+       - Added header for SetICMMode
+       - Added ability to play more enhanced metafile records
+
+       * graphics/enhmetafiledrv/init.c:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       Store reference hdc size into enhanced metafile header when creating.
+
+       * dlls/ole32/moniker.c, dlls/ole32/ole2stubs.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Implemented OleRun.
+
+       * objects/dc.c: Gerard Patel <g.patel@wanadoo.fr>
+       Removed DeleteObject call left over from previous patch.
+
+       * win32/thread.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed bad register constraint in InterlockedCompareExchange.
+
+       * include/winbase.h: Ove Kaaven <ovek@arcticnet.no>
+       Added prototypes for the NT synchronization functions
+       InterlockedCompareExchange and InterlockedExchangeAdd.
+
+       * loader/module.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Don't access 'wm->modname' after the modref has been flushed.
+
+       * memory/global.c: Guy Albertelli <galberte@neo.lrun.com>
+       Added null check in GlobalHandle.
+
+2000-01-12  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/comctl32/datetime.c, dlls/comctl32/monthcal.c, dlls/oleaut32/parsedt.c, include/monthcal.h:
+       Removed a dependency between oleaut32 and comctl32.
+
+       * include/winnt.h: Juergen Schmied <juergen.schmied@debitel.net>
+       More STATUS_ codes.
+
+       * include/ddraw.h: Steve Langasek <vorlon@dodds.net>
+       Fixed macro definition of IDirectDrawSurface_Restore.
+       Added defines for Ddraw's WaitForVerticalDisplay().
+
+       * include/dsound.h: Steve Langasek <vorlon@dodds.net>
+       Fixed typos in macro definitions for IDirectSoundBuffer_GetStatus,
+       IDirectSoundBuffer_Unlock.
+
+       * include/mmsystem.h: Steve Langasek <vorlon@dodds.net>
+       Missing Winelib declarations for AUXCAPS.
+
+       * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fix (harmless) assembler warnings.
+
+       * dlls/dplayx/dplay.c: Peter Hunnisett <hunnise@nortelnetworks.com>
+       Fix problem with initialization (reported by Andreas Mohr).
+
+       * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
+       InfoPtr checking mixed up WM_DESTROY and WM_CREATE.
+
+----------------------------------------------------------------
+Sun Jan  9 21:42:42 2000  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/wnaspi32/winaspi32.c: Patrik Stridvall <ps@leissner.se>
+       Non-Linux compile fix.
+
+       * files/dos_fs.c: Francois Gouget <fgouget@psn.net>
+       DOSFS_DoGetFullPathName would underflow (p would get past the
+       beginning of buffer) if given the name "//..".
+       Regrouped the handling of the directory separators.
+       Directory separators in the returned path are now alway a single "\"
+       which simplifies the handling of ".." in the name.
+
+       * dlls/advapi32/registry.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Corrected behaviour of RegOpenKey in case of failure.
+
+       * misc/registry.c, server/registry.c, server/trace.c, include/server.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - removed copying of HKEY_USERS to HKEY_CURRENT_USER
+       - HKEY_CURRENT_USER is now subkey of HKEY_USERS
+       - changed query_key_info_request to return the key name too (NtQueryKey needs this)
+       - the rootkeys (MACHINE and USER) do have names
+
+       * include/gdi.h, objects/dc.c, objects/gdiobj.c:
+       Gerard Patel <g.patel@wanadoo.fr>
+       Avoid deleting of the default 1x1 bitmap for memory DCs.
+
+       * include/builtin16.h, include/builtin32.h, loader/ne/module.c, relay32/builtin32.c, relay32/user32.spec, tools/build.c, dlls/comctl32/comctl32.spec, dlls/commdlg/comdlg32.spec, dlls/display/display.spec, dlls/mouse/mouse.spec, dlls/shell32/shell32.spec, dlls/winmm/winmm.spec, if1632/builtin.c:
+       Built-in DLLs resources are now specified in spec file.
+       Removed unnecessary flags in built-in DLLs tables.
+
+       * if1632/dummy.c, if1632/gdi.spec, if1632/user.spec, misc/Makefile.in, misc/bidi16.c:
+       Erez Volk <erez@gmx.net>
+       Added stubs for some BiDi API functions.
+
+       * dlls/winmm/mciwave/mciwave.c:
+       Bradley Baetz <bbaetz@student.usyd.edu.au>
+       Fixed race condition between app and wine in WAVE_mciPlay.
+
+       * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
+       Stop menu tracking when clicking on the menu bar where there is no
+       menu item.
+
+       * win32/newfns.c: Erez Volk <erez@gmx.net>
+       Better error reporting.
+
+Sat Jan  8 22:27:31 2000  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/x11drv/xfont.c:
+       Backed out scalable bitmap change (gives ugly results).
+
+       * controls/menu.c: Marcus Meissner <marcus@jet.franken.de>
+       GetMenuString should return itemlength on 0 nMax or NULL str
+       InsertItem pos=-1, flags = 0 should append item
+       (thanks to Sander van Leeuwen)
+
+       * include/aspi.h, dlls/wnaspi32/winaspi32.c, dlls/wnaspi32/wnaspi32.spec:
+       David Elliott <dfe@netnitco.net>
+       Removed malloc/free hack and replaced with HeapAlloc/HeapFree throughout code.
+       Added critical section around code dealing with global variables.
+       Added a few comments about how ASPI is supposed to work.
+       Copy sense info into the correct place (right after the fixed 16-byte CDB).
+       Now returns target status (many Windows apps won't even look at the
+       sense are unless they get an error code).
+       Added SC_ABORT_SRB FIXME.
+       Added SC_GET_DISK_INFO place holder for clarity.
+       Updated Linux SG interface structure to include new kernel 2.2
+       status fields.
+
+       * Make.rules.in: Marcus Meissner <marcus@jet.franken.de>
+       Look for our header files first, then for systems headers.
+
+       * dlls/commdlg/filedlg.c: Marcus Meissner <marcus@jet.franken.de>
+       The new filedialog stuff does not handle template. So do not call if
+       there are any.
+
+       * windows/winpos.c: Rein Klazes <rklazes@casema.net>
+       Avoid problems during changing the Z-order if the window and the
+       window to insert after are the same.
+
+       * libtest/expand.c, libtest/hello5.c:
+       Marcus Meissner <Marcus.Meissner@caldera.de>
+       Removed GUI junk from expand.c, so you can use it in commandline mode.
+       Fixed hello5.c.
+
+       * dlls/imagehlp/imagehlp.spec, dlls/imm32/imm32.spec:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some issues found by winapi_check.
+
+       * tools/winapi_check/win32/shell32.api, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_local.pm:
+       Patrik Stridvall <ps@leissner.se>
+       - Added support for auto allocated ordinals
+       - Fixed varargs (16 bit) bug
+       - Minor fixes
+
+       * dlls/version/info.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed alignment problem with VERSION_INFO members.
+
+Wed Jan  5 03:24:52 2000  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure, configure.in: Marcus Meissner <marcus@jet.franken.de>
+       Add $X_EXTRA_LIBS to any X dependend checks or they will fail if some
+       of the $X_EXTRA_LIBS are required.
+
+       * windows/defwnd.c, windows/painting.c:
+       Patrik Stridvall <ps@leissner.se>
+       - Made FillRect behave like it does on Windows
+       - Cleaned up WM_{,ICON}ERASEBACKGROUND default handling
+       - Added some comments on how Windows behaves
+
+       * windows/winhelp.c: Peter Ganten <peter@ganten.org>
+       Check if winhelp is already running; use winhlp32.exe or winhelp.exe
+       depending on the emulated version, relase win16lock before calling
+       WinHelpA.
+
+       * AUTHORS, include/authors.h:
+       Updated authors list from the Changelog. Please let me know if you
+       have been left out.
+
+       * documentation/fonts: Marcus Meissner <marcus@jet.franken.de>
+       TrueType clarification.
+
+       * configure, configure.in, graphics/d3ddevices.c, graphics/d3dtexture.c, include/acconfig.h, include/config.h.in:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       - detect if the OpenGL implementation defines the paletted texture and
+         color table extensions
+       - small warning fixes
+       - fix the double '-lXxf86dga' when having DGA 2.0
+
+       * include/winbase.h: Marcus Meissner <marcus@jet.franken.de>
+       Some comm clean up, much more error messages, only use TIOCOUTQ if
+       defined [wine-bugs/104], tried implementing SetCommTimeouts.
+
+       * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
+       - When processing WM_PAINT messages, the treeview might sometimes use
+         the wrong hdc. Fixed.
+       - Better checking for TREEVIEW_INFO *infoPtr=NULL.
+         Similar to code in toolbar.c
+       - Other small fixes (subclassed edit control).
+
+       * debugger/msc.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: uninitialized pointer caused crashes.
+
+       * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
+       Made virus warning a bit more drastic, since some people don't believe us.
+
+       * misc/comm.c: Marcus Meissner <marcus@jet.franken.de>
+       Some comm clean up, much more error messages, only use TIOCOUTQ if
+       defined [wine-bugs/104], tried implementing SetCommTimeouts.
+
+       * files/profile.c: Rein Klazes <rklazes@casema.net>
+       Implement WritePrivateProfileSectionA().
+
+       * dlls/ntdll/rtl.c: Adam Sacarny <magicbox@bestweb.net>
+       Fix for compilers that don't support 'long long' (From Ove Kaaven).
+
+Tue Jan  4 02:40:22 2000  Alexandre Julliard  <julliard@winehq.com>
+
+       * scheduler/thread.c, server/thread.c:
+       Moved allocation of the socket pair for a new thread to the server.
+
+       * server/debugger.c: Made debug events and contexts standard objects.
+       Use sleep_on to wait on debug events.
+
+       * server/request.c, server/request.h, server/thread.c, server/thread.h, server/trace.c:
+       Made sleep_on usable from all requests.
+
+       * dlls/winmm/lolvldrv.c, dlls/winmm/mmsystem.c, include/mmsystem.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added more MIDI messages 16<=>32 mapping.
+       Fixes some bugs in buffers handling and index for MAPPER.
+
+       * include/callback.h, if1632/thunk.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed the obsoleted CallTimeFuncProc, CallDriverProc,
+       CallDriverCallback.
+
+       * dlls/winmm/.cvsignore, dlls/winmm/Makefile.in, dlls/winmm/time.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Put back visible minimum timer resolution to 1 ms.
+       Decorrelate the service thread resolution from the user required timer
+       & visible minimum resolutions.
+       Removed the Callback.TimeFuncProc entry.
+
+       * windows/x11drv/monitor.c: Lionel Ulmer <lionel.ulmer@free.fr>
+       Give +0+0 as a default position for the desktop window.
+
+       * dlls/winmm/mmio.c: Bradley Baetz <bbaetz@student.usyd.edu.au>
+       Convert mmio to allow the use of 32 bit mmio procedures.
+
+       * dlls/shell32/shell32.spec, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlmenu.c, dlls/shell32/systray.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Small fixes.
+
+       * dlls/odbc32/odbc32.spec, misc/registry.c, relay32/kernel32.spec:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some issues found by winapi_check.
+
+       * tools/winapi_check/win32/advapi32.api, tools/winapi_check/win32/comctl32.api, tools/winapi_check/win32/odbc32.api, tools/winapi_check/winapi.pm:
+       Patrik Stridvall <ps@leissner.se>
+       Updated winapi_check to handle the new additions.
+
+       * dlls/comctl32/monthcal.c, include/monthcal.h:
+       Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Implemented WM_SIZE message support. Optimized drawing to use
+       precalculated size values rather than recalculating during each call
+       of MONTHCAL_Refresh.
+
+       * relay32/user32.spec, windows/dialog.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Corrected parameter count for DialogBoxIndirectParamAorW.
+
+       * controls/scroll.c: Rein Klazes <rklazes@casema.net>
+       Don't show the scrollbar if SetScrollinfo() is called with only the
+       SIF_DISABLENOSCROLL flag.
+
+       * windows/x11drv/keyboard.c: Ove Kaaven <ovek@arcticnet.no>
+       Added extra US keymap with the infamous phantom key.
+
+       * Makefile.in, dlls/winmm/wineoss/Makefile.in:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Use a uniform naming scheme for driver modules.
+
+       * include/driver.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Encapsulated Wine internal data into an ifdef __WINE__.
+
+       * windows/Makefile.in, windows/driver.c, windows/.cvsignore:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Moved the 16 bit driver functions callout into the dir.
+
+       * dlls/winmm/wavemap/wavemap.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added support for WODM_BREAKLOOP message.
+
+       * dlls/winmm/wineoss/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed extraneous ERR message.
+
+       * dlls/winmm/mciseq/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added support for MCI_INFO_COPYRIGHT and MCI_INFO_NAME.
+
+       * debugger/hash.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Use case insensitive comparison while searching for new modules.
+
+       * dlls/ntdll/ntdll.spec:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added spec entry for _itoa.
+
+       * tools/wrc/CHANGES, tools/wrc/wrc.h, tools/wrc/writeres.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Generated labels of resource names must be unique throughout the
+       generated code.
+
+       * windows/message.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       "resultp" can be NULL in SendMessageTimeout*().
+
+       * dlls/crtdll/crtdll.spec, dlls/crtdll/crtdll_main.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - prevent mem leak of CRTDLL_acmdln_dll
+       - better argument parsing
+       - last xargv entry has to be NULL
+       - return value is environment pointer instead of NULL
+       - added a spec entry for bsearch()
+
+Sat Jan  1 22:38:21 2000  Alexandre Julliard  <julliard@winehq.com>
+
+       * loader/module.c, scheduler/process.c, windows/message.c, windows/queue.c, windows/user.c, if1632/thunk.c, include/callback.h, include/process.h:
+       Peter Ganten <peter@ganten.org>
+       Implemented WaitForInputIdle.
+
+       * misc/ddeml.c, windows/win.c:
+       Fixed potential buffer overflows (spotted by Francois Gouget).
+
+       * relay32/wow32.spec, dlls/mpr/mpr.spec, dlls/ntdll/ntdll.spec, dlls/psapi/psapi.spec, dlls/shell32/shlwapi.spec, dlls/tapi32/line.c, dlls/tapi32/tapi32.spec, dlls/version/version.spec, dlls/winmm/winmm.spec, relay32/ddraw.spec, relay32/dinput.spec, relay32/gdi32.spec, dlls/avifil32/avifil32.spec, dlls/crtdll/crtdll.spec, dlls/dciman32/dciman32.spec, dlls/dplayx/dplay.spec, dlls/icmp/icmp.spec, dlls/imagehlp/imagehlp.spec, dlls/imm32/imm32.spec, dlls/lzexpand/lz32.spec, dlls/advapi32/advapi32.spec:
+       Make use of automatic ordinal allocation.
+
+       * server/socket.c, server/device.c, server/event.c, server/file.c, server/handle.c, server/mapping.c, server/mutex.c, server/object.c, server/object.h, server/pipe.c, server/process.c, server/registry.c, server/request.c, server/request.h, server/select.c, server/semaphore.c, server/snapshot.c, server/sock.c, server/thread.c, server/thread.h, server/timer.c, server/trace.c, server/Makefile.in, server/change.c, server/console.c:
+       Moved poll handling to the generic part of the server objects.
+       Fixed busy waiting on POLLERR events.
+       Merged struct client into struct thread.
+
+Mon Dec 27 05:26:01 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * win32/process.c, windows/x11drv/wnd.c, dlls/odbc32/proxyodbc.c, dlls/ole32/bindctx.c, dlls/ole32/hglobalstream.c, graphics/ttydrv/bitmap.c, misc/ddeml.c, misc/version.c:
+       Cosmetics.
+
+       * memory/atom.c, memory/environ.c, misc/lstr.c, misc/registry.c, misc/winsock.c, programs/regapi/regapi.c, relay32/builtin32.c, windows/driver.c, windows/mdi.c, windows/x11drv/keyboard.c, dlls/winmm/lolvldrv.c, dlls/winmm/wineoss/mixer.c, files/profile.c, graphics/psdrv/driver.c, graphics/psdrv/font.c, loader/module.c, loader/ne/module.c, loader/task.c, dlls/commdlg/filedlg.c, dlls/commdlg/filetitle.c, dlls/shell32/pidl.c, dlls/shell32/shelllink.c, dlls/shell32/shlfolder.c, dlls/version/install.c:
+       Francois Gouget <fgouget@psn.net>
+       Buffer overflows and strncpy fixes.
+
+       * loader/pe_image.c:
+       PE_FindExportedFunction: use a binary search for function names.
+
+Sun Dec 26 23:12:38 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/advapi32/advapi32.spec, dlls/odbc32/odbc32.spec:
+       Fixed/commented out duplicate entry point names.
+
+       * relay32/builtin32.c, tools/build-spec.txt, tools/build.c:
+       Added support for automatic ordinal allocation.
+       Output list of function names in sorted order.
+       Added support for nameless (ordinal-only) entry points.
+       Cleaned up error handling.
+
+       * include/metafiledrv.h, include/psdrv.h, include/ts_xlib.h, include/ttydrv.h, include/win16drv.h, include/x11drv.h, objects/font.c, objects/text.c, tsx11/X11_calls, tsx11/ts_xlib.c, graphics/metafiledrv/text.c, graphics/psdrv/font.c, graphics/psdrv/ps.c, graphics/psdrv/text.c, graphics/ttydrv/font.c, graphics/ttydrv/text.c, graphics/win16drv/font.c, graphics/win16drv/text.c, graphics/x11drv/text.c, graphics/x11drv/xfont.c, include/gdi.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Move DCFuncs ExtTextOut and GetTextExtentPoint to Unicode.
+       Map a few Unicode chars to the first 0xff in psdrv.
+       Don't expect x11drv to display Unicode chars yet.
+
+       * dlls/comctl32/tooltips.c, dlls/shell32/pidl.c, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlfolder.c, memory/string.c, relay32/relay386.c, relay32/snoop.c:
+       Francois Gouget <fgouget@psn.net>
+       Wrapped some strings in a debugstr_* call.
+       Replaced some calls to debugstr_{a,w} by debugstr_{a,w}n.
+       Removed redundant 'L's for Unicode strings.
+       Tried to harmonize the traces a little bit.
+
+       * misc/debugstr.c: Francois Gouget <fgouget@psn.net>
+       debugstr_w now returns something looking like 'L"xxxx"...'
+
+       * dlls/commdlg/filedlg95.c: Francois Gouget <fgouget@psn.net>
+       FILEDLG95_HandleCustomDialogMessages:
+       - for the three handled messages we must return the required buffer size
+       - for CDM_GETFILEPATH paths like "dir\file" were handled incorrectly
+       - fixed multiple potential buffer overflows.
+       FILEDLG95_OnOpen: fixed a use of strncpy without '\0'.
+       FILEDLG95_SHELL_NewFolder: the size of lpstrCaption was incorrect
+       leading to a buffer overflow.
+
+Sat Dec 25 22:58:59 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * objects/enhmetafile.c: Peter Hunnisett <hunnise@nortelnetworks.com>
+       Added support for playing more record types (still more to come).
+
+       * dlls/comctl32/listview.c: Francois Gouget <fgouget@psn.net>
+       Better support very long strings by avoiding to copy them in a fixed
+       size buffer (one exception partly remains: callback strings).
+       Raise the buffer size to 512 characters.
+       Merge the handling of item 0 and other items together in GetItemA to
+       reduce code duplication.
+
+       * graphics/psdrv/bitmap.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fix PSDRV_StretchDIBits for non-integer byte src widths (1 & 4bpp).
+
+       * dlls/winmm/wineoss/audio.c: Marcus Meissner <marcus@jet.franken.de>
+       Cast the unsigned int to signed, or NEAR_MATCH will not work.
+
+       * misc/cdrom.c, msdos/int2f.c, include/cdrom.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed first/last playable frame referencing.
+
+       * include/mmsystem.h, dlls/winmm/mcicda/mcicda.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed some bogus values in MCI_STATUS handling (position & length of tracks).
+       Added support for MCI_INFO on MEDIA_UPC & MEDIA_IDENTITY commands.
+
+       * windows/rect.c: Marcus Meissner <marcus@jet.franken.de>
+       Test pointers passed to copyrect for NULL.
+
+       * windows/dialog.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Restore erroneously deleted lines.
+
+       * dlls/comctl32/comctl32undoc.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       DPA_DeletePtr was resizing the array to a too small size.
+
+       * windows/winpos.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Avoid infinite loop in WINPOS_FindIconPos if the width of the parent
+       client area is less than the icon spacing.
+
+       * documentation/linux-fat-permissions:
+       Steven Elliott <elliotsl@mindspring.com>
+       Added a document that describes configuring FAT filesystem permissions
+       for Wine.
+
+       * scheduler/thread.c: Juergen Schmied <juergen.schmied@debitel.net>
+       NT allocates one page as TEB. Some native NT-dlls are using this.
+
+       * graphics/x11drv/xfont.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Don't skip usable X fonts. Add support for koi8 fonts.
+
+       * dlls/icmp/icmp_main.c: Francois Gouget <fgouget@psn.net>
+       Modified IcmpCloseHandle and IcmpSendEchoRequest so that we don't
+       crash if the handle is INVALID_HANDLE_VALUE.
+
+       * include/windef.h: Steven Elliott <elliotsl@mindspring.com>
+       Changed the "this_is_a_syntax_error" error message to a more specific
+       error message.
+
+Mon Dec 20 04:14:48 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/metafiledrv/graphics.c, graphics/metafiledrv/init.c, graphics/painting.c, graphics/path.c, graphics/ttydrv/graphics.c, graphics/ttydrv/init.c, graphics/x11drv/graphics.c, graphics/x11drv/init.c, include/gdi.h, include/metafiledrv.h, include/path.h, include/ttydrv.h, include/x11drv.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Move Bezier code out of x11drv into commmon GDI code; if any driver
+       does not implement PolyBezier[To] the curve is approximated to lines
+       and drawn with Polyline.
+       Implement many GDI-Path recording functions (at least the win9x subset).
+       Implement FlattenPath and FillPath.
+
+       * dlls/dplayx/dplayx.spec: Peter Hunnisett <hunnise@nortelnetworks.com>
+       Fixed ordinal numbering and added new spec stub.
+
+       * configure, configure.in: Marcus Meissner <marcus@jet.franken.de>
+       Readded Xpm autoconf checks.
+
+       * ole/ole2nls.c: Rein Klazes <rklazes@casema.net>
+       EnumSystemLocalesA should look for registry values, not subkeys.
+
+       * dlls/wnaspi32/winaspi32.c: Marcus Meissner <marcus@jet.franken.de>
+       Small fix to get GET_DEVICE_TYPE working (verified by Dan Kegel).
+
+       * dlls/comctl32/trackbar.c: Ian Schmidt <ischmidt@cfl.rr.com>
+       Corrected background color and fixed leaking GDI brush.
+
+       * misc/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
+       NT loader: don't stop loading a hive when an error occurs.
+
+       * objects/metafile.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       PlayMetaFile and EnumMetaFile should work if the hdc is a
+       (enh)metafile DC.
+
+       * README: Juergen Lock <nox@jelal.kn-bremen.de>
+       Updated the FreeBSD notes, the LDT patch finally made it into -current.
+
+       * dlls/commdlg/filetitle.c: Francois Gouget <fgouget@psn.net>
+       If lpTitle==NULL and cbBuf==0 then we must return the required buffer
+       size.
+
+       * dlls/comctl32/comctl32.spec, dlls/comctl32/commctrl.c, include/commctrl.h:
+       Shaun Morris <shaun@blueneptune.com>
+       Implemented _TrackMouseEvent for the TME_LEAVE flag.
+
+       * graphics/ddraw.c, graphics/ddraw_private.h:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       Adds resolution / depth switching with DGA 2.0.
+
+----------------------------------------------------------------
+Sun Dec 12 21:28:44 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/x11drv/event.c: Lionel Ulmer <lionel.ulmer@free.fr>
+       Fixed handling of DGA2.0 keyboard events.
+
+       * dlls/msacm32/driver.c, dlls/msacm32/internal.c, dlls/msacm32/msacm32_main.c, dlls/msacm32/wineacm.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added the ability to open several streams on the same driver.
+       Added a few acmMetrics options.
+
+       * dlls/oleaut32/ole2disp.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       SysStringLen can get a NULL pointer (and shall return 0).
+
+       * dlls/winmm/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Now using notification for detecting when a WAVEHDR has been played
+
+       * dlls/winmm/mciwave/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Enhanced synchronization between playback thread and stop/close commands
+       Now using notification for detecting when a WAVEHDR has been played
+
+       * controls/combo.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       ComboBox should not send bogus messages to edit buddy and to itself.
+
+       * files/dos_fs.c: Peter Ganten <peter@ganten.org>
+       Fixed GetShortPathNameA.
+
+       * Makefile.in, configure, configure.in:
+       Moses DeJong <dejong@cs.umn.edu>
+       Fixed missing libwine.so symlink during install. Set the runtime
+       linker path.
+
+       * windows/dialog.c: Murali Pattathe
+       GetNextDlgGroupItem: needs to check the control parent is the main dialog.
+       GetNextTabItem: make sure this control is visible and not disabled.
+
+       * loader/module.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Fixed cmd line length calculation.
+
+       * include/x11drv.h, windows/x11drv/event.c, graphics/ddraw.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       - added support of DGA-2.0 events
+       - fixed the leaving of DGA-2.0 mode
+
+       * controls/menu.c, include/menu.h, windows/winproc.c:
+       Rein Klazes <rklazes@casema.net>
+       In win32 a WM_MENUSELECT message should contain the position when the
+       item refers to a submenu, not the submenu's handle as in win16.
+
+       * files/tape.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixed arg types of FIXMEs.
+
+       * windows/mdi.c: Marcus Meissner <marcus@jet.franken.de>
+       Check for passed invalid window handle in DefMDIChildProc*.
+
+       * dlls/winmm/mmsystem.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fix no. of arguments in a WARN statement.
+
+       * objects/text.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Allows DrawText(16|A|W) to get a NULL string as parameter.
+
+       * scheduler/process.c, dlls/advapi32/service.c, dlls/comctl32/datetime.c, dlls/comctl32/tab.c, dlls/dplayx/dplay.c, graphics/ttydrv/objects.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Fixed compiler warnings.
+
+       * controls/listbox.c, misc/registry.c, misc/version.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Removed 2 useless include winversion.h
+       Do not make autodetected version fix on first calls if it is Win31.
+
+       * dlls/shell32/shell32.spec:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Added StrNCpyA, StrNCpyW.
+
+       * windows/winproc.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Message translation WM_CREATE fixed.
+
+Sat Dec 11 23:56:47 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * relay32/builtin32.c, Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/odbc32/.cvsignore, dlls/odbc32/Makefile.in, dlls/odbc32/odbc32.spec, dlls/odbc32/proxyodbc.c, dlls/odbc32/proxyodbc.h, include/debugdefs.h, include/sql.h, include/sqlext.h, include/sqltypes.h, loader/loadorder.c:
+       Xiang Li
+       Implementation of a proxy ODBC32 dll.
+
+       * windows/x11drv/wnd.c, dlls/shell32/Makefile.in, dlls/shell32/shell32_main.c, dlls/shell32/systray.c, include/winuser.h, include/x11drv.h, windows/nonclient.c:
+       Kai Morich <kai.morich@bigfoot.de>
+       Marcus Meissner <marcus@jet.franken.de>
+       Added systray support.
+       Swallow the windows systray icons into kpanel systray if KDE/KWM is
+       running.
+
+       * documentation/wine.conf.man.in, misc/registry.c, wine.ini:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Added loader for NT registry files.
+
+       * dlls/ntdll/nt.c, include/ntsecapi.h, include/winnt.h, dlls/advapi32/advapi32.spec, dlls/advapi32/security.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Stubs for LsaFreeMemory, LsaQueryInformationPolicy, LsaClose.
+       Small fixes.
+
+       * include/wingdi.h, objects/enhmetafile.c, objects/region.c, relay32/gdi32.spec:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       - Implemented GetEnhMetaFilePaletteEntries
+       - Added fixme stubs for SetMetaRgn and GetMetaRgn
+       - Added support for playing several enhanced metafile records
+       - Added beginnings of implementation for playing the rest of the
+         enhanced metafile records
+
+       * graphics/ttydrv/Makefile.in, graphics/ttydrv/bitmap.c, graphics/ttydrv/brush.c, graphics/ttydrv/clipping.c, graphics/ttydrv/dc.c, graphics/ttydrv/dib.c, graphics/ttydrv/font.c, graphics/ttydrv/graphics.c, graphics/ttydrv/init.c, graphics/ttydrv/objects.c, graphics/ttydrv/oembitmap.c, graphics/ttydrv/palette.c, graphics/ttydrv/pen.c, graphics/ttydrv/text.c, include/ttydrv.h, windows/ttydrv/main.c, windows/ttydrv/monitor.c, windows/ttydrv/wnd.c:
+       Patrik Stridvall <ps@leissner.se>
+       Improved the TTY driver.
+
+       * files/file.c: Peter Ganten <peter@ganten.org>
+       Return an error if lpOverlapped is provided to ReadFile / WriteFile.
+
+       * misc/wsprintf.c: Marcus Meissner <marcus@jet.franken.de>
+       Do not confuse the 0 fill magic of wsprintf with the "0x" hex prefix.
+
+       * dlls/winmm/mmsystem.c, dlls/winmm/wavemap/wavemap.c:
+       Bradley Baetz <bbaetz@student.usyd.edu.au>
+       The wavemap driver wasn't passing the callback type to the
+       DriverCallback routine correctly.
+
+       * files/tape.c: Added missing WINAPIs.
+
+       * windows/syscolor.c: Marcus Meissner <marcus@jet.franken.de>
+       If we have registry entries, use them. Never mind which version we
+       autodetected.
+
+       * dlls/oleaut32/oleaut32.spec, misc/port.c, tools/bin2res.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some issues found by winapi_check.
+
+       * tools/winapi_check/win16/display.api, tools/winapi_check/win16api.dat, tools/winapi_check/win32api.dat, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_local.pm, tools/winapi_check/winapi_parser.pm:
+       Patrik Stridvall <ps@leissner.se>
+       Minor fixes and additions.
+
+       * loader/ne/resource.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Added missing 'return' statement.
+
+       * dlls/commdlg/filedlg95.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Small fixes.
+
+Fri Dec 10 03:47:14 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/queue.h, windows/dialog.c, windows/message.c, windows/nonclient.c, windows/queue.c, controls/menu.c, include/message.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Perform 16/32A/32W message mapping for posted messages.
+
+       * files/Makefile.in, files/tape.c, include/debugdefs.h, relay32/kernel32.spec:
+       Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Added stubs for the WinNT tape backup functions.
+
+       * debugger/msc.c, debugger/source.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Parse CodeView type/symbol info with 32-bit type indices.
+       Added (partial) support for VC 5/6 .PDB files.
+       Fixed treatment of source file names containing path.
+
+       * server/registry.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Fixed off-by-one error.
+
+       * scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Show main window if CreateProcess was called without the
+       STARTF_USESHOWWINDOW flag.
+
+       * loader/pe_image.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Implemented PE_UnloadLibrary().
+
+       * include/dinput.h, windows/dinput.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       - do not loose initial auto-repeat status when acquiring the keyboard more
+         than one time
+       - support of DirectX 7's DIMOUSESTATE2 structure
+
+       * dlls/ntdll/nt.c, dlls/ntdll/ntdll.spec:
+       Marcus Meissner <Marcus.Meissner@lst.de>
+       Added NtPowerInformation stub.
+
+       * dlls/ole32/bindctx.c: Gerard Patel <g.patel@wanadoo.fr>
+       Transfer only cbStruct size in BindCtxImpl_S(G)etOptions.
+
+Wed Dec  8 03:56:34 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/x11drv/event.c, windows/x11drv/keyboard.c, windows/message.c, windows/nonclient.c, windows/painting.c, windows/win.c, windows/keyboard.c, scheduler/critsection.c, scheduler/debugger.c, scheduler/process.c, win32/kernel32.c, win32/newfns.c, msdos/dosmem.c, objects/bitmap.c, objects/clipping.c, objects/font.c, ole/ole2nls.c, loader/elfdll.c, loader/module.c, loader/pe_image.c, loader/resource.c, loader/task.c, memory/instr.c, memory/local.c, misc/registry.c, graphics/bitblt.c, graphics/metafiledrv/objects.c, graphics/x11drv/dib.c, if1632/thunk.c, files/directory.c, files/dos_fs.c, files/drive.c, dlls/shell32/pidl.c, dlls/shell32/shell.c, dlls/shell32/shell32_main.c, dlls/shell32/shellole.c, dlls/tapi32/line.c, dlls/comctl32/comctl32undoc.c, dlls/comctl32/flatsb.c, dlls/ole32/storage.c, dlls/oleaut32/typelib.c, dlls/advapi32/crypt.c, dlls/advapi32/security.c, dlls/avifil32/avifile.c, controls/edit.c:
+       Dimitrie O. Paun <dimi@cs.toronto.edu>
+       Make use of the DEFAULT_DEBUG_CHANNEL where appropriate.
+       Use the default version of FIXME, ERR, WARN, TRACE for the default
+       channel.
+
+       * include/module.h, loader/module.c, scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Delay sending debug events until process initialization is complete.
+
+       * documentation/status/multimedia: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated, added chapter on configuration and architecture.
+
+       * dlls/winmm/mmio.c: Bradley Baetz <bbaetz@student.usyd.edu.au>
+       - Fix MMIO_{Open,Rename} to check the filename (of the form
+         file.ext+ABC) for the correct mmio procedure to use.
+       - mmioStringToFOURCC now converts to uppercase if asked to, and handles
+         strings of length < 4.
+
+       * controls/edit.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Fix problem with EN_UPDATE notification sent by edit control.
+
+Mon Dec  6 01:20:01 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/mouse/.cvsignore, dlls/mouse/Makefile.in, dlls/mouse/mouse.spec, dlls/mouse/mouse_main.c, dlls/mouse/mouserc.rc, documentation/resources, if1632/.cvsignore, if1632/Attic/display.spec, if1632/Attic/mouse.spec, if1632/Makefile.in, if1632/builtin.c, loader/ne/resource.c, windows/Attic/display.c, windows/Attic/mouse.c, windows/Makefile.in, Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/display/.cvsignore, dlls/display/Makefile.in, dlls/display/disp.rc, dlls/display/display.spec, dlls/display/display_main.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added .rc file support for Win16 NE modules.
+       Moved display.c and mouse.c to separate dll directories.
+
+       * controls/combo.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Allow to deselect all items by sending CB_SETCURSEL(-1) to the combo.
+
+Sun Dec  5 23:54:04 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/painting.c, graphics/enhmetafiledrv/dc.c, graphics/enhmetafiledrv/graphics.c, graphics/enhmetafiledrv/init.c, graphics/metafiledrv/dc.c, graphics/metafiledrv/graphics.c, graphics/metafiledrv/init.c, graphics/psdrv/graphics.c, graphics/psdrv/init.c, graphics/ttydrv/graphics.c, graphics/ttydrv/init.c, graphics/win16drv/init.c, graphics/x11drv/graphics.c, graphics/x11drv/init.c, include/enhmetafiledrv.h, include/gdi.h, include/metafiledrv.h, include/path.h, include/psdrv.h, include/ttydrv.h, include/x11drv.h, graphics/painting.c, graphics/path.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixes several bugs in gdi path handling.
+       Adds *Path functions to dc funcs table + add EnhMetaFile recording.
+       Separate out Polylne/PolylineTo and PolyBezier/PolyBezierTo in dc
+       funcs table to enable proper enhmetafile recording.
+       The current position update in *To functions is now handled by the
+       main function and not in the drivers.
+       Move USER functions from graphics/painting.c -> windows/painting.c
+
+       * dlls/ole32/compobj.c, dlls/ole32/ole2.c, dlls/oleaut32/oleaut.c, dlls/oleaut32/typelib.c, dlls/oleaut32/typelib.spec, include/ole2ver.h, misc/version.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       - the OLE version returned was too low
+       - renamed OABuildVersion16 to OaBuildVersion16
+       - spelling fixes
+
+       * files/drive.c: Peter Ganten <peter@ganten.org>
+       Fix GetCurrentDirectoryA and W to return the needed space for the CWD,
+       if the buffer size is not large enough.
+
+       * controls/button.c, windows/dialog.c:
+       Dmitry Timoshkov <dmitry@sloboda.ru>
+       Remove hack for keyboard messages in dialogs.
+
+       * win32/device.c: Ian Schmidt <ischmidt@cfl.rr.com>
+       Stubs for VMM GetDemandPageInfo function and VWin32 "Get VMCPD Version".
+       Implementation for VWin32 Int31/DPMI dispatch call.
+       Fixed "dangling else" compiler warning.
+
+       * dlls/comctl32/listview.c: Francois Gouget <fgouget@psn.net>
+       Whenever we do an strncpy we should make sure we put a '\0' at the end
+       of the buffer.
+
+       * include/toolhelp.h, misc/toolhelp.c, relay32/kernel32.spec:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added Thread32First/Next stubs.
+
+       * include/thread.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Moved wineserver's buffer & buffer_size at the end of TEB so that IE
+       doesn't overwrite them.
+
+       * dlls/winmm/mciwave/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed mciInfo.
+
+       * dlls/winmm/wavemap/wavemap.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added support for WAVE_FORMAT_QUERY flag in wodOpen.
+
+       * dlls/msacm32/stream.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Correctly implement ACM_STREAMOPENF_QUERY flag in acmOpenStream.
+
+       * dlls/winmm/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed MCI_OPEN command for types like "CDAUDIO!H:".
+
+       * graphics/ddraw_private.h, graphics/ddraw.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Merged _all_ lpClipper into common_surface.
+       Add NULL ptr check to SetClipper.
+       Some more debug output.
+
+       * include/config.h.in, misc/port.c, configure, configure.in:
+       Marcus Meissner <marcus@jet.franken.de>
+       Use the real glibc openpty if present.
+
+       * loader/ne/segment.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added typedef to insure compilation on all gcc&egcs versions.
+
+       * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed _copy_registry().
+
+       * include/winnls.h, ole/nls/esa.nls, ole/nls/esc.nls, ole/nls/esd.nls, ole/nls/esg.nls, ole/nls/esm.nls, ole/nls/esn.nls, ole/nls/esp.nls:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Added some constants for Spanish.
+
+       * include/module.h, loader/ne/module.c, loader/ne/segment.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Call DllEntryPoint for *every* process that loads the DLL, not
+       just for the first one.
+       Bypass 32->16->32 transition when calling DllEntryPoint of built-in.
+
+       * if1632/user.spec, windows/user.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added USER.DllEntryPoint().
+
+       * if1632/thunk.c, include/process.h, loader/task.c, scheduler/process.c, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Call 16-bit instead of 32-bit UserSignalProc entry point.
+       Don't load USER32.DLL unless requested by the program.
+       Bugfix: Pass the correct thread ID to UserSignalProc.
+
+       * loader/pe_image.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed crash when map fails.
+
+       * controls/combo.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Show use of undocumented messages.
+
+       * include/keyboard.h, include/ttydrv.h, include/x11drv.h, windows/dinput.c, windows/ttydrv/init.c, windows/ttydrv/keyboard.c, windows/x11drv/init.c, windows/x11drv/keyboard.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       - removed keyboard auto-repeat when DInput acquires it
+       - removed some (now) obsolete fixme's
+
+       * graphics/ddraw_private.h, graphics/ddraw.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Moved lpClipper into common_directdrawsurface struct
+       Release old clipper on new set
+
+       * dlls/winmm/wineoss/midi.c, include/mmsystem.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fake MIDI_IO_STATUS support in midi in open
+       Fixed bug in midi in while reading data
+
+       * dlls/winmm/wineoss/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed infinite loop for 0-length wavehdrs.
+
+       * dlls/winmm/mciwave/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed buggy playback for non PCM files
+       Added support for from & to indexes for playback
+       Now using double wavehdr for better output
+       Cleaned-up internal structs and removed last 16 bit API adherence
+
+       * dlls/winmm/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Tried to reduce echo in playSound API (using two wavehdr instead of
+       one).
+
+       * dlls/winmm/lolvldrv.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added callback mechanisms for MIDI IN.
+
+       * dlls/msacm32/stream.c, dlls/msacm32/wineacm.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed improper acm streams closing.
+
+       * dlls/msacm32/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Debug traces cosmetic fixes.
+
+       * DEVELOPERS-HINTS: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed some errors (thanks to F Gouget for reporting them).
+       Added some bits on thunking and resources for DLLs.
+
+Sat Dec  4 04:22:04 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/ddraw.c, graphics/ddraw_private.h, include/ts_xlib.h, tsx11/X11_calls, tsx11/ts_xlib.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       First support of DGA 2.0 for DirectDraw.
+
+       * include/winuser.h, relay32/user32.spec, win32/newfns.c:
+       Erez Volk <erez@gmx.net>
+       Stubs for Get/SetProcessDefaultLayout.
+
+       * files/profile.c, relay32/kernel32.spec:
+       Marcus Meissner <marcus@jet.franken.de>
+       Stub for CloseProfileUserMapping.
+
+       * windows/dinput.c: Lionel Ulmer <lionel.ulmer@free.fr>
+       Use DInput's internal mouse event handler to handle the GetDeviceState
+       function.
+
+       * dlls/winmm/mmsystem.c: Peter Ganten <peter@ganten.org>
+       waveHdr.lpData was eventually HeapFree()ed uninitialized.
+
+       * loader/module.c: Sergei Turchanov <turchanov@otvprim.ru>
+       Fix for GetBinaryType to return SCS_DOS_BINARY if extended signature
+       is unknown.
+
+       * loader/dos/module.c, loader/ne/module.c, relay32/builtin32.c, scheduler/process.c, include/dosexe.h, include/elfdll.h, include/module.h, include/pe_image.h, loader/elf.c, loader/elfdll.c, loader/main.c, loader/module.c, loader/pe_image.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed 32-bit module name handling to conform better to Win9x.
+       Removed OFSTRUCT passing during process creation sequence.
+       Bugfix: don't set exe_modref when LOAD_LIBRARY_AS_DATAFILE is set.
+
+       * dlls/advapi32/service.c, include/winsvc.h, dlls/advapi32/advapi32.spec:
+       Michael McCormack <mccormac@aals27.alcatel.com.au>
+       Added code to some service functions (some untested), fixed
+       declaration of service main function.
+
+       * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.h:
+       Pierre Mageau
+       Murali Pattathe
+       Francois Boisvert
+       Francis Baudet
+       Henning Hoffmann
+       Many fixes.
+
+       * dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Added stubs for several MRU list functions and documented some others.
+
+       * server/file.c: Marcus Meissner <marcus@jet.franken.de>
+       Flush handle in any access mode.
+
+       * dlls/comctl32/header.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixes off by one error in item insertion.
+
+       * dlls/winmm/wineoss/audio.c: Marcus Meissner <marcus@jet.franken.de>
+       Allow 1% deviation from specified sampling rate for some soundcards.
+
+       * include/d3d.h: Lionel Ulmer <lionel.ulmer@free.fr>
+       Suppressed the inclusion of OpenGL headers.
+
+       * objects/enhmetafile.c: Peter Hunnisett <hunnise@nortelnetworks.com>
+       - Added stub for conversion from meta to enhance meta files.
+       - Implemented GetEnhMetaFileBits for enhanced meta files.
+
+       * graphics/ddraw.c, graphics/ddraw_private.h:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       Improved stubs for the ddraw clipper routines.
+
+Mon Nov 29 02:48:43 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * win32/time.c: Made GetSystemTimeAsFileTime return value more precise.
+
+       * server/event.c, server/file.c:
+       Fixed get_event_obj/get_file_obj to use the process parameter (thanks
+       to Eric Pouech).
+
+       * server/process.h, scheduler/process.c, server/process.c:
+       Fixed DEBUG_ONLY_THIS_PROCESS again (thanks to Ulrich Weigand).
+
+       * scheduler/timer.c, server/Makefile.in, server/request.h, server/timer.c, server/trace.c, dlls/ntdll/nt.c, include/server.h, include/winbase.h, relay32/kernel32.spec, scheduler/Makefile.in:
+       Implemented waitable timers.
+
+Sun Nov 28 21:03:46 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * tools/bin2res.c: Bug fixes.
+
+       * dlls/comctl32/comctl32.h, dlls/comctl32/propsheet.c, dlls/comctl32/rsrc.rc, include/prsht.h:
+       Serge Ivanov
+       Pierre Mageau
+       Thy Nguyen
+       Don Kelly
+       Noomen Hamza
+       Lots of bug fixes and new features in property sheets.
+
+       * win32/newfns.c, windows/x11drv/clipboard.c, windows/x11drv/event.c, dlls/dplayx/dplobby.c, dlls/shell32/shlview.c, graphics/psdrv/font.c, dlls/comctl32/tab.c:
+       Niels Kristian Bech Jensen <nkbj@image.dk>
+       Compiler warnings fixed.
+
+       * graphics/x11drv/xfont.c: Bradley Baetz <bbaetz@student.usyd.edu.au>
+       Give the app back the exact font name it asked for.
+
+       * dlls/comctl32/toolbar.c: Dave Pickles <davep@nugate.demon.co.uk>
+       Prevent a crash if messages are sent to a toolbar window before
+       WM_NCCREATE or after WM_DESTROY.
+
+       * dlls/winmm/winmm_Es.rc: Julio Cesar Gazquez <jgazquez@dld.net>
+       Updated Spanish MM error string translation.
+
+       * dlls/comctl32/comctl32.h, dlls/comctl32/rsrc.rc, dlls/comctl32/treeview.c, include/commctrl.h, include/treeview.h:
+       Alex Priem <alexp@sci.kun.nl>
+       - (final?) update of TreeView_* macro's.
+       - implementation of TVM_SETINSERTMARK & TVM_SETINSERTMARKCOLOR
+       - fixed some typo's
+       - custom draw enhancements
+       - implementation of state images
+       - implementation of TVS_CHECKBOXES
+
+       * dlls/comctl32/toolbar.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Fixed some visual toolbar bugs.
+
+       * README: Juergen Lock <nox@jelal.kn-bremen.de>
+       Added notes about Wine-related FreeBSD kernel patches.
+
+       * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Use RegQueryInfoKey to count number of printers.
+
+       * server/unicode.h: Juergen Lock <nox@jelal.kn-bremen.de>
+       Don't try to call towupper() when there's no wctype.h.
+
+       * controls/combo.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       When combobox selection changes, update its edit box accordingly.
+
+       * controls/listbox.c: Dmitry Timoshkov <dmitry@sloboda.ru>
+       Notify parent of listbox if requested.
+
+Thu Nov 25 23:42:54 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/ptrace.c: More portability fixes (thanks to Juergen Lock).
+
+       * dlls/ntdll/signal_i386.c: Juergen Lock <nox@jelal.kn-bremen.de>
+       Set/use fs/gs from the sigcontext struct, the corresponding kernel
+       change now finally has been MFC'd to -stable.
+
+       * documentation/fonts: Juergen Lock <nox@jelal.kn-bremen.de>
+       Mention free Truetype font servers (Xfstt and xfsft).
+
+       * winedefault.reg: Juergen Lock <nox@jelal.kn-bremen.de>
+       Note what to do with the winedefault.reg in the file.
+
+       * win32/device.c: Peter Ganten <peter@ganten.org>
+       Implemented parts of _PageReserve() _PageCommit() _PageDecommit()
+       _PageChangePermissions() and _PageFree() using the
+       Virtual*()-Functions (with the great help of Ulrich Weigand).
+
+       * memory/atom.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Removed fixme.
+
+       * misc/registry.c: Several bug fixes in save_key().
+
+       * dlls/advapi32/registry.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed some bogus error detection for RegEnumValue[AW] and
+       RegQueryValueEx[AW].
+
+       * dlls/dplayx/dplay.c, dlls/dplayx/dplayx_global.c, dlls/dplayx/dplayx_global.h, dlls/dplayx/dplobby.c:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       - Added global data mutual exclusion
+       - Removed hack for creating processes suspended now that it's implemented
+       - Fixed ordinal numbering and added spec stubs
+       - Fixed EnumConnections callback to fill in all parameters with valid data
+       - Made direct play allocation/deallocation follow the same pattern as
+         direct play lobby
+
+       * dlls/win87em/emulate.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Several improvements.
+
+       * ole/ole2nls.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed invalid LCMapString fixme for NORM_IGNOREKANATYPE case.
+
+       * include/comm.h, misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
+       Made win16 serial comms less of a CPU hog.
+
+       * include/server.h, memory/virtual.c, scheduler/event.c, scheduler/mutex.c, scheduler/semaphore.c, server/Makefile.in, server/event.c, server/handle.c, server/handle.h, server/mapping.c, server/mutex.c, server/object.c, server/object.h, server/registry.c, server/semaphore.c, server/trace.c, server/unicode.c, server/unicode.h:
+       Store all object names as Unicode in the server.
+
+Wed Nov 24 19:34:32 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/server.h, misc/registry.c, server/registry.c, server/trace.c, wine.ini:
+       Added wine.conf option for new format registry files.
+       Added optional periodic saving of the registry.
+
+       * misc/registry.c, server/registry.c:
+       Added support to the server for loading new format (version 2) files.
+
+       * misc/registry.c: Bug fixes (thanks to Juergen Schmied).
+
+       * include/process.h, include/server.h, scheduler/debugger.c, dlls/ntdll/exception.c:
+       Added current context to the exception debug event sent to the server.
+
+       * server/debugger.c, server/process.c, server/process.h, server/thread.c, server/thread.h:
+       Fixed handling of debug events on thread/process exit.
+
+       * debugger/dbg.y, include/winbase.h, scheduler/critsection.c:
+       Raise an exception when a critical section wait failed.
+
+Tue Nov 23 23:43:29 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/ttydrv/Makefile.in, graphics/ttydrv/bitblt.c, graphics/ttydrv/bitmap.c, graphics/ttydrv/brush.c, graphics/ttydrv/clipping.c, graphics/ttydrv/font.c, graphics/ttydrv/graphics.c, graphics/ttydrv/init.c, graphics/ttydrv/objects.c, graphics/ttydrv/oembitmap.c, graphics/ttydrv/palette.c, graphics/ttydrv/pen.c, graphics/ttydrv/text.c, include/ttydrv.h, windows/ttydrv/desktop.c, windows/ttydrv/main.c, windows/ttydrv/monitor.c, windows/ttydrv/wnd.c:
+       Patrik Stridvall <ps@leissner.se>
+       Improved the stubs.
+
+       * dlls/comctl32/imagelist.c, include/imagelist.h:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       - first 'dummy' implementation of ImageList_Read
+
+       * include/rebar.h, dlls/comctl32/rebar.c:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       - added version messages
+
+       * dlls/comctl32/draglist.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       - implemented LBItemFromPt
+
+       * include/commctrl.h, dlls/comctl32/listview.c:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       - implemented simple column order array functionality
+       - implemented some virtual listview notifications
+
+       * dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       - minor update to mru list functions
+       - stubs for COMCTL32_411 to COMCTL32_413
+
+       * dlls/comctl32/toolbar.c, include/toolbar.h:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       - added version messages and some simple get/set messages.
+       - added unicode messages
+
+       * include/shlguid.h, dlls/shell32/classes.c, dlls/shell32/iconcache.c, dlls/shell32/pidl.c, dlls/shell32/pidl.h, dlls/shell32/shellole.c, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - made IShellFolder a aggregable object
+       - SHCoCreateInstance can create CSIDL_FSFolder now
+       - browsing into folders on the desktop implemented
+       - corrected returnvalue of Ico_ExtractIconEx
+       - fixed SHGetDataFromIDList to return data of simple pidls
+
+       * relay32/wsock32.spec, if1632/winsock.spec, include/winsock.h, misc/winsock.c:
+       Moses DeJong <dejong@cs.umn.edu>
+       Added implementation for WSARecvEx function. This is a Microsoft
+       specific extension to the winsock API.
+
+       * dlls/mpr/mpr.spec, dlls/mpr/pwcache.c, include/winnetwk.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Corrected wrong parameter counts for WNetCachePassword and
+       WNetEnumCachedPasswords.
+
+       * dlls/shell32/shell32.spec, dlls/shell32/shell32_main.c:
+       Ian Schmidt <ischmidt@cfl.rr.com>
+       Added stub for DllInstall().
+
+       * misc/registry.c, include/wine/winbase16.h, include/winnt.h, include/winreg.h, dlls/advapi32/Makefile.in, dlls/advapi32/registry.c, dlls/shell32/shell.spec, if1632/kernel.spec:
+       Changed to use new server-side registry support.
+
+       * include/server.h, server/Makefile.in, server/main.c, server/object.c, server/object.h, server/registry.c, server/request.h, server/trace.c, server/unicode.h:
+       Added registry support to the server.
+
+       * tools/make_requests:
+       Differentiate tracing functions between request and reply.
+       Added possibility to have dumping functions for specific types.
+
+Sun Nov 21 21:02:06 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/server.h, scheduler/client.c:
+       Added server_call_noerr function that avoids touching the last error.
+
+       * include/winerror.h: Added a few registry error codes.
+
+       * graphics/x11drv/xfont.c, objects/font.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed some unaligned accesses.
+
+       * dlls/commdlg/filedlg95.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - the fodInfos were used before initialized
+       - lpTemplateName can be a resource id
+       - if lpTemplateName is a string don't free the original one
+
+       * win32/console.c, win32/kernel32.c, windows/x11drv/main.c, loader/ne/convert.c, loader/ne/module.c, misc/cpu.c, msdos/ioports.c, ole/guid.c, programs/notepad/main.c, scheduler/critsection.c, scheduler/process.c, server/socket.c, tools/wrc/newstruc.c, dlls/winmm/mci.c, graphics/ddraw.c, graphics/x11drv/graphics.c, loader/loadorder.c, loader/main.c, loader/task.c, debugger/dbgmain.c, debugger/editline.c, debugger/source.c, debugger/stabs.c, debugger/types.c, dlls/icmp/icmp_main.c, dlls/ntdll/sec.c, dlls/ntdll/signal_i386.c, dlls/wing/wing_main.c:
+       Niels Kristian Bech Jensen <nkbj@image.dk>
+       Removed extra #include statements.
+
+       * files/file.c:
+       Fixed MoveFileExA behavior when target file does not exist.
+
+       * dlls/commdlg/cdlg_Pt.rc, programs/winhelp/.cvsignore, programs/winhelp/Makefile.in, programs/winhelp/Pt.rc:
+       Gustavo Junior Alves <twinfo@bestway.com.br>
+       Added Portuguese language support.
+
+       * dlls/comctl32/monthcal.c, include/monthcal.h:
+       Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Implemented current day circling.  Fixed many bugs in the month
+       calender control including control spacing and alignment.  Fixed
+       defines monthcal.h.  Optimized control drawing and removed many
+       extranious redraws.  Improved control behavior.  Fixed inconsistent
+       formatting in both .c and .h files.
+
+       * files/profile.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Flush current profile before using a newly opened one.
+
+       * memory/selector.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: GetThreadSelectorEntry() sets read-write flag incorrectly.
+
+       * include/wine/wingdi16.h, objects/font.c, if1632/gdi.spec:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Stub for GetFontData16.
+
+       * windows/Attic/display.c, if1632/Attic/display.spec:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Added some ordinals and GetDriverResourceID().
+
+       * server/process.c, server/ptrace.c: Portability fixes.
+
+       * scheduler/process.c: Fixed meaning of DEBUG_ONLY_THIS_PROCESS flag.
+
+       * tools/bin2res.c: Peter Hunnisett <hunnise@nortelnetworks.com>
+       Fixed compile error.
+
+       * dlls/advapi32/service.c: Peter Schlaile <udbz@rz.uni-karlsruhe.de>
+       Implemented StartServiceCtrlDispatcherA according to DispatcherW.
+
+       * Makefile.in: Make sure we clean dlls/ too.
+
+       * dlls/advapi32/service.c:
+       Michael McCormack <mccormac@aals27.alcatel.com.au>
+       Implemented OpenSCManagerW, CloseServiceHandle, OpenServiceW, and some
+       of QueryServiceStatus.
+
+       * tools/wrc/parser.y: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added missing ';'.
+
+       * tools/wrc/parser.l: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Error reporting fix.
+
+       * tools/bug_report.pl:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Changed default relay line number from 100 to 200.
+
+       * dlls/comctl32/toolbar.c, include/commctrl.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added undocumented feature to InsertButtonA.
+       Added dropdown button support.
+
+       * dlls/comctl32/animate.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed play back of uncompressed AVI file.
+       Fixed exiting conditions.
+
+       * graphics/ddraw.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed a crash in IDirectDrawSurface:BltFast.
+
+       * dlls/winmm/lolvldrv.c, dlls/winmm/midimap/midimap.c, dlls/winmm/wavemap/wavemap.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed forwarding and handling messages directed to the mappers.
+
+       * loader/ne/module.c, loader/ne/segment.c, include/module.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Simplified hInstance creation/handling.
+       Fixes problems with self-loaders creating DGROUP themselves.
+
+       * include/wingdi.h, objects/dc.c, relay32/gdi32.spec:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Add stubs for Get/SetLayout().
+
+       * dlls/ole32/ole32.spec, dlls/ole32/storage32.c:
+       Jim Aston <jima@corel.ca>
+       Added stub for StgSetTimes.
+
+       * dlls/shell32/shlmenu.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       SHFind_InitMenuPopup is supposed to return a pointer.
+
+       * dlls/icmp/icmp_main.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       u_int[16|32]_t might not be defined.
+
+       * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
+       - fixed crash when adding items with TVI_SORT and wineItem->pszText is
+         set to LPSTR_TEXTCALLBACK.
+       - ditto for TREEVIEW_DeleteItem, TREEVIEW_CreateDragImage.
+
+----------------------------------------------------------------
+Mon Nov 15 00:46:30 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * memory/virtual.c: Fixed allocation rounding for MEM_RESERVE.
+
+       * server/file.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed hash function.
+
+Sun Nov 14 23:59:01 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/winmm/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       The adwInfo[0] field was no longer used on mmioOpen (may contain file
+       handle).
+
+       * dlls/ole32/ole2stubs.c, dlls/ole32/ole32.spec:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added stubs for SetErrorInfo, PropVariantClear, PropVariantCopy,
+       FreePropVariantArray.
+
+       * dlls/dsound/dsound_main.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed suicide code when playback thread's father dies.
+
+       * dlls/shell32/pidl.c, dlls/shell32/shell32_De.rc, dlls/shell32/shell32_En.rc, dlls/shell32/shell32_main.h, dlls/shell32/shellole.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, dlls/shell32/shres.rc, dlls/shell32/shresdef.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - the colums in the shellview are now created depending on the
+         attributes of the folder object shown
+       - get all attributes from the shellfolder instead directly from the idlist
+       - header fields localized (only engl. and german till now)
+       - small fixes
+
+       * dlls/commdlg/cdlg_En.rc, dlls/commdlg/filedlg95.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - corrected control positions
+       - use the icons from comctl32 for the buttons
+
+       * relay32/kernel32.spec, relay32/relay386.c, relay32/snoop.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: relay/snoop debugging was broken by last patch ...
+
+       * server/Makefile.in, server/process.c, server/ptrace.c, server/thread.c, server/thread.h:
+       Moved ptrace support to ptrace.c. Tried to improve portability.
+
+       * server/debugger.c: Bug fixes.
+
+       * if1632/relay.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed some unresolved externals on non-Intel archs.
+
+       * relay32/snoop.c: Rein Klazes <rklazes@casema.net>
+       Added missing WINAPI attribute to two forward declarations.
+
+       * dlls/icmp/icmp_main.c: Francois Gouget <fgouget@psn.net>
+       Removed leftover #undefs.
+
+       * dlls/winmm/mcicda/mcicda.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Ignore MCI_OPEN_ELEMENT in CDAUDIO_mciOpen.
+
+       * dlls/crtdll/wcstring.c: Marcus Meissner <marcus@jet.franken.de>
+       Work around glibc bug, that does not handle latin-1 umlauts.
+
+Sat Nov 13 23:54:05 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * loader/ne/module.c, memory/selector.c, relay32/kernel32.spec, relay32/relay386.c, relay32/snoop.c, win32/device.c, win32/kernel32.c, win32/ordinals.c, dlls/ntdll/exception.c, dlls/ntdll/ntdll.spec, dlls/ntdll/rtl.c, dlls/ntdll/signal_i386.c, dlls/ntdll/signal_sparc.c, if1632/kernel.spec, include/ntddk.h, include/wine/exception.h, loader/dos/dosvm.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Adapted to new register function handling.
+
+       * tools/build.c, include/stackframe.h, include/winnt.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Modified Win32 register function handling.
+
+       * configure, configure.in, dlls/icmp/icmp_main.c, dlls/icmp/ip.h, dlls/icmp/ip_icmp.h, include/config.h.in:
+       Francois Gouget <fgouget@psn.net>
+       Use BSD headers for ICMP portability.
+
+       * dlls/comctl32/rsrc.rc, dlls/commdlg/cdlg_xx.rc, dlls/shell32/shres.rc:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - inserted markers for the bin2res tool
+       - reformated hexdump in shres.rc
+
+       * documentation/resources, tools/.cvsignore, tools/Makefile.in, tools/bin2res.c:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       New tool to convert the binary resources in *.rc files (hexdumps) from
+       and to a binary.
+
+       * include/wine/port.h, misc/port.c, misc/winsock.c, misc/winsock_async.c, scheduler/sysdeps.c, configure, configure.in, files/drive.c, include/config.h.in:
+       Patrik Stridvall <ps@leissner.se>
+       Added better missing function emulation.
+
+       * include/debugger.h, debugger/break.c, debugger/db_disasm.c, debugger/dbg.y, debugger/expr.c, debugger/hash.c, debugger/memory.c, debugger/registers.c, debugger/source.c, debugger/stack.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Made debugger compile and marginally work on non-Intel archs.
+
+       * dlls/ntdll/exception.c, include/winnt.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved GET_IP macro to winnt.h
+
+       * documentation/printing, documentation/psdriver, documentation/psdrv.reg, graphics/psdrv/README:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Move PostScript driver docs to documentation/ .  Add instructions on
+       how to use regapi to get information into the registry.  Supply sample
+       input to regapi.
+
+       * dlls/commdlg/cdlg_En.rc, dlls/commdlg/printdlg.c:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Implemented the PrintSetup dialog box for the PrintDlgA.
+
+       * dlls/comctl32/propsheet.c: Adrian Thurston <adriant@corel.com>
+       Added validations for page index before using it.
+
+       * dlls/commdlg/filedlg95.c: Adrian Thurston <adriant@corel.com>
+       - fixed the index of the item chosen in the filter combo box
+       - added support for the OFN_OVERWRITEPROMPT flag
+       - fixed positioning of controls in the user-defined templates
+
+       * include/server.h, scheduler/process.c, server/process.c, server/request.h, server/trace.c:
+       Added support for WriteProcessMemory through the server.
+
+       * server/mapping.c, server/object.h: Added get_page_size function.
+
+Fri Nov 12 21:39:15 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/file.c, server/process.c, server/request.h, server/thread.c, server/thread.h, server/trace.c, include/server.h, scheduler/process.c:
+       Added support for ReadProcessMemory through the server.
+
+       * include/server.h, loader/module.c, scheduler/process.c, server/process.c, server/process.h, server/request.h, server/thread.c, server/trace.c:
+       Added support for CREATE_SUSPENDED flag in CreateProcess.
+
+       * win32/device.c: Ian Schmidt <ischmidt@cfl.rr.com>
+       Implemented VWin32 VxDCall mechanism and 2 calls.
+
+       * dlls/winmm/joystick.c: <jodaman@cegt201.bradley.edu>
+       Fixed joystick scaling.
+
+       * dlls/commdlg/cdlg_Ca.rc, dlls/commdlg/cdlg_Cs.rc, dlls/commdlg/cdlg_Da.rc, dlls/commdlg/cdlg_De.rc, dlls/commdlg/cdlg_Eo.rc, dlls/commdlg/cdlg_Es.rc, dlls/commdlg/cdlg_Fi.rc, dlls/commdlg/cdlg_Hu.rc, dlls/commdlg/cdlg_It.rc, dlls/commdlg/cdlg_Ko.rc, dlls/commdlg/cdlg_Nl.rc, dlls/commdlg/cdlg_No.rc, dlls/commdlg/cdlg_Pl.rc, dlls/commdlg/cdlg_Pt.rc, dlls/commdlg/cdlg_Ru.rc, dlls/commdlg/cdlg_Sv.rc, dlls/commdlg/cdlg_Wa.rc, dlls/shell32/shell32_Ca.rc, dlls/shell32/shell32_Cs.rc, dlls/shell32/shell32_Da.rc, dlls/shell32/shell32_De.rc, dlls/shell32/shell32_En.rc, dlls/shell32/shell32_Es.rc, dlls/shell32/shell32_Fi.rc, dlls/shell32/shell32_Hu.rc, dlls/shell32/shell32_It.rc, dlls/shell32/shell32_Nl.rc, dlls/shell32/shell32_No.rc, dlls/shell32/shell32_Pl.rc, dlls/shell32/shell32_Pt.rc, dlls/shell32/shell32_Ru.rc, dlls/shell32/shell32_Sv.rc, dlls/shell32/shell32_Wa.rc:
+       Gustavo Junior Alves <twinfo@bestway.com.br>
+       Use constants IDOK and IDCANCEL in .rc files.
+
+       * server/thread.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
+       Portability fix: renamed PTRACE_* into PT_*.
+
+       * relay32/kernel32.spec, win32/device.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Allow for buggy apps that call the wrong VxDCall routine.
+
+       * dlls/rasapi32/rasapi.c: Gerard Patel <g.patel@wanadoo.fr>
+       Complete stub for RasEnumEntries by saying we have 0 entries.
+
+       * include/debugstr.h, misc/debugstr.c:
+       Jeremy White <jwhite@codeweavers.com>
+       Add debugstr_hex_dump to allow display hex dumps of data in any
+       debugging message.
+
+       * server/thread.c:
+       Added use_ptrace flag to disable ptrace usage. Should eventually be
+       made into an option.
+
+       * dlls/commdlg/cdlg.h, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/filedlgbrowser.h, dlls/commdlg/rsrc.rc, dlls/shell32/shlview.c, include/dlgs.h, include/wine/obj_shellview.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       Made the buttons in the filedlg change when selecting a different
+       view type by the context menu, cleanup.
+
+       * dlls/winmm/winmm_Es.rc, dlls/winmm/winmm_res.rc:
+       Julio Cesar Gazquez <jgazquez@dld.net>
+       Added Spanish (pure Castillan) MM error string translation.
+
+       * dlls/ntdll/Makefile.in, dlls/ntdll/signal_sparc.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added signal handling for SPARC / Solaris.
+
+       * programs/regapi/regapi.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Comment out explicit call to SHELL_SaveRegistry since winelib programs
+       now exit properly.  Change several NULLs to '\0's.  Fix some spelling.
+
+       * windows/x11drv/event.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed XShm completion event leak.
+
+       * dlls/winmm/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed recursion count while calling midiStream(Pause|Restart).
+
+       * misc/registry.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fix save_check_tainted to properly scan the tree so that all tainted
+       branches get saved.
+
+       * dlls/crtdll/crtdll.spec, dlls/crtdll/crtdll_main.c:
+       Bernd Paysan <bernd.paysan@gmx.de>
+       Added a stub for setjmp.
+
+Wed Nov 10 20:25:19 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/thread.c:
+       Don't crash when we get a SIGCHLD for a removed thread.
+
+       * dlls/icmp/icmp_main.c: Patrik Stridvall <ps@leissner.se>
+       Solaris compile fixes.
+
+       * dlls/ntdll/exception.c, include/winnt.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       (Preliminary) CONTEXT structure for SPARC added.
+
+       * include/process.h, loader/module.c, scheduler/debugger.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: LOAD_DLL_DEBUG_EVENT lpImageName parameter was incorrect.
+
+       * memory/virtual.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       When decommitting, remap zero pages using MAP_FIXED.
+
+       * dlls/ole32/compobj.c: Rein Klazes <rklazes@casema.net>
+       CoGetClassObject should complain about not being able to do
+       out-of-process servers *only* if the application doesn't include the
+       in-process options.
+
+       * misc/version.c, controls/edit.c, include/winversion.h:
+       Rein Klazes <rklazes@casema.net>
+       Send WM_CTLCOLOREDIT not WM_CTLCOLORSTATIC messages to parent of a
+       disabled edit control if the application expects a windows version
+       before WIN95 and NT40.
+
+       * include/winbase.h, relay32/kernel32.spec, files/file.c:
+       Moshe Vainer <moshev@easybase.com>
+       Stub for GetOverlappedResult.
+
+       * relay32/builtin32.c, tools/build.c, include/module.h, include/pe_image.h, loader/dos/module.c, loader/main.c, loader/module.c, loader/ne/module.c, loader/pe_image.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Determine expected_version of PE buddies from the SubsystemVersion.
+
+       * dlls/ntdll/exception.c, include/wine/exception.h, include/winnt.h, win32/except.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Exception handlers are *not* WINAPI.
+
+Mon Nov  8 05:31:47 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/process.c, server/select.c, server/thread.c, server/thread.h:
+       Preliminary ptrace support.
+
+       * memory/virtual.c:
+       Remap zero-pages when decomitting a page range (based on a patch by
+       Gerard Patel).
+
+       * Makefile.in, scheduler/Makefile.in, scheduler/client.c, server/main.c:
+       Install the wine server in $(bindir) and exec it from there.
+
+Sun Nov  7 23:59:08 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/debugger.c:
+       Do not free the handles once they have been sent to the client (thanks
+       to Jeremy White).
+
+       * windows/msgbox.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed crash when asked to use strings identified by resource id
+       instead of pointer.
+
+       * windows/dce.c: Jim Aston <jima@corel.ca>
+       When window class has CS_CLASSDC style we should not remove the DC
+       when destroying the window.
+
+       * dlls/rasapi32/rasapi32.spec, dlls/win32s/w32skrnl.c:
+       Patrik Stridvall <ps@leissner.se>
+       Minor fixes.
+
+       * tools/winapi_check/nativeapi.pm, tools/winapi_check/output.pm, tools/winapi_check/win32api.dat, tools/winapi_check/winapi_check, tools/winapi_check/winapi_options.pm:
+       Patrik Stridvall <ps@leissner.se>
+       Minor fixes and reorganizations.
+
+       * dlls/shell32/if_macros.h, include/bit_array.h, include/ntdll.h, include/oleobj.h:
+       Patrik Stridvall <ps@leissner.se>
+       Removed obsolete files no longer in use.
+
+       * tsx11/X11_calls, tsx11/ts_xlib.c, windows/x11drv/event.c, graphics/ddraw.c, graphics/ddraw_private.h, include/ts_xlib.h, include/x11drv.h:
+       Ove Kaaven <ovek@arcticnet.no>
+       DirectX-XShm now waits for the X server to finish the previous frame
+       before sending another frame down its pipe, avoiding the X server
+       overload and resulting slowness that used to be.
+
+       * dlls/comctl32/toolbar.c, dlls/commdlg/cdlg_En.rc, dlls/commdlg/cdlg_xx.rc, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.h, include/dlgs.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - unified templates for the open and the save dlg
+       - replaced buttons with a toolbar
+
+       * dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, include/wine/obj_shellfolder.h:
+       Juergen Schmied <juergen.schmied@debitel.net>
+       - new interface declaration for IShellfolder2
+       - added this interface to all shell folders
+       - small fixes to shellview (crash with native comdlg32)
+
+       * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed the relocation hack in PE_InitTls. Added some more for the other
+       pointerfields in the TLS entry. (With testing help from Jussi
+       Jumppanen <jussij@zeusedit.com>).
+
+       * relay32/user32.spec, windows/user.c, include/winuser.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added ChangeDisplaySettingsExA stub and some flag defines.
+
+       * include/console.h: Robert 'Admiral' Coeyman <admiral@corner.net>
+       Added the hex triplets to the console color definitions.
+
+       * windows/ttydrv/event.c, windows/ttydrv/init.c, windows/ttydrv/mouse.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/mouse.c, include/input.h, include/message.h, include/mouse.h, include/ttydrv.h, include/x11drv.h, objects/cursoricon.c, windows/dinput.c, windows/event.c, windows/input.c, windows/mouse.c, windows/winpos.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       Added the possibility to have mouse movements reported relative to
+       Wine's mouse driver.
+
+       * Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/icmp/.cvsignore, dlls/icmp/Makefile.in, dlls/icmp/icmp.spec, dlls/icmp/icmp_main.c, include/debugdefs.h, include/wine/icmpapi.h, include/wine/ipexport.h, loader/loadorder.c, relay32/builtin32.c, wine.ini:
+       Francois Gouget <fgouget@psn.net>
+       Added ICMP DLL implementation.
+
+       * tools/wrc/dumpres.c, tools/wrc/genres.c, tools/wrc/newstruc.c, tools/wrc/newstruc.h, tools/wrc/parser.y, tools/wrc/wrc.h, tools/wrc/wrctypes.h, tools/wrc/CHANGES:
+       Juergen.Schmied@debitel.net
+       - Bugfix: Styles were evaluated as expressions. The NOT in combination
+         with style flags was not overwriting the default styles like WS_VISIBLE.
+         Solved by introducing own rules for parsing styles.
+
+       * controls/combo.c: Jim Aston <jima@corel.ca>
+       Fixed the height of the ComboBox drop list.
+
+       * windows/dialog.c: David Grant <davidgra@corel.ca>
+       Windows sends WM_GETDLGCODE only in response to keyboard messages
+       (WM_KEYDOWN, WM_CHAR, WM_SYSCHAR).
+
+       * include/wine/obj_base.h: Peter Hunnisett <hunnise@nortelnetworks.com>
+       - Added missing __attribute__ ((com_interface)) for IUnknown with.
+         ICOM_USE_COM_INTERFACE_ATTRIBUTE
+       - Small addition to comments surrounding
+         ICOM_USE_COM_INTERFACE_ATTRIBUTE "option".
+
+       * ole/ole2nls.c, if1632/ole2nls.spec:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Implementation of RegisterNLSInfoChanged.
+
+       * scheduler/critsection.c, windows/queue.c, memory/heap.c:
+       James Abbatiello <abbeyj@wpi.edu>
+       Addresses issues with multiple processes accessing non-global critical
+       sections.
+
+       * server/sock.c: Jeremy White <jwhite@codeweavers.com>
+       Fixed bug in WINSOCK_accept when no event is present.
+
+       * dlls/rasapi32/rasapi.c, include/lmcons.h, include/ras.h:
+       Rein Klazes <rklazes@casema.net>
+       Added stubs for RasEnumEntriesA and RasGetEntryDialParamsA.
+
+       * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/filedlgbrowser.h:
+       Ulrich Czekalla <ulrichc@corel.ca>
+       Implementation of custom dialog messages and notifications.
+
+       * dlls/comctl32/treeview.c: David Grant <davidgra@corel.ca>
+       - Proper initialization of cchTextMax field was added for
+         TVN_GETDISPINFO notification message.
+       - TVM_SETITEM should update 'mask' field to synchronize it with
+         current item state.
+
+       * graphics/psdrv/ppd.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       If PageSize/InputSlot entry doesn't contain an options translation
+       string use the option name instead.
+
+       * dlls/comctl32/propsheet.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed SetTitleA when string resources were to be loaded.
+
+       * dlls/comctl32/listview.c: Pierre Mageau <pierre@macadamian.com>
+       - Fixed an error for scrolling in Listview (sometimes a column would
+         not be visible) due to my last checkin.
+       - Fixed an error for the header control when the Listview is resized with WM_SIZE
+       - Fixed the scrolling for small and large icon (this broke because of
+         the use of SB_PAGE in scrollInfo)
+       - Added a patch made by Noomen Hamza to update the item width when
+         adding a new item
+
+       * server/sock.c: Ove Kaaven <ovek@arcticnet.no>
+       Handle socket creation errors.
+
+       * controls/menu.c: Karl Lessard <karll@corel.com>
+       When a popupmenu is currently active on the screen, it shouldn't
+       remove mouse click messages that don't belong to it from the queue.
+
+       * windows/x11drv/clipboard.c: Juergen Lock <nox@jelal.kn-bremen.de>
+       Exec `wineclipsrv' not `wineclipsvr', and don't inherit wine's X
+       sockets to it (otherwise windows stay around when wine hangs).
+
+Thu Nov  4 02:51:24 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * loader/main.c: Fixed -debugmsg +server.
+
+       * scheduler/handle.c:
+       Added special handling for the stdio handles in CloseHandle.
+
+       * server/handle.c:
+       Made all handles multiple of 4. Fixed semantics for pseudo-handles.
+
+       * server/debugger.c:
+       Free the handles of the event structure in the right process (thanks
+       to Jeremy White).
+
+       * dlls/dplayx/Makefile.in, dlls/dplayx/dplay.c, dlls/dplayx/dplayx.spec, dlls/dplayx/dplayx_global.c, dlls/dplayx/dplayx_global.h, dlls/dplayx/dplayx_main.c, dlls/dplayx/dplobby.c, documentation/status/directplay, include/dplay.h, include/dplobby.h:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       - Added dplayx LibMain for initialization of all dplayx 'global' data
+       - Added start for global data manipulation
+       - TODO list updated
+       - Added some missing header file definitions
+       - Added the ansi versions of dplay and dplobby
+       - Fixed invalid macro for IDirectPlay4
+       - Cleaned up compiler warnings
+       - More implementation, bug fixes and critical region protection
+
+       * windows/x11drv/event.c: Karl Lessard <karll@corel.com>
+       Never send a WM_CLOSE message  to a popup window.
+
+       * windows/x11drv/wnd.c: Karl Lessard <karll@corel.com>
+       Check if the window is managed before trying to give it focus.
+
+       * configure, configure.in: Marcus Meissner <marcus@jet.franken.de>
+       Enhanced linux joystick api detection slightly.
+
+       * windows/x11drv/keyboard.c:
+       Jaroslaw Piotr Sobieszek <jsobiesz@elka.pw.edu.pl>
+       Added Polish keyboard support.
+
+       * graphics/win16drv/prtdrv.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Add DC_VERSION and DC_TRUETYPE to win16drv DeviceCapabilities.
+
+       * graphics/psdrv/ppd.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Add `Cassette' to PPD -> windows printer-bin mapping.
+
+       * memory/string.c: Michael McCormack <mccormac@aals27.alcatel.com.au>
+       Modified lstrcpynWtoA to put terminating null at end of string, not
+       end of buffer.
+
+       * include/wine/obj_storage.h: Francois Gouget <fgouget@psn.net>
+       Removed duplicate macro definitions for the IStorage and IStream COM
+       interfaces.
+
+       * windows/defwnd.c: Karl Lessard <karll@corel.com>
+       Fixed COLOR_MAX definition for new Win32 values.
+
+       * objects/gdiobj.c: Ian Schmidt <ischmidt@cfl.rr.com>
+       Removed unnecessary USER call from GetFontMetrics. Fixes native USER.
+
+       * dlls/comctl32/listview.c, include/listview.h:
+       Ulrich Czekalla <ulrichc@corel.ca>
+       Set proper item focus on DeleteItem.
+       Clean up edit label implementation.
+
+       * files/drive.c: Peter Schlaile <udbz@rz.uni-karlsruhe.de>
+       Fixed a long standing (and annoying) typo, that prevented
+       GetDiskFreeSpaceA from working...
+
+       * misc/registry.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Enable safe reading of registry file, even if file is broken.
+
+       * win32/newfns.c: Ian Schmidt <ischmidt@cfl.rr.com>
+       Changed OpenDesktop stub to Win9x behavior for QuickTime 4.
+
+----------------------------------------------------------------
+Sun Oct 31 22:26:35 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * scheduler/client.c: Set close-on-exec flag on server socket.
+
+       * DEVELOPERS-HINTS: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added explanation on creating a new DLL.
+
+       * misc/version.c: Juergen Schmied <juergen.schmied@debitel.net>
+       Better version autodetection.
+
+       * windows/dialog.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Implemented support of DS_CONTROL and WS_EX_CONTROLPARENT styles.
+
+       * graphics/ddraw.c: Ivan de Saedeleer <Ivands@sympatico.ca>
+       Fail when LPRECT contains negative values.
+
+       * windows/x11drv/event.c: Pierre Mageau <pierre@macadamian.com>
+       On ConfigureNotify, find the first visible window above the current one.
+
+       * debugger/db_disasm.c: Rein Klazes <rklazes@casema.net>
+       Corrected operand sizes for the "enter" instruction.
+
+       * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
+       PSM_ADDPAGE returns TRUE or FALSE.
+
+       * dlls/msacm32/builtin.c, dlls/msacm32/Makefile.in, dlls/msacm32/driver.c, dlls/msacm32/internal.c, dlls/msacm32/msacm32_main.c, dlls/msacm32/stream.c, dlls/msacm32/wineacm.h, include/msacm.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Made msacm32 really load ACM drivers.
+
+       * graphics/painting.c: Jim Aston <jima@corel.ca>
+       Prevent FillRgn from using a NULL pointer.
+
+       * misc/registry.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixed a few problems with RegEnumKey*.
+
+       * dlls/commdlg/filedlg95.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Implementation of user defined templates.
+
+       * dlls/ole32/ifs.c: Marcus Meissner <marcus@jet.franken.de>
+       IMalloc16_Constructor: moved ICOM_VTBL(This) where it belongs.
+
+       * controls/static.c: Marcus Meissner <marcus@jet.franken.de>
+       Do not clear the drawing area for etched static controls.
+       Replaced our own drawing stuff in etched static controls by DrawEdge.
+
+       * dlls/comctl32/listview.c: Pierre Mageau <pierre@macadamian.com>
+       In report view mode of the listview control, implemented the
+       horizontal scrollbar functionality.
+
+       * windows/mdi.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a small bug in the behavior of maximized MDI children.
+
+       * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Rewrite of EnumPrinters.
+
+       * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
+       Fill in the hwndFrom field of the NMHDR structure when sending
+       notifications.
+
+       * files/profile.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       When reading a profile entry remove trailing quote when there's an
+       opening one.
+
+       * objects/gdiobj.c: Francis Beaudet <francis@macadamian.com>
+       Return correct height and width for stock fonts in GetObject.
+
+       * programs/avitools/aviplay.c: Compile fix.
+
+       * programs/wcmd/.cvsignore: Added wmcdrc.h
+
+       * dlls/winmm/mmio.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Added support for the addition and removal of custom I/O preocedures.
+
+       * dlls/ole32/compobj.c, dlls/ole32/ole32.spec:
+       Abey George<abey@macadamian.com>
+       Implemented ProgIDFromCLSID.
+
+       * dlls/comctl32/propsheet.c, dlls/comctl32/rsrc.rc:
+       Thuy Nguyen <thuy@macadamian.com>
+       Wizard mode property sheets have a tab control.
+
+       * loader/loadorder.c, relay32/builtin32.c, Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/winmm/midimap/.cvsignore, dlls/winmm/midimap/Makefile.in, dlls/winmm/midimap/midimap.c, dlls/winmm/midimap/midimap.spec, dlls/winmm/wavemap/.cvsignore, dlls/winmm/wavemap/Makefile.in, dlls/winmm/wavemap/msacm.spec, dlls/winmm/wavemap/wavemap.c, wine.ini:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added built-in msacm.drv and midimap.drv drivers.
+
+       * tools/winapi_check/nativeapi.pm, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_function.pm, tools/winapi_check/winapi_global.pm, tools/winapi_check/winapi_local.pm, tools/winapi_check/winapi_options.pm, tools/winapi_check/winapi_parser.pm:
+       Patrik Stridvall <ps@leissner.se>
+       - Minor fixes and reorganizations.
+       - Added checks for documentation inconsistencies.
+
+       * dlls/winmm/wineoss/audio.c, dlls/winmm/wineoss/midi.c, dlls/winmm/wineoss/mixer.c, dlls/winmm/wineoss/mmaux.c, misc/port.c, misc/winsock.c, misc/winsock_async.c, dlls/winmm/joystick.c:
+       Patrik Stridvall <ps@leissner.se>
+       Added missing configuration #if:s and #includes:s.
+
+       * dlls/crtdll/crtdll_main.c, files/dos_fs.c, objects/dcvalues.c, dlls/advapi32/crypt.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed documentation.
+
+       * dlls/winmm/mciwave/Makefile.in: Patrik Stridvall <ps@leissner.se>
+       Solaris make doesn't like unnecessary \.
+
+       * programs/avitools/aviplay.c, windows/dinput.c, dlls/ole32/memlockbytes.c, dlls/ole32/moniker.c, dlls/ole32/oleobj.c, dlls/ole32/stg_stream.c, dlls/ole32/storage.c, dlls/ole32/storage32.c, dlls/ole32/storage32.h, dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, dlls/shell32/enumidlist.c, dlls/shell32/folders.c, dlls/shell32/if_macros.h, dlls/shell32/regstream.c, dlls/shell32/shell32.spec, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, dlls/shell32/shv_bg_cmenu.c, graphics/d3d_private.h, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c, graphics/ddraw_private.h, dlls/avifil32/avifile.c, dlls/dplayx/dpclassfactory.c, dlls/dsound/dsound_main.c, dlls/ole32/bindctx.c, dlls/ole32/clipboard.c, dlls/ole32/compositemoniker.c, dlls/ole32/hglobalstream.c, dlls/ole32/ifs.c:
+       Francois Gouget <fgouget@psn.net>
+       Generalized the use of the new ICOM_VFIELD and ICOM_VTBL macros.
+
+       * windows/win.c, windows/x11drv/wineclipsrv.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixed a couple of compiler warnings.
+
+       * dlls/shell32/pidl.c: Pierre Mageau <pierre@macadamian.com>
+       A crash would occur if the file type in report mode was empty.
+
+       * windows/keyboard.c: Lionel Ulmer <lionel.ulmer@free.fr>
+       Changed the initialisation of the KeyState array.
+
+       * misc/lstr.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Better handling of newlines in FormatMessage*.
+
+       * dlls/winmm/wineoss/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fix (some) bad behavior with buffer underrun.
+
+       * dlls/winmm/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed PlaySound proc for non PCM content.
+
+       * dlls/comctl32/treeview.c: Ulrich Czekalla <ulrichc@corel.ca>
+       - Treeview uses COLOR_WINDOW color instead of clrBk to fill background.
+       - Treeview: colors returned by TVM_GET**COLOR are mixed up.
+
+       * dlls/commdlg/filedlg95.c: Pierre Mageau <pierre@macadamian.com>
+       Clicking the combo box would cause a crash if it was empty.
+
+       * graphics/escape.c, graphics/win16drv/init.c, include/wine/wingdi16.h, misc/printdrv.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       It appears that StartDoc sends the STARTDOC escape with the DOCINFO
+       structure pointed to with the output data parameter.
+
+       * graphics/fontengine.c, if1632/gdi.spec:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Stub for EngineRealizeFontExt (used by the win98 pscript driver).
+
+       * dlls/comctl32/tab.c: Noomen Hamza <noomen@macadamian.com>
+       Selected button within tab control will be painted with the right
+       color brush.
+
+       * dlls/comctl32/propsheet.c: Pierre Mageau <pierre@macadamian.com>
+       Do not send two PSN_KILLACTIVE messages.
+
+       * wine.ini: Marcus Meissner <marcus@jet.franken.de>
+       ini variables do not like ; comments after them (they are not shell
+       scripts). Fixed a typo in one of the names.
+
+Mon Oct 25 15:43:36 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/dplayx/dplay.c, dlls/dplayx/dplobby.c, dlls/ole32/compobj.c, dlls/ole32/ifs.c, include/wine/obj_base.h:
+       Francois Gouget <fgouget@psn.net>
+       Added two macros, ICOM_VFIELD and ICOM_VTBL, so that when implementing
+       a COM interface one never has to name the lpVtbl field explicitly.
+
+       * dlls/oleaut32/ole2disp.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       SysAllocStringLen16 needs to handle NULL pointers, too.
+
+       * memory/local.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Bug fix.
+
+       * tools/find_debug_channels: Francois Gouget <fgouget@psn.net>
+       Fixed small typos and slightly outdated comments.
+
+       * dlls/shell32/shell32.spec, dlls/shell32/shellord.c:
+       Ian Schmidt <ischmidt@cfl.rr.com>
+       Partial implementation of the Shell32 call Win32DeleteFile(), required
+       by IE5's Explorer.
+
+       * programs/winhelp/Makefile.in, programs/winver/Makefile.in, programs/regapi/Makefile.in, programs/regtest/Makefile.in, programs/view/Makefile.in, programs/wcmd/Makefile.in, programs/notepad/Makefile.in, programs/progman/Makefile.in, Make.rules.in, programs/avitools/Makefile.in, programs/clock/Makefile.in, programs/cmdlgtst/Makefile.in, programs/control/Makefile.in:
+       Added dependency on winestub.o
+
+Sun Oct 24 22:13:55 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/dinput.c, tools/build.c, tools/fnt2bdf.c, win32/console.c, win32/device.c, win32/file.c, win32/process.c, relay32/snoop.c, scheduler/client.c, scheduler/thread.c, server/console.c, server/file.c, server/pipe.c, server/sock.c, server/socket.c, msdos/int21.c, objects/gdiobj.c, include/config.h.in, loader/dos/dosmod.c, loader/dos/dosvm.c, loader/dos/module.c, loader/pe_image.c, memory/ldt.c, dlls/wnaspi32/winaspi32.c, files/directory.c, files/dos_fs.c, graphics/ddraw.c, graphics/x11drv/dib.c, dlls/ole32/compobj.c, dlls/oleaut32/variant.c, dlls/winaspi/winaspi16.c, configure.in, debugger/stabs.c, dlls/crtdll/crtdll_main.c, configure:
+       Patrik Stridvall <ps@leissner.se>
+       - Added missing configuration #if:s and #includes:s.
+       - Minor configuration related changes.
+
+       * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
+       Made LoadHomeRegistryFiles default to TRUE.
+
+       * include/authors.h, include/comm.h, include/datetime.h, include/monthcal.h, include/netspi.h, include/ntsecapi.h, include/psdrv.h, include/wine/obj_connection.h, include/wine/obj_oleundo.h, include/wine/obj_picture.h, include/wine/obj_property.h, include/wine/obj_shellextinit.h, include/wine/winnet16.h, include/winspool.h, include/xmalloc.h, tools/make_authors:
+       Patrik Stridvall <ps@leissner.se>
+       Made the include files self-sufficient.
+
+       * tools/winapi_check/*:
+       Patrik Stridvall <ps@leissner.se>
+       - Fixed the long long problem.
+       - Added configure include consistancy checking.
+       - Added progress indicator.
+       - Began splitting up the win16api.dat and win32api.dat files.
+       - Added various minor checks.
+       - Minor fixes.
+
+       * relay32/kernel32.spec, relay32/user32.spec, dlls/shell32/shell32.spec, dlls/shell32/shlwapi.spec, dlls/win32s/w32skrnl.spec, dlls/winspool/winspool.spec, dlls/wnaspi32/wnaspi32.spec, dlls/ole32/ole32.spec, dlls/oleaut32/oleaut32.spec, dlls/olecli/olecli32.spec, dlls/psapi/psapi.spec, dlls/avifil32/avifil32.spec, dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c, dlls/crtdll/crtdll.spec, dlls/ntdll/ntdll.spec, dlls/ntdll/reg.c:
+       Patrik Stridvall <ps@leissner.se>
+       Added spec file declarations for already implemented functions.
+
+       * graphics/path.c, if1632/gdi.spec, objects/clipping.c:
+       Patrik Stridvall <ps@leissner.se>
+       Added Win16 variants of existing Win32 functions.
+
+       * dlls/ntdll/signal_i386.c: Patrik Stridvall <ps@leissner.se>
+       Solaris compile fix.
+
+       * files/file.c: Gerard Patel <g.patel@wanadoo.fr>
+       Remove prefixing by a tilde for GetTempFileName 32bits.
+
+       * debugger/expr.c: Marcus Meissner <marcus@jet.franken.de>
+       Added missing include.
+
+       * windows/win.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Warn users to use -the -desktop option together with the native user DLLs.
+
+       * loader/resource.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Return the size of the needed resource when buffer is NULL for LoadString().
+
+       * dlls/ole32/clipboard.c, windows/clipboard.c, windows/user.c, windows/x11drv/Makefile.in, windows/x11drv/clipboard.c, windows/x11drv/wineclipsrv.c, wine.ini:
+       Francis Beaudet <francis@macadamian.com>
+       Enabled the persistent clipboard server.
+
+       * misc/registry.c, wine.ini: Nathaniel <wfilardo@fuse.net>
+       Improved registry isolation possibilities.
+
+       * multimedia/*.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Split the multimedia/ directory into dlls/ subdirectories.
+
+       * multimedia/winmm.rc, multimedia/winmm_Pt.rc, programs/clock/ChangeLog, programs/clock/Pt.rc, programs/notepad/ChangeLog, programs/notepad/Fr.rc, programs/notepad/Pt.rc, programs/notepad/Wa.rc, programs/progman/.cvsignore, programs/progman/ChangeLog, programs/progman/Pt.rc, programs/winhelp/.cvsignore:
+       Gustavo Junior Alves <alves@correionet.com.br>
+       More Portuguese language support.
+
+       * objects/dib.c: Matthew J. Francis <asbel@dial.pipex.com>
+       Fixed top-down DIB handling in StretchDIBits32().
+
+       * include/windowsx.h: Peter Hunnisett <hunnise@nortelnetworks.com>
+       Added macro definitions for memory allocation.
+
+       * graphics/x11drv/xfont.c, include/gdi.h, include/x11font.h, objects/font.c:
+       Ulrich Czekalla <ulrichc@corel.ca>
+       Make sure that all calls use the extended structures which are a
+       superset of the regular structures.
+
+       * dlls/comctl32/listview.c: Pierre Mageau <pierre@macadamian.com>
+       Added the functionality of the thumb track.
+
+       * windows/focus.c: Adrian Thurston <adriant@corel.com>
+       Do not set focus to a disabled window.
+
+       * windows/x11drv/keyboard.c: Pierre Mageau <pierre@macadamian.com>
+       Fixed an entry in the keyboard translation table for Ctrl-Break.
+
+       * include/debugdefs.h, scheduler/debugger.c:
+       Ulrich Czekalla <ulrichc@corel.ca>
+       New channel 'debugstr' used to print OutputDebugString API calls.
+
+       * windows/nonclient.c, windows/x11drv/event.c:
+       Noomen Hamza <noomen@macadamian.com>
+       Popup windows will be hidden when we minimize a main frame or shown
+       when we maximize or restore a minimized main frame.
+
+Sat Oct 23 23:59:47 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/comctl32/propsheet.c: Ulrich Czekalla <ulrichc@corel.ca>
+       PropertySheet didn't destroy page dialog's window while removing page.
+
+       * dlls/comctl32/listview.c: Pierre Mageau <pierre@macadamian.com>
+       Update the item width upon a new column in the header control.
+
+       * dlls/ntdll/exception.c: Gerard Patel <g.patel@wanadoo.fr>
+       Reorder parameters to fix position of base reg relative to exception
+       frame.
+
+       * documentation/Makefile.in: Fixed typo.
+
+       * include/*.h:
+       Francois Gouget <fgouget@psn.net>
+       Define the COM macros even in C++.
+
+       * controls/menu.c, windows/mdi.c: Pierre Mageau <pierre@macadamian.com>
+       Fixed loop with WM_SYSCHAR.
+
+       * dlls/comctl32/tooltips.c: Joshua Thielen <thielen@netperson.net>
+       Fixed tooltips positioning.
+
+       * graphics/x11drv/dib.c: Re-applied lost change.
+
+       * loader/task.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Ignore wrong hInstance.
+
+       * include/miscemu.h, msdos/int10.c, msdos/interrupts.c:
+       Robert 'Admiral' Coeyman <admiral@corner.net>
+       Report non-hercules video. Turned on int 2a.
+
+       * include/file.h, include/winbase.h, loader/module.c, files/file.c:
+       Jim Aston <jima@corel.ca>
+       Fixed compiling with STRICT.
+
+       * dlls/comctl32/propsheet.c: Adrian Thurston <adriant@corel.com>
+       Proper resource support for dialog title.
+
+       * include/dlgs.h: Ulrich Czekalla <ulrichc@corel.ca>
+       Fixed some wrong defines.
+
+       * objects/brush.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Copy bitmaps properly.
+
+       * include/debugger.h, debugger/dbg.y, debugger/hash.c, debugger/msc.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Allow loading of modules debug information after first invocation of
+       debugger.
+
+       * dlls/shell32/shellpath.c, dlls/shell32/shlwapi.spec:
+       Jim Aston <jima@corel.ca>
+       Added a few stubs.
+
+       * include/listview.h, dlls/comctl32/listview.c:
+       Ulrich Czekalla <ulrichc@corel.ca>
+       Implementation of edit labels.
+
+       * graphics/d3ddevices.c, graphics/d3dtexture.c, graphics/ddraw.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Fixed some anonymous union accesses.
+
+       * controls/listbox.c: Abey George <abey@macadamian.com>
+       Draw the item text from the top of the item rect.
+
+       * dlls/comctl32/comctl32undoc.c, dlls/shell32/shlview.c:
+       Pierre Mageau <pierre@macadamian.com>
+       Fixed the ascending and descending sort order for the File Dialog.
+
+       * dlls/comctl32/propsheet.c: Ulrich Czekalla <ulrichc@corel.ca>
+       - adds calling application defined callback function once PropertSheet
+         Dialogbox has been initialized just after creating the tab control
+       - handle the case when pszCaption specifies a resource instead of a string
+
+       * dlls/shell32/pidl.c, dlls/shell32/pidl.h, dlls/shell32/shlfolder.c, dlls/shell32/shv_bg_cmenu.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - removed all unnecessary "winapi" from internal _IL* functions
+       - better parameter checking for shellfolder
+       - removed dead code from shv_bg_contextmenu
+
+       * graphics/ddraw.c, graphics/vga.c, include/ddraw.h:
+       Jim Aston <jima@corel.ca>
+       Added another anonymous union using the DUMMYUNIONNAME style.
+
+       * dlls/comctl32/listview.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Properly copy text into user supplied buffer.
+
+       * misc/winsock.c, relay32/wsock32.spec, server/object.h, server/sock.c, if1632/winsock.spec, include/task.h, include/winsock.h, loader/main.c, loader/task.c, misc/main.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Winsock rewrite. Sockets are now proper win32 handles.
+       Internal structures are now really internal.
+
+       * dlls/comctl32/tab.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Tab control doesn't refresh tab area on TCM_SETCURSEL.
+
+       * dlls/shell32/shellord.c, dlls/shell32/shlwapi.spec:
+       Ulrich Czekalla <ulrichc@corel.ca>
+       Implemented StrRChrA.
+
+       * debugger/dbg.y, debugger/debug.l, debugger/expr.c, include/debugger.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Perform proper process shutdown on 'quit' and error.
+
+       * dlls/advapi32/security.c: Gerard Patel <g.patel@wanadoo.fr>
+       Stub OpenThreadToken & OpenProcessToken for failure in Win9x mode.
+
+       * include/winuser.h: Jim Aston <jima@corel.ca>
+       Fixed a small typo.
+
+       * windows/dialog.c: Adrian Thurston <adriant@corel.com>
+       Protect against wrong return value from WM_INITDIALOG.
+
+       * graphics/x11drv/bitmap.c: Francis Beaudet <francis@macadamian.com>
+       Removed an illegal character.
+
+       * dlls/shell32/shell32_main.c: Ian Schmidt <ischmidt@cfl.rr.com>
+       Now inits the policy cache when shell32 is first instantiated.
+       Matches Windoze behavior.
+
+       * dlls/shell32/Makefile.in, dlls/shell32/shellord.c, dlls/shell32/shpolicy.c, dlls/shell32/shpolicy.h:
+       Ian Schmidt <ischmidt@cfl.rr.com>
+       Real implementation of SHRestricted(), clarified SHInitRestricted()'s
+       role a little, added policy data table.
+
+       * dlls/ole32/ifs.c: Marcus Meissner <marcus@jet.franken.de>
+       Use segmented lpvtbl pointer for IMalloc16 interface, not linear one.
+
+       * windows/x11drv/mouse.c: Francis Beaudet <francis@macadamian.com>
+       Replaced a X call with a TSX call in XDRV_MOUSE_SetCursor().
+
+       * dlls/comctl32/rsrc.rc: Ulrich Czekalla <ybicubuk@umail.corel.com>
+       The property sheet dialog needs flag WS_VISIBLE.
+
+       * dlls/commdlg/filedlg95.c: Pierre Mageau <pierre@macadamian.com>
+       Set the default view button to List in the FileDialog.
+
+       * loader/ne/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: don't use GetModuleHandle16 in LoadModule16/NE_CreateProcess.
+
+       * debugger/types.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed potential crash in string variable printing.
+
+       * dlls/comctl32/toolbar.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added WM_GETFONT support.
+
+       * include/main.h, loader/main.c, miscemu/main.c, scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: don't call ExitProcess() before SYSLEVEL_Init().
+
+       * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed some bugs (mmioOpen with 16/32 bit strangeness, mmioAscend &
+       mmioDescend offset and alignment issues).
+
+       * windows/clipboard.c: Ulrich Czekalla <ulrichc@corel.ca>
+       We are supposed to delete the palette object with the DeleteObject
+       function.
+
+       * dlls/comctl32/listview.c: Noomen Hamza <noomen@macadamian.com>
+       Listview items will be drawn with the right item dimensions.
+
+       * graphics/psdrv/text.c: Luc Tourangeau <luc@macadamian.com>
+       Some small corrections to the ExtTextOut function.
+
+       * dlls/ole32/ole2.c: Francis Beaudet <francis@macadamian.com>
+       Make sure that the drop effect of a DnD operation is set to
+       DROPEFFECT_NONE if the user cancelled the operation.
+
+       * dlls/comctl32/animate.c, include/animate.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       First working version.
+
+       * multimedia/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added the mute capability to most control lines.
+
+       * windows/win.c: Rein Klazes <rklazes@casema.net>
+       Use the module handle, if CreateWindowEx is called with
+       hInstance==NULL.
+
+       * include/wine/undocshell.h: Marcus Meissner <marcus@jet.franken.de>
+       Added missing prototypes for StrRetToBuf(A|W).
+
+Wed Oct 13 16:17:23 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * programs/clock/.cvsignore, programs/notepad/.cvsignore, programs/progman/.cvsignore:
+       Added Pt.s.
+
+       * objects/dib.c: Backed out previous change (breaks with metafiles).
+
+       * server/Makefile.in, server/request.h, server/sock.c, server/trace.c, include/server.h, include/winsock.h:
+       Ove Kaaven <ovek@arcticnet.no>
+       Added socket interface to wineserver.
+
+       * loader/loadorder.c, loader/main.c, miscemu/main.c, wine.ini:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Correct filename for kernel module is KRNL386.EXE.
+
+       * dlls/winspool/winspool.spec, dlls/winmm/wineoss/wineoss.spec:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added missing (and now required) filename directive.
+
+       * tools/build.c, include/builtin32.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added filename to 32 bit builtin module descriptors.
+
+       * if1632/builtin.c, relay32/builtin32.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fix loading of modules: now search key is module's filename, not
+       module's name.
+
+       * dlls/comctl32/propsheet.c, dlls/comctl32/tab.c:
+       Pierre Mageau <pierre@macadamian.com>
+       When an error occurred in a property sheet because of invalid data,
+       clicking on another tab, would activate the new tab but keep the
+       original property sheet.
+
+       * dlls/comctl32/listview.c, dlls/shell32/pidl.c, dlls/shell32/pidl.h, dlls/shell32/shell32_main.c, dlls/shell32/shlview.c, dlls/shell32/shv_bg_cmenu.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - implemented sorting the listview by clicking on the column header
+       - implemented the context menu entrys for sorting
+       - some more functions to gather data form pidls
+
+       * dlls/commdlg/cdlg.h, dlls/commdlg/cdlg32.c, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Removed linking by GetProcAddress for StrRetToBuf sinc not all
+       versions of shlwapi exporting this function.
+
+       * loader/module.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Removes extraneous comparison of data pointed to by the relocation
+       offset when no relocation entries exist.
+
+       * if1632/wprocs.spec, loader/ne/module.c:
+       Marcus Meissner <Marcus.Meissner@lst.de>
+       WPROCS.ENTRYADDRPROC needs to return something in CX too (fixes
+       BLINKER selfextracting executables).
+
+       * windows/dialog.c: Abey George <abey@macadamian.com>
+       Changed EndDialog to behave like as in Windows.
+       Call SetWindowPos instead of ShowWindow in EndDialog.
+
+       * windows/winpos.c: Abey George <abey@macadamian.com>
+       Changed WINPOS_CanActivate to not to consider WS_VISIBLE style.
+       Code for activating and setting focus to other windows when a window
+       is hidden, is moved to ShowWindow from SetWindowPos.
+       Activate the top level window if it's not active in ShowWindow(SW_SHOW).
+
+       * graphics/x11drv/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed X11DRV_DIB_SetImageBits when called for RLE encoded dibs.
+
+       * objects/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Optimized StretchDIBits to call SetDIBitsToDevice (when src & dst
+       dimensions are equal).
+
+       * programs/notepad/Makefile.in, programs/notepad/Pt.rc, programs/progman/Makefile.in, programs/progman/Pt.rc, programs/clock/Makefile.in, programs/clock/Pt.rc:
+       Gustavo Junior Alves <alves@correionet.com.br>
+       Added Portuguese language support.
+
+       * dlls/avifil32/avifile.c, dlls/dplayx/dplay.c, dlls/dplayx/dplobby.c, dlls/oleaut32/typelib.c, dlls/shell32/brsfolder.c, dlls/shell32/shellord.c:
+       Francois Gouget <fgouget@psn.net>
+       Use the COM macros rather than directly accessing the lpvtbl field.
+
+       * include/wine/winuser16.h, misc/lstr.c, if1632/user.spec:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Use LoadString16 for FormatMessage16 and handle
+       FORMAT_MESSAGE_ALLOCATE_BUFFER flag.
+
+       * graphics/psdrv/text.c: Luc Tourangeau <luc@macadamian.com>
+       Some adjustments to ExtTextOut.
+
+       * include/psdrv.h, graphics/psdrv/clipping.c, graphics/psdrv/init.c, graphics/psdrv/ps.c:
+       Stephane Lussier <stephane@macadamian.com>
+       Fixed the clipping for the postscript driver and turned it on (by setting
+       PSDRV_SetDeviceClipping in the function table).
+
+       * files/drive.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Account for the trailing NULL in GetLogicalDriveStringsA.
+
+       * include/wine/obj_oleaut.h: Francois Gouget <fgouget@psn.net>
+       Fixed a typo in a function declaration.
+
+       * windows/x11drv/keyboard.c: Zoltan Kovacs <oritele@alarmix.net>
+       Added Hungarian keyboard support.
+
+       * windows/mdi.c, windows/winpos.c: Thuy Nguyen <thuy@macadamian.com>
+       We have to activate MDI child windows.
+
+       * dlls/commdlg/filedlg.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Use Get|SetPropA to store lParam to retrieve the OPENFILENAME16 for a
+       hWnd.
+
+       * graphics/x11drv/graphics.c: Rein Klazes <rklazes@casema.net>
+       Correct usage of a scratch array in X11DRV_PolyBezier.
+
+       * controls/combo.c: Gerard Patel <g.patel@wanadoo.fr>
+       Make WM_GETTEXTLENGTH return length for dropdownlist combos.
+
+       * controls/button.c: Francois Boisvert <francois@macadamian.com>
+       Removed FillRect in the ownerdrawn button procedure.
+
+       * windows/x11drv/event.c: Abey George <abey@macadamian.com>
+       Make sure the Focus Out window is still the Foreground window before
+       doing SetForegroundWindow(0) in Event_FocusOut.
+
+       * graphics/x11drv/palette.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixes problems with color drift when switching to/from
+       logical/physical colors.
+
+       * dlls/comctl32/header.c: Thuy Nguyen <thuy@macadamian.com>
+       Mouse position is signed.
+
+       * windows/syscolor.c: Noomen Hamza <noomen@macadamian.com>
+       Set the COLOR_3DLIGHT system color to the right window default value.
+
+       * loader/pe_image.c: Marcus Meissner <Marcus.Meissner@caldera.de>
+       Small hack to check if we need to relocate the TLS directory or not
+       (some seem to need this pointer relocateable, some already do relocate
+       it by themselves).
+
+       * Make.rules.in: Marcus Meissner <Marcus.Meissner@caldera.de>
+       Relink subdirectory objects on Makefile.in/Make.rules.in change.
+
+       * dlls/comctl32/propsheet.c: Marcus Meissner <Marcus.Meissner@lst.de>
+       Check for NULL ptr in Propsheet_RemovePage (Xing DVD Player).
+
+       * multimedia/dsound.c: Marcus Meissner <Marcus.Meissner@lst.de>
+       Don't ref NULL ptrs in debug.
+
+       * windows/dinput.c: Marcus Meissner <Marcus.Meissner@lst.de>
+       If the joydevice is not present, do not create a DirectInputDevice.
+
+       * dlls/commdlg/commdlg.spec, dlls/commdlg/printdlg.c, include/commdlg.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Map PrintDlg16 to PrintDlgA.
+
+       * dlls/shell32/shlmenu.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Small fixes.
+
+       * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Made TrackPopupMenu with TPM_RETURNCMD returning the id instead of
+       true.
+
+       * dlls/comctl32/treeview.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Prevent self referencing next pointer during insert.
+
+       * ole/nls/fra.nls: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added some missing definitions.
+
+       * multimedia/winmm.rc, multimedia/winmm_Nl.rc:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Added Dutch to the languages supported by MCI.
+
+       * documentation/status/internationalisation:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Updated status of internationalisation.
+
+       * loader/pe_image.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: *Don't* resolve PE imports if asked not to ...
+
+       * misc/ddeml.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: DdeNameService was broken.
+
+       * loader/ne/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: When loading an executable module fails, don't perform module
+       cleanup before the corresponding task is destroyed.
+
+       * dlls/commdlg/cdlg_En.rc, dlls/commdlg/cdlg_xx.rc:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Moved bitmap resource to language-independent resource file.
+
+       * misc/version.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Added warning for future VERSION_GetVersion() (mis-)users and made
+       OSVERSIONINFO warning more detailed.
+
+       * dlls/oleaut32/oleaut.c, dlls/oleaut32/oleaut32.spec:
+       Marcus Meissner <Marcus.Meissner@caldera.de>
+       Added stubs for RevokeActiveObject, GetActiveObject, fixed
+       RegisterActiveObject stub argtypes.
+
+       * windows/x11drv/keyboard.c:
+       Marcus Meissner <Marcus.Meissner@caldera.de>
+       Added german keyboard layout with "nodeadkeys" option enabled (just to
+       apostrophes are switched).
+
+       * dlls/msvideo/msvideo.spec, dlls/msvideo/msvideo_main.c:
+       Marcus Meissner <Marcus.Meissner@caldera.de>
+       Stub for VideoCapDriverDescAndVer.
+
+       * msdos/int21.c: Marcus Meissner <Marcus.Meissner@caldera.de>
+       Replicate CreateDirectory() LastError workaround for the LFN part.
+
+       * misc/registry.c: Marcus Meissner <Marcus.Meissner@caldera.de>
+       Also escape characters >=0x80 within the wineregistry savefile.
+
+       * dlls/wnaspi32/winaspi32.c:
+       Marcus Meissner <Marcus.Meissner@caldera.de>
+       Don't use malloc/free in winaspi32.
+
+       * graphics/ddraw.c: Marcus Meissner <Marcus.Meissner@caldera.de>
+       Use 1 macro for rgbbitdepth -> byte determination.
+       xshm/image creation now uses 1/8 of the space for every image.
+
+       * relay32/user32.spec: Marcus Meissner <Marcus.Meissner@caldera.de>
+       Replaced double ChangeDisplaySettingsA by (Ex)[AW].
+
+Wed Sep 29 12:16:16 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * if1632/builtin.c, loader/module.c, loader/ne/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Don't call GetVersionExA too early, to avoid breaking
+       automatic emulated Windows version detection.
+
+       * dlls/oleaut32/typelib.c, include/oleauto.h, dlls/oleaut32/oleaut32.spec:
+       Rein Klazes <rklazes@casema.net>
+       First implementation of LoadTypeLibEx().
+
+       * if1632/mmsystem.spec, multimedia/mmsystem.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added stub for WMMMIDIRUNONCE called by midimap.drv.
+
+       * misc/winsock.c: Marcus Meissner <marcus@jet.franken.de>
+       Set refcounter to 1 on initial init or WSAStartup/WSAStartup with
+       following WSACleanup will already free the structures.
+
+       * multimedia/dsound.c: Marcus Meissner <marcus@jet.franken.de>
+       Create DirectSound object even without sounddevice. Games can be
+       played without sound, but not without DirectSound object (tested with
+       Monkey Island 3).
+
+       * dlls/oledlg/oledlg.spec, include/ntddk.h, relay32/kernel32.spec, relay32/user32.spec, tools/build.c, dlls/crtdll/crtdll.spec, dlls/ntdll/ntdll.spec, dlls/ntdll/rtl.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some of the issues reported by winapi-check, by adding arguments
+       to varargs.
+
+       * Make.rules.in, Makefile.in: Patrik Stridvall <ps@leissner.se>
+       Added ability to call winapi_check from the Makefiles.
+
+       * msdos/dpmi.c: Patrik Stridvall <ps@leissner.se>
+       Modification due to problems with winapi-check.
+
+       * tools/winapi_check/parser.pm, tools/winapi_check/win16api.dat, tools/winapi_check/win32api.dat, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_options.pm, tools/winapi_check/winapi_parser.pm:
+       Patrik Stridvall <ps@leissner.se>
+       - Adapted to changes in Wine.
+       - Minor improvements.
+
+Tue Sep 28 16:40:07 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/event.c, server/object.h:
+       Made event manipulation routines public.
+
+       * dlls/Makefile.in, dlls/dplayx/.cvsignore, dlls/dplayx/Makefile.in, dlls/dplayx/dpclassfactory.c, dlls/dplayx/dpinit.h, dlls/dplayx/dplay.c, dlls/dplayx/dplay.spec, dlls/dplayx/dplayx.spec, dlls/dplayx/dplobby.c, documentation/status/directplay, include/dplay.h, include/dplobby.h, multimedia/Makefile.in, multimedia/dplay.c, relay32/.cvsignore, relay32/dplay.spec, relay32/dplayx.spec, relay32/Makefile.in, Makefile.in, configure, configure.in:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       - Moved dplay and dplayx to a proper home in the dlls directory.
+       - Implemented new DirectPlay4 and DirectPlayLobby3 interfaces.
+       - Implemented a class factory for dplay and dplobby. COM interfaces
+         now work for dp and dpl.
+       - Added a few more entries to dplayx.spec files. How do you find the
+         ordinals? I just guessed :(
+       - Seperated DirectPlay and DirectPlayLobby implementation into separate files.
+       - Included some missing header file definitions.
+       - Implemented the dplay dll in terms of the dplayx dll. I haven't
+         tested it so it may not work...
+       - A few bug fixes and a little new implementatioe.n
+       - Updated document with a more detailed implementation plan.
+
+       * windows/win.c: Noomen Hamza <noomen@macadamian.com>
+       Rewrite the ShowOwnedPopups function with a safety algorithm.
+
+       * controls/menu.c: Karl Lessard <ybicubuk@umail.corel.com>
+       Make ExecFocusedItem return -1 on failure.
+
+       * graphics/ddraw.c, multimedia/dsound.c:
+       Peter Hunnisett <hunnise@nortelnetworks.com>
+       - Changed return code for failure on *_DllGetClassObject to
+         CLASS_E_CLASSNOTAVAILABLE from E_NOTAVAILABLE as documented.
+       - Replaced memcmps with equivalent IsEqualCLSID or IsEqualGUID macros.
+       - Changed "return 0;" with S_OK or DS_OK as appropriate.
+
+       * dlls/ntdll/signal_i386.c:
+       Support TRAP_sig for FreeBSD (with the help of Juergen Lock).
+
+       * loader/module.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Remember the allocated string to free it.
+
+       * controls/menu.c: Gerard Patel <g.patel@wanadoo.fr>
+       Force recalculation of menu when calling InsertMenuItem.
+
+       * dlls/shell32/shell32.spec, dlls/shell32/shellord.c:
+       Ian Schmidt <ischmidt@cfl.rr.com>
+       Implementation of 2 Win98 by-ordinal SHELL32 routines.  Helps Win98
+       Explorer work better.
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed typo in hDrv for sending message.
+
+Mon Sep 27 13:38:57 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/mmddk.h, multimedia/mci.c, multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcicda.c, multimedia/mcimidi.c, multimedia/mciwave.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed last dependancies between MCI drivers and WINMM/MMSYSTEM
+       DLLs.
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Got rid of hack on WAVEHDR's & MIDIHDR's reserved field for 16/32 bit
+       discrimination.
+       Fixed a few segptr/linear address bugs in WAVEHDR/MIDIHDR handling.
+
+       * multimedia/mixer.c, multimedia/mmaux.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Check for OSS driver presence and return error accordingly.
+
+       * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Got rid of hack on MIDHDR's reserved field for 16/32 bit
+       discrimination.
+
+       * multimedia/lolvldrv.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed crash with mapper loading.
+       Got rid of hack on WAVEHDR's reserved field for 16/32 bit
+       discrimination.
+
+       * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Got rid of hack on WAVEHDR's reserved field for 16/32 bit
+       discrimination.
+
+       * documentation/wine.texinfo: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Typo correction.
+
+       * loader/libres.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Fix integer based resource id assumption.
+       Add support for string based type ids.
+
+       * include/winsock2.h: Ove Kaaven <ovek@arcticnet.no>
+       Added some basic Winsock2 definitions.
+
+       * server/object.h, server/select.c: Ove Kaaven <ovek@arcticnet.no>
+       Added EXCEPT_EVENT to wineserver select loop.
+
+       * files/dos_fs.c: Peter Ganten <ganten@uni-bremen.de>
+       Fix for VFAT_IOCTL_READDIR_BOTH.
+
+       * dlls/wing/wing_main.c: Peter Ganten <ganten@uni-bremen.de>
+       Small wing enhancement.
+
+       * controls/edit.c: Stephane Lussier <stephane@macadamian.com>
+       Return key should not be ignored in multiline edit even if
+       ES_WANTRETURN flag isn't set.
+
+       * include/gdi.h, objects/gdiobj.c:
+       Francis Beaudet <francis@macadamian.com>
+       DPtoLP needs to round the result.
+       Fixed MulDiv to deal better with negative numbers.
+
+       * windows/painting.c: Francis Beaudet <francis@macadamian.com>
+       rcPaint has to be returned in logical coordinates but was intersected
+       with a client rectangle in device coordinates.
+
+       * objects/region.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       Fixed GetRandomRgn.
+
+       * files/drive.c: Abey George <abey@macadamian.com>
+       Made GetCurrentDirectory return long name of the current directory.
+
+       * include/button.h, controls/button.c: Rein Klazes <rklazes@casema.net>
+       Use an extra bit in the button status byte to flag whether the
+       DefButtonWndProc should process the WM_LBUTTONUP message.
+
+       * scheduler/process.c, scheduler/sysdeps.c, dlls/ntdll/Makefile.in, dlls/ntdll/exception.c, dlls/ntdll/signal_i386.c, graphics/ddraw.c, include/sig_context.h, include/debugger.h, include/dosexe.h, include/miscemu.h, include/wine/exception.h, loader/signal.c, loader/Makefile.in, loader/main.c:
+       Moved all signal support to a new platform-specific file.
+       Make use of the per-thread signal stack (Juergen Lock).
+       Fixed %fs in signal handler for non FS_sig case (Ulrich Weigand).
+
+----------------------------------------------------------------
+Thu Sep 23 16:14:44 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * Makefile.in, windows/x11drv/.cvsignore, windows/x11drv/Makefile.in, windows/x11drv/wineclipsrv.c:
+       Noel Borthwick <noel@macadamian.com>
+       Added clipboard server.
+
+       * tools/Attic/winapi-check, tools/winapi_check/nativeapi.dat, tools/winapi_check/nativeapi.pm, tools/winapi_check/parser.pm, tools/winapi_check/win16api.dat, tools/winapi_check/win32api.dat, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_global.pm, tools/winapi_check/winapi_local.pm, tools/winapi_check/winapi_options.pm, tools/winapi_check/winapi_parser.pm:
+       Patrik Stridvall <ps@leissner.se>
+       Made a new improved version of winapi-check in perl.
+
+       * msdos/int21.c:
+       Implemented uppercasing functions (based on a patch by Robert
+       'Admiral' Coeyman).
+
+       * windows/user.c, dlls/ole32/ole2stubs.c, dlls/ole32/storage.c, dlls/oleaut32/typelib.c, dlls/stress/stress_main.c, if1632/dummy.c, include/stress.h, include/wine/wingdi16.h, misc/printdrv.c, windows/input.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some of the issues reported by winapi-check.
+
+       * misc/comm.c: Patrik Stridvall <ps@leissner.se>
+       Modification due to problems with winapi-check.
+
+       * windows/x11drv/event.c: Noomen Hamza <noomen@macadamian.com>
+       WS_POPUP windows (excluding the WS_POPUPWINDOW windows) should be
+       closed after loosing the focus.
+
+       * objects/dib.c: Francois Boisvert <francois@macadamian.com>
+       CreateDIBitmap creates a monochrome bitmap only when the first color of the
+       colormap is black followed by white. Otherwise it creates a color bitmap.
+
+       * windows/defwnd.c, windows/nonclient.c:
+       Noomen Hamza <noomen@macadamian.com>
+       Non active window should be activated when it gets any
+       client/non-client double/single left/medium/right mouse click(s).
+
+Wed Sep 22 16:53:54 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * relay32/builtin32.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added WINEOSS descriptor.
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       MMSYSTEM_GetIData() now dies when no iData is present
+       Better error recovery when the process attachment fails
+       PlaySound (and helper functions) now use the regular waveOutXXX (instead of wodMessage)
+       Moved handling of hack for differenciating between 16 and 32 bit callback to lolvldrv.c
+       Makes use of new lolvldrv.c interfaces
+
+       * multimedia/.cvsignore, multimedia/Makefile.in, multimedia/lolvldrv.c, multimedia/oss.c, multimedia/oss.h, multimedia/winemm.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added lolvldrv.c and oss.c.
+       Thunks to 16 bit are now generated for the MMSYSTEM module.
+
+       * configure.in, dlls/winmm/.cvsignore, dlls/winmm/Makefile.in, dlls/winmm/wineoss/.cvsignore, dlls/winmm/wineoss/Makefile.in, dlls/winmm/wineoss/wineoss.spec, Makefile.in, configure:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added dlls/winmm and dlls/winmm/wineoss directories.
+
+       * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       No longer checking for correct iData in code.
+
+       * relay32/winmm.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added missing DriverCallBack function.
+
+       * if1632/mmsystem.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       All headers (wave and midi functions) are now seen as segptr.
+       Added stub for joyGetPosEx16().
+
+       * include/mmsystem.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added some missing defines.
+
+       * include/mmddk.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Now using the same structs for low-level drivers as Windows do.
+
+       * multimedia/audio.c, multimedia/mixer.c, multimedia/mmaux.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Make it (almost) 32 bit only.
+       Reflected creation of WINEOSS module.
+
+       * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Make it (almost) 32 bit only.
+       Reflected creation of WINEOSS module.
+       No longer using ERR when no MIDI card is present.
+
+       * multimedia/joystick.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added stub for joyGetPosEx16().
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       No longer checking for correct iData in code.
+       Added look-up tables to command tables (speeds up queries).
+
+       * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Now using WAVEFORMATEX instead of PCMWAVEFORMAT.
+
+       * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Now using modReset() instead of tweaking MIDI controls.
+
+       * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed returned type upon open.
+       Fixed some bogus error checking.
+
+       * multimedia/mcianim.c, multimedia/mciavi.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed returned type upon open.
+
+       * dlls/ntdll/exception.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Do not set EH_NONCONTINUABLE.
+
+       * programs/osversioncheck/.cvsignore, programs/osversioncheck/ChangeLog, programs/osversioncheck/Makefile.in, programs/osversioncheck/osversioncheck.c, configure, configure.in, programs/Makefile.in:
+       Morten Eriksen <mortene@sim.no>
+       Added simple console mode example program which lists information
+       about the version of Windows we're currently running on.
+
+       * loader/module.c: Fixed memory allocation bug.
+
+       * windows/x11drv/event.c: Gerard Patel <g.patel@wanadoo.fr>
+       Fix infinite loop with glastXFocusWindow.
+
+       * dlls/comctl32/imagelist.c: Stephane Lussier <stephane@macadamian.com>
+       Allow creation of empty imagelist.
+
+       * objects/palette.c, relay32/gdi32.spec:
+       Ian Schmidt <ischmidt@cfl.rr.com>
+       Added partial implementation of GetICMProfileA, required by Paint Shop
+       Pro 5.
+
+       * controls/menu.c: Abey George <abey@macadamian.com>
+       Don't send WM_ENTERMENULOOP, WM_INITMENU & WM_INITMENUPOPUP messages
+       when TPM_NONOTIFY flag is set in TrackPopupMenu.
+
+       * misc/winsock.c: David Luyer <luyer@ucs.uwa.edu.au>
+       getpeername() and getsockname() return errors in errno not h_errno.
+
+Mon Sep 20 18:52:06 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/commdlg/filedlgbrowser.c, dlls/commdlg/printdlg.c, include/builtin16.h, misc/registry.c, objects/cursoricon.c, tools/build.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed ANSI C violations.
+
+       * windows/keyboard.c, windows/mouse.c, if1632/keyboard.spec, if1632/mouse.spec, windows/input.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Keyboard/mouse event proc thunk creation moved out of if1632/thunk.c.
+
+       * if1632/kernel.spec, include/task.h, loader/.cvsignore, loader/Makefile.in, loader/ne/module.c, loader/ne/segment.c, loader/task.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Don't create thunk for task signal proc, call it directly.
+
+       * if1632/gdi.spec, include/gdi.h, objects/.cvsignore, objects/Makefile.in, objects/clipping.c, objects/dc.c, windows/dce.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       DC hook proc thunk management simplified.
+
+       * misc/system.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       System timer proc thunk creation moved out of if1632/thunk.c.
+
+       * scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Don't create thunk for CreateThread16 proc, call it directly.
+
+       * windows/.cvsignore, windows/Makefile.in, windows/hook.c, dlls/shell32/shell.c, if1632/user.spec, include/hook.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Windows hook proc thunk management simplified.
+
+       * include/callback.h, if1632/thunk.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Modified THUNK_Alloc so as to avoid 32->16->32 calling sequences.
+       Removed persistent thunk creation routines.
+
+       * configure, configure.in, include/acconfig.h, include/config.h.in, include/ts_xf86dga2.h, tools/make_X11wrappers, tsx11/Makefile.in, tsx11/X11_calls, tsx11/ts_xf86dga2.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       Added the possibility to use DGA 2.0.
+
+       * winedefault.reg: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added HKEY_LOCAL_MACHINE\...\ProgramFilesDir registry key.
+
+       * dlls/comctl32/commctrl.c: Dennis Borklund <dennisb@cs.chalmers.se>
+       It's no error to send a WM_COMMAND to MenuHelp.
+
+       * files/file.c: Francois Boisvert<francois@macadamian.com>
+       CreateFileA returns HFILE_ERROR when the filename contains a wild card.
+
+       * controls/static.c: Francis Beaudet <francis@macadamian.com>
+       Fixed display bug in the static control.
+
+       * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
+       Message removed when menu tracking finish on a WM_LBUTTONDOWN.
+
+       * include/bitmap.h, include/ts_xlib.h, include/x11drv.h, objects/dib.c, tsx11/X11_calls, tsx11/ts_xlib.c, windows/clipboard.c, windows/x11drv/clipboard.c, windows/x11drv/event.c, graphics/x11drv/bitmap.c, graphics/x11drv/dib.c:
+       Noel Borthwick <noel@macadamian.com>
+       - Add clipboard support for copying/pasting bitmaps or Pixmaps between Wine
+         and native Linux applications.
+       - Respond to the MULTIPLE selection request target when Wine is the
+         selection owner.
+       - Relax type checking for TARGETS selection.
+
+       * if1632/builtin.c, loader/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Set 'expected_version' of built-in and dummy modules according to
+       emulated Windows version.
+
+       * if1632/relay.c, loader/main.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Make CallTo16 return stub segment owned by KERNEL.
+
+       * include/wine/winbase16.h, loader/task.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Improved GetCodeHandle16 / GetCodeInfo16.
+
+       * ole/nls/sve.nls: Dennis Bjorklund <dennisb@cs.chalmers.se>
+       Added some values that were missing in the Swedish nls file.
+
+Sun Sep 19 18:58:16 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/x11drv/dib.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: create DDB in X11DRV_DIB_GetDIBits if necessary.
+
+       * dlls/ole32/ole32.spec: Juergen Schmied <juergen.schmied@metronet.de>
+       Added missing export.
+
+       * objects/cursoricon.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed crash when loading *.ani files.
+
+       * ole/*, dlls/ole32/*, dlls/oleaut32/*, dlls/olecli/*, dlls/oledlg/*:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved bulk of OLE implementation to dlls/ subdirectories.
+
+       * controls/menu.c: Dennis Björklund <dennisb@cs.chalmers.se>
+       Send correct WM_MENUSELECT when menu closes.
+
+       * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/shell32/shres.rc:
+       Francois Boisvert <francois@macadamian.com>
+       Added small feature in the file dialog.
+
+       * win32/newfns.c, files/drive.c, include/winnt.h, include/wtypes.h, msdos/vxd.c, ole/antimoniker.c, ole/compositemoniker.c, ole/datacache.c, ole/filemoniker.c, ole/hglobalstream.c, ole/itemmoniker.c, ole/memlockbytes.c, ole/olefont.c, ole/stg_bigblockfile.c, ole/stg_stream.c, ole/storage.c, ole/storage32.c, ole/variant.c, dlls/advapi32/service.c, dlls/comctl32/comctl32undoc.c:
+       Patrik Stridvall <ps@leissner.se>
+       Added support for anonymous structs/unions on compilers that implement it.
+
+       * include/wingdi.h, objects/text.c, relay32/gdi32.spec:
+       Peter Ganten <ganten@uni-bremen.de>
+       Stubs for PolyTextOutA/W.
+
+       * graphics/x11drv/dib.c, objects/dib.c:
+       Karl Lessard <ybicubuk@umail.corel.com>
+       Some more minor GDI fixes.
+
+       * dlls/comctl32/imagelist.c: Stephane Lussier <stephane@macadamian.com>
+       In ImageList_Draw when drawing the bitmap with the transparent flag
+       set, background color/foreground color should be set to white/black,
+       when doing bitblt operation with the bitmap mask.
+
+       * graphics/escape.c, graphics/win16drv/init.c, include/win16drv.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Extend DRAWMODE struct to win95 spec.
+       Add some more Escape -> Escape16 conversions.
+
+       * graphics/win16drv/prtdrv.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Stop trashing devmode if in and out devmodes are the same.
+
+       * controls/widgets.c: Noomen Hamza <noomen@macadamian.com>
+       The MDIClient class must be registered with the IDC_ARROW cursor.
+
+       * controls/combo.c: Francis Beaudet <francis@macadamian.com>
+       Implemented the disabled state of the combobox.
+
+       * controls/menu.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       Protect SetMenu from rogue menu handle.
+       GetMenu16 can just call GetMenu.
+
+       * windows/mdi.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       Protect MDISetMenu from rogue menu handles.
+
+       * memory/local.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       Tidy up TRACE etc to use default channel.
+
+       * dlls/version/info.c, dlls/version/version.spec, include/winbase.h, include/winver.h, ole/ole2nls.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Move VerLanguageName[AW] back to base (exported from KERNEL32 ...).
+
+       * dlls/comctl32/rsrc.rc, dlls/comctl32/comctl32.h, dlls/comctl32/propsheet.c:
+       Thuy Nguyen <thuy@macadamian.com>
+       Added support for wizard property sheets.
+
+       * misc/lstr.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fix FormatMessage16 at least enough to get win95 16bit printdlg working.
+
+       * dlls/comctl32/tab.c: David Luyer <luyer@ucs.uwa.edu.au>
+       - iSelected should be -1 if no item selected (Gerard Patel)
+       - some of the checks for invalid items where > when they should have been >=
+         (Marcus Meissner)
+       - made InsertItem behave similarly to DeleteItem, ie, if the current item is
+         after where the item is inserted, increment the selected item (David Luyer)
+
+       * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Declare CALL32_CBClient[Ex] without WINAPI.
+
+       * debugger/db_disasm.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: (E)IP-relative offsets depend on operand, not address, size.
+
+       * include/winuser.h, relay32/user32.spec, windows/user.c, include/wingdi.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added stub implementation for EnumDisplayDevices*.
+
+       * dlls/wnaspi32/winaspi32.c: Marcus Meissner <marcus@jet.franken.de>
+       Added SC_GET_DEVTYPE.
+
+       * ole/compobj.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Added stub for OLE32.DllGetClassObject.
+
+       * dlls/shell32/pidl.h, dlls/shell32/shell32_main.c, include/shlguid.h, dlls/shell32/pidl.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       More support for special pidls in SHGetSpecialFolderLocation.
+
+       * graphics/psdrv/graphics.c, graphics/psdrv/pen.c, include/psdrv.h:
+       Luc Tourangeau <luc@macadamian.com>
+       Implemented invisible pens.
+
+       * objects/dib.c, graphics/x11drv/dib.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Small DIB fixes.
+
+       * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
+       Added a case for menu handling in win31.
+
+Tue Sep 14 11:51:02 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/x11drv.h, objects/dib.c, graphics/x11drv/dib.c:
+       Karl Lessard <karll@corel.com>
+       Fixed GetDIBits problems.
+
+       * misc/cpu.c, multimedia/mixer.c, include/commctrl.h, include/mmsystem.h, include/ntddk.h, include/prsht.h, include/shlobj.h, include/winbase.h, include/windef.h, include/wine/obj_dataobject.h, include/wine/obj_oleaut.h:
+       Patrik Stridvall <ps@leissner.se>
+       Add support for anonymous struct/unions on compilers that implement it.
+
+Mon Sep 13 16:06:17 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * controls/button.c, controls/uitools.c:
+       Dennis Bj|rklund <dennisb@cs.chalmers.se>
+       Fixed win9x look on checkboxes and radiobuttons.
+
+       * graphics/win16drv/.cvsignore, graphics/win16drv/Makefile.in, graphics/win16drv/init.c, graphics/win16drv/prtdrv.c, if1632/thunk.c, include/callback.h, include/gdi.h, misc/.cvsignore, misc/Makefile.in, misc/printdrv.c, objects/dc.c, graphics/escape.c, graphics/psdrv/escape.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Change interfaces to THUNK_Alloc/Free slightly and make them non-static.
+       Remove relays for win16drv from CallBack table, instead use build to
+       generate them directly in graphics/win16drv/prtdrv.c.
+       If Printer AbortProc is 16bit then allocate thunk and store that as a
+       32bit proc in DC.  Setting of abortprocs now done in the correct place
+       (i.e. not in the driver).
+
+       * objects/dib.c: Kai Morich <kai.morich@bigfoot.de>
+       Relaxed parameter checking for GetDIBits.
+
+       * win32/device.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed last error code when trying to load unknown VxD with CreateFile.
+
+       * dlls/shell32/shell32_main.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Pretend successful execution of SHELL_NotifyIcon*().
+
+       * controls/menu.c, relay32/user32.spec:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added MenuItemFromPoint stub.
+
+       * dlls/comctl32/comctl32undoc.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed off by one allocation error (DPA and DSA).
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed crash in PlaySound thread.
+
+Sat Sep 11 16:29:00 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * controls/listbox.c: Nick Holloway <Nick.Holloway@alfie.demon.co.uk>
+       For Win 3.x applications, if they have either horizontal or vertical
+       scrollbars, enable both.
+
+       * dlls/advapi32/crypt.c, dlls/msacm32/internal.c, dlls/shell32/pidl.c, include/wine/winestring.h, memory/string.c:
+       Patrik Stridvall <ps@leissner.se>
+       Eliminated warnings.
+
+       * controls/combo.c, controls/listbox.c:
+       Pierre Mageau <pierre@macadamian.com>
+       Set the mouse capture on the combo listbox.
+
+       * graphics/ddraw.c: Lionel Ulmer <lionel.ulmer@free.fr>
+       - fixed the creation of back-buffers in DGA mode
+       - added a check on the validity of the Locking rectangle
+       - fixed the enumeration for DX-6.0
+
+       * dlls/comctl32/commctrl.c: Stephane Lussier <stephane@macadamian.com>
+       Fixed RGBQUAD/COLORREF mixup in CreateMappedBitmap().
+
+       * controls/button.c: Abey George <abey@macadamian.com>
+       Draw the focus rectangle for buttons with BS_3STATE, BS_RADIOBUTTON,
+       BS_CHECKBOX, BS_AUTO* styles.
+
+Fri Sep 10 14:38:20 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/psdrv/driver.c, graphics/win16drv/init.c, graphics/win16drv/prtdrv.c, if1632/thunk.c, include/callback.h, include/gdi.h, include/psdrv.h, include/win16drv.h, graphics/driver.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Winspool DocumentProperties and DeviceCapabilities should now work on
+       native 16 bit drivers.
+
+       * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixes DeviceCapabilities for DC_PAPERSIZE.
+       Various fixes for OpenPrinter and EnumPrinters.
+       Separation of GetPrinter in preparation for unification with EnumPrinters.
+
+       * graphics/psdrv/ppd.c, include/wingdi.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Add support for a large number of different paper sizes to PostScript
+       driver.
+
+       * include/d3d.h: Lionel Ulmer <lionel.ulmer@free.fr>
+       Added definitions of COM objects for D3D 6.x support.
+
+       * graphics/psdrv/font.c: Nick Holloway <alfie@alfie.demon.co.uk>
+       If there is not an exact match found for the requested font name,
+       instead of using the first font defined for the printer, map some
+       common font families (e.g. Arial -> Helvetica), and search again.
+
+       * if1632/kernel.spec, if1632/thunk.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed bug in CBClient routines by storing the SEGPTR in the global
+       table and translating it on every use.
+
+       * include/bitmaps/oic_sample: Abey George <abey@macadamian.com>
+       Changed the pixmap to look like the windows default application icon.
+
+       * files/drive.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       Stop crash in GetDiskFreeSpaceEx.
+
+       * windows/nonclient.c: Francis Beaudet <francis@macadamian.com>
+       Made sure that the windows with the WS_EX_TOOLWINDOW style didn't get
+       handled by the window manager.
+
+       * controls/edit.c: Pascal Lessard <pascal@macadamian.com>
+       Implemented the behavior around the ES_WANTRETURN style in the edit
+       control.
+
+       * windows/x11drv/keyboard.c: Stephane Lussier <stephane@macadamian.com>
+       Pressing the delete key using an extended keyboard with numlock on is
+       not generating anymore a WM_CHAR message.
+
+       * dlls/shell32/shellpath.c: Niclas Karlsson <nkarlsso@ra.abo.fi>
+       Fixed pattern matching in PathMatchSpecA/W
+
+       * dlls/shell32/shlview.c: Francois Boisvert <francois@macadamian.com>
+       Tabbing in the listview of the shellview.
+
+       * dlls/comctl32/listview.c: Luc Tourangeau <luc@macadamian.com>
+       Fixed LISTVIEW_GetItemRect: the calculations were off for LVIR_BOUNDS,
+       LVIR_SELCTBOUNDS, LVIR_LABEL when the item width is greater than the
+       column width.
+       Fixed WM_GETDLGCODE by removing the DLGC_WANTRTAB and adding DLGC_WANTCHARS.
+
+       * dlls/shell32/shell32_main.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed crash in detach sequence.
+
+       * dlls/shell32/shlfolder.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed wrong return value.
+
+       * dlls/crtdll/crtdll_main.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Prevent endless loop in except2.
+
+       * tools/bug_report.pl: Adam Sacarny <magicbox@bestweb.net>
+       Now works around wine never exiting the debugger.
+       Should put bug reports in the right place now.
+
+       * ole/oleaut32.c, ole/Makefile.in, relay32/oleaut32.spec:
+       Marcus Meissner <Marcus.Meissner@caldera.de>
+       Added stub for RegisterActiveObject().
+
+       * dlls/win32s/w32sys.c, dlls/win32s/w32sys.spec:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added stub for WIN32S16.EXP1 (most likely LoadPeResource16).
+
+Sun Sep  5 16:48:17 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * loader/main.c, loader/module.c, miscemu/main.c, include/windef.h:
+       Removed __winelib flag.
+
+       * windows/driver.c, multimedia/audio.c, multimedia/dsound.c, multimedia/mci.c, multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcicda.c, multimedia/midi.c, multimedia/mixer.c, multimedia/mmaux.c, multimedia/mmsystem.c, multimedia/time.c, multimedia/winmm.rc:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated to new MM header organization.
+
+       * include/multimedia.h, include/mmddk.h, include/mmsystem.h, multimedia/oss.h, multimedia/winemm.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Moved DDK level material to new include/mmddk.h file.
+       Copied some SDK level material from include/multimedia.h file.
+
+       * multimedia/mciwave.c, multimedia/mcimidi.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated to new MM header organization.
+       Cleaned-up internal structures (now 32 bit only).
+       Now using the MMSYSTEM entry points rather than the low level driver
+       ones directly.
+
+       * include/sig_context.h: Juergen Lock <nox@jelal.kn-bremen.de>
+       Fix %fs for signal handlers in the FS_sig undefined case (this patch
+       actually from Ulrich Weigand, I only tested it).
+
+       * scheduler/sysdeps.c, configure, configure.in, include/acconfig.h, include/config.h.in:
+       Ron Record <rr@sco.com>
+       Added support of __thr_errno for reentrance on UnixWare.
+
+       * windows/dialog.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       No longer needs to calculate its own character size.
+
+       * misc/main.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       Consequential changes to default system font sizes
+
+       * graphics/x11drv/xfont.c, include/x11font.h:
+       Richard Cohen <richard@jubjub.demon.co.uk>
+       Various fixes for the X11 font mapper, particularly:
+       - size fonts with negative heights correctly
+       - calculate average width correctly.
+
+       * objects/cursoricon.c: Francis Beaudet <francis@macadamian.com>
+       Use a special value in the hotspot coordinate to identify which HICON
+       are cursors and which are icons.
+
+       * controls/combo.c: Pierre Mageau <pierre@macadamian.com>
+       Modified CBDropDown to find the best height of the listbox.
+
+Sat Sep  4 14:36:03 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure.in, include/config.h.in, include/wine/winestring.h, memory/string.c, misc/port.c, configure:
+       Added configure check for str[n]casecmp.
+
+       * windows/timer.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Allow timeout of 0. Cap timer rate to SYS_TIMER_RATE.
+
+       * include/windef.h: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Added type PWORD.
+
+       * dlls/winspool/info.c, include/winspool.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Added loads of types, defines and declarations to winspool.h.
+
+       * dlls/commdlg/cdlg_En.rc, dlls/commdlg/filedlg95.c:
+       Francois Boisvert<francois@macadamian.com>
+       Fixed the height of items in the lookin combobox of the filedlg95.
+
+       * controls/edit.c: Stephane Lussier <stephane@macadamian.com>
+       Initialize the enabling state variable in the edit.
+
+       * graphics/bitblt.c: Noomen Hamza <noomen@macadamian.com>
+       The fast window frame size should be the same as the frame size used
+       by NC_DrawFrame function.
+
+       * objects/region.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixed compiler warnings.
+
+       * programs/regapi/regapi.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       lstrncmpi isn't a windows API, use strncasecmp instead.
+
+       * memory/global.c:
+       Fixed GMEM_ZEROINIT in GlobalRealloc (thanks to Gerard Patel).
+
+       * windows/msgbox.c: Added missing HFONT type.
+
+       * dlls/comctl32/imagelist.c, include/cursoricon.h, loader/main.c, objects/bitmap.c, objects/cursoricon.c, windows/class.c:
+       Pierre Mageau <pierre@macadamian.com>
+       Changed CopyImage to accept desiredX, desiredY and LR_COPYFROMRESOURCE.
+       CURSORICON_FindBestIcon changed to find the correct icon.
+       ImageList_ReplaceIcon now calls CopyImage internally.
+       Assign a value for the hIconSm CLASS member (using CopyImage).
+
+       * win32/console.c: Guy Albertelli <galberte@neo.lrun.com>
+       Fixed WriteConsoleOutput and GetNumberOfConsoleInputEvents.
+
+       * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
+       Give applications a copy of the property sheet dialog template as they
+       might modify it.
+
+       * relay32/relay386.c: Marcus Meissner <marcus@jet.franken.de>
+       Relay exclude lists were not working due to some CharUpperA()
+       somewhere else.
+
+       * loader/loadorder.c, wine.ini:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       winspool -> winspool.drv
+
+       * dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Implemented StrCmpNIA like the other StrCmpXX functions.
+
+       * files/profile.c: Thuy Nguyen <thuy@macadamian.com>
+       Resolve environment variable when enumerating values.
+
+       * controls/edit.c: Pascal Lessard <pascal@macadamian.com>
+       The format rect is recalculated for each font change. MoveEnd &
+       MoveHome improved.
+
+Fri Sep  3 16:49:17 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/x11drv/dib.c, include/x11drv.h, objects/dib.c:
+       Karl Lessard <karll@corel.com>
+       Ian Ward
+       Dan Langlois
+       Speed up conversion between XImages and DIBSections.
+
+       * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/filedlgbrowser.h, dlls/shell32/shlview.c:
+       Francois Boisvert <francois@macadamian.com>
+       Some <open> features in the file dialog 95.
+
+       * include/winnt.h, scheduler/sysdeps.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed global variable pCurrentTeb.
+
+       * memory/heap.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       HEAP_Commit/Decommit were assuming a page size of 4KB
+       unconditionally.
+
+       * include/wingdi.h: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       A few more DC_ defines from Win2000.
+
+       * dlls/comctl32/status.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Check that lpCreate->lpszName is non-NULL.
+
+       * windows/dialog.c: Marcus Meissner <Marcus.Meissner@caldera.de>
+       More restrictive checks, so DIALOG_IsAccelerator don't loop
+       endlessly.
+
+       * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
+       Menu hides when clicked for a second time.
+
+       * windows/msgbox.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       - select the font into the dc before calculating the extent
+       - make buttonheight correspond to text height + width to caption
+       - button was "flashing" on EndDialog (must delete font AFTER EndDialog)
+       - #defines for DlgItemIds
+       - implement MB_RETRYCANCEL
+
+       * controls/edit.c: Stephane Lussier <stephane@macadamian.com>
+       Keep the enable state in the edit structure instead of calling
+       IsWindowEnabled().
+
+       * include/clipboard.h, include/ttydrv.h, include/x11drv.h, ole/clipboard.c, windows/clipboard.c, windows/ttydrv/clipboard.c, windows/ttydrv/init.c, windows/user.c, windows/x11drv/clipboard.c, windows/x11drv/event.c, windows/x11drv/init.c:
+       Noel Borthwick <noel@macadamian.com>
+       - Implement interprocess clipboard communication.
+       - Support for the PRIMARY and CLIPBOARD selection atoms.
+       - Support for the TARGETS selection format.
+       - Expose native Windows clipboard formats through X selection targets.
+
+       * objects/gdiobj.c: Richard Cohen <richard@jubjub.demon.co.uk>
+       Make stock fonts independent of mapping mode.
+       System font should only be bold for Win31.
+
+       * windows/dialog.c: Francis Beaudet <francis@macadamian.com>
+       Removed truncating errors that happen when converting fom dialog units
+       to pixels.
+
+       * windows/winpos.c: Abey George<abey@macadamian.com>
+       Check new coordinates received in WM_NCCALCSIZE message.
+
+       * controls/button.c: Francis Beaudet <francis@macadamian.com>
+       Slight 1 pixel adjustment on the position of the radio button bitmap.
+
+       * dlls/commdlg/filedlg95.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed off by one allocation errors.
+
+       * controls/edit.c: Pascal Lessard <pascal@macadamian.com>
+       The backspace is now handled in the WM_CHAR message.
+
+       * windows/mdi.c, windows/nonclient.c:
+       Francis Beaudet <francis@macadamian.com>
+       Make sure that all MDI children have the WS_EX_MDICHILD style set.
+
+       * memory/string.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed prototype order.
+
+       * dlls/ntdll/exception.c: Juergen Lock <nox@jelal.kn-bremen.de>
+       Fix EXC_segv for the TRAP_sig undefined case (eg FreeBSD).
+
+       * debugger/stabs.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed crash.
+
+       * dlls/shell32/shell32_main.c: Francis Beaudet <francis@macadamian.com>
+       Fixed the support for the close button in the ShellAbout dialogs.
+
+       * dlls/commdlg/cdlg_Nl.rc: Klaas van Gend <klaas@vangend.demon.nl>
+       Added Dutch resources for PrintDlg32.
+
+       * dlls/commdlg/cdlg.h, dlls/commdlg/cdlg_En.rc, dlls/commdlg/printdlg.c:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Completed PrintDlg32 resource stringtable.
+
+       * dlls/comctl32/tooltips.c: Francis Beaudet <francis@macadamian.com>
+       Added sanity checks in the cleanup code.
+
+       * windows/x11drv/keyboard.c: Guy Albertelli <galberte@neo.lrun.com>
+       Completed GetKeyNameText for non-character keys.
+
+       * dlls/shell32/brsfolder.c: Francois Boisvert <francois@macadamian.com>
+       Make directories name appear in the BrowseForFolder dialog.
+
+       * loader/loadorder.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Do not remove .drv from filenames.
+
+       * controls/button.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a little positioning bug with the checkbox.
+
+       * windows/nonclient.c, windows/win.c, windows/x11drv/wnd.c:
+       Abey George <abey@macadamian.com>
+       Fixed resizing bugs for windows with WS_THICKFRAME and WS_DLGFRAME
+       styles.
+
+       * multimedia/mci.c: Michael McCormack <mccormac@aals27.alcatel.com.au>
+       Changed snprintf to wsnprintfA to remove unresolved external when
+       compiling on Solaris/Sun.
+
+       * dlls/comctl32/listview.c: Marcus Meissner <marcus@jet.franken.de>
+       Implemented LVM_INSERTCOLUMNW and LVM_INSERTITEMW by using the ascii
+       equivalents. (WinWord 97, File Open dialog)
+
+       * windows/class.c: Marcus Meissner <marcus@jet.franken.de>
+       Use in GetClassInfoW the same hack for systemclasses as in
+       GetClassInfoA (winword 97 with native comctl32).
+
+       * dlls/shell32/pidl.c: Marcus Meissner <marcus@jet.franken.de>
+       Handle SHGDFIL_FINDDATA correctly in SHGetDataFromIDListW.
+
+       * controls/edit.c: Gerard Patel <g.patel@wanadoo.fr>
+       Implemented wParam of WM_PAINT msg for edit control.
+
+       * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fix off by one error in WINSPOOL_GetOpenedPrinterA.
+
+       * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
+       subkey_found did not search for _all_ sub keys.
+
+Sat Aug 21 14:47:29 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/cdlg.h, dlls/commdlg/cdlg32.c:
+       Francois Boisvert <francois@macadamian.com>
+       Implemented basic browsing in the file name edit of the filedlg 95.
+
+       * controls/menu.c: Stephane Lussier <stephane@macadamian.com>
+       Avoid changing the activation state in EnableMenuItem.
+
+       * include/winnt.h: Fixed #ifdef symbol for PowerPC.
+
+       * ole/parsedt.c, ole/parsedt.h:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Only declare DateStyle in a single compilation unit.
+
+       * windows/nonclient.c: Pascal Lessard <pascal@macadamian.com>
+       Added the case of a user defined icon for the sysbutton hittest.
+
+       * ole/typelib.c: Rein Klazes <rklazes@casema.net>
+       Fixed typelib reading to correctly use the offset of the typelib that
+       is embedded in for example a dll file.
+
+       * graphics/x11drv/dib.c: Kristian Nielsen <kristian.nielsen@risoe.dk>
+       Fixed CreateDIBSection() called with negative height to set the height
+       positive in the created DIBSECTION, as per MS knowledgebase Q186586.
+
+       * windows/painting.c: Stephane Lussier <stephane@macadamian.com>
+       The paint rectangle return in the PAINTSTRUCT in BeginPaint should
+       never be bigger than the client area of the window.
+
+       * controls/listbox.c: Rein Klazes <rklazes@casema.net>
+       Make sure that an empty string never matches a listbox entry in
+       LISTBOX_FindString().
+
+       * dlls/version/info.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Alignment fix.
+
+       * controls/menu.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed crash when accessing sysmenu.
+
+       * debugger/stack.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Really do a silent backtrace when requested.
+
+       * debugger/hash.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Do not set the address if the symbol is still tagged INVALID.
+
+       * debugger/stabs.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added support for N_BINCL and N_EINCL instructions.
+       Fixed type parsing (as generated by egcs).
+
+Wed Aug 18 18:40:52 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Use typedef to work around egcs problem.
+
+       * ole/*.c: Michael Veksler <mveksler@techunix.technion.ac.il>
+       Removed unnecessary includes from ole related files.
+
+       * ole/compobj.c, multimedia/mmsystem.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Adapted to WOW changes.
+
+       * include/callback.h, include/winbase.h, include/wine/winbase16.h, include/wownt32.h, loader/module.c, memory/global.c, memory/selector.c, relay32/Makefile.in, relay32/kernel32.spec, relay32/wow32.spec, relay32/wowthunk.c, win32/kernel32.c, win32/ordinals.c, if1632/kernel.spec, if1632/relay.c, if1632/thunk.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved implementation of WOW routines to single file.
+       Added all missing WOW routines, fixed WOWCallback16Ex.
+
+       * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed internal buffer for 16 bit mmio MEM files.
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       - some errors in cleaning up values returned by MCI drivers: this
+         should solve the issues reported with the CD player/writer
+       - crash when command was requested with automatic open (note, this
+         will now gracefully report an error, not do the correct thing).
+
+       * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
+       Implemented the PSH_USEICONID/PSH_USEHICON and the PSP_USETITLE
+       flags.
+
+       * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: EFlags were passed incorrectly by CallFrom16Register.
+
+       * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: restore STACK16FRAME fields in SwitchStackBack16.
+
+       * tools/wrc/wrc.h, dlls/commdlg/cdlg_En.rc, tools/wrc/CHANGES, tools/wrc/parser.y:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Wrc did not check any IDs which are only 16 bit. Common dialogs had some
+       IDs larger and that caused problems. This is now solved (I hope).
+
+----------------------------------------------------------------
+Sun Aug 15 18:52:32 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * objects/cursoricon.c: Steve Tibbett <stevet@corel.com>
+       Fixed cursor stretch code.
+
+       * memory/selector.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Inhibit wraparound in comparison.
+
+       * dlls/shell32/.cvsignore, dlls/shell32/Makefile.in, dlls/shell32/shellord.c, dlls/shell32/shlwapi.spec, loader/loadorder.c, relay32/builtin32.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       New internal dll, exporting already existing path functions.
+
+       * include/message.h, windows/dialog.c, windows/message.c, windows/nonclient.c, controls/menu.c:
+       Francis Beaudet <francis@macadamian.com>
+       Ensure that the WM_ENTERIDLE message is not sent if the wake-up event
+       for the MSG_InternalGetMessage() call is a WM_TIMER.
+
+       * rc/winerc.c, include/resource.h, include/windef.h:
+       Patrik Stridvall <ps@leissner.se>
+       GCC 3.0 has not been released yet, but it is good to be prepared.
+
+       * misc/spy.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Added resolution of LVM messages.
+
+       * objects/dib.c: Gerard Patel <g.patel@wanadoo.fr>
+       Added protection against possible memory corruption.
+
+       * objects/cursoricon.c: Steve Tibbett <stevet@corel.com>
+       Fixed cursor selection to find the correct cursor when more than one
+       available.
+
+       * dlls/winspool/Makefile.in, dlls/winspool/info.c, dlls/winspool/winspool.spec, dlls/winspool/wspool.c:
+       Thuy Nguyen <thuy@macadamian.com>
+       Replaced a static ten element array with a dynamic pointer array.
+
+       * dlls/commdlg/printdlg.c: Gerard Patel <g.patel@wanadoo.fr>
+       Fix special case when no printer installed.
+
+       * dlls/shell32/shell.c, dlls/shell32/shell.spec:
+       James Juran <jrj120@psu.edu>
+       New routine DllEntryPoint for shell.dll.  Loads shell32.dll,
+       since most shell.dll functions call their 32-bit counterparts.
+
+       * dlls/version/info.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Fixed alignment.
+
+       * controls/edit.c: Pascal Lessard <pascal@macadamian.com>
+       EM_SETSEL scrolls if outside of the visible range.
+       "shift+home" selection improved in the edit control.
+
+       * ole/parsedt.c: Removed RCS keyword.
+
+       * dlls/shell32/folders.c, dlls/shell32/pidl.c, dlls/shell32/shell32.spec, dlls/shell32/shell32_main.h, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shres.rc, dlls/shell32/shresdef.h, dlls/shell32/shv_bg_cmenu.c, include/shell.h, include/wine/undocshell.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       More use of rc files for strings and menus, fixes. First internal
+       icons.
+
+       * dlls/shell32/shlview.c: Juergen Schmied <juergen.schmied@metronet.de>
+       New interface: DropSource.
+
+       * dlls/shell32/shlfolder.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Better DropTarget.
+
+       * dlls/shell32/shell32_main.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Implemented SHGetFileInfo better.
+
+       * dlls/shell32/iconcache.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Protect cache with critical section.
+       Removed hack to load icons from external shell32.dll.
+
+       * dlls/shell32/dataobject.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       QueryGetData, EnumFormatEtc implemented.
+
+       * dlls/shell32/classes.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed mapping of file extensions to text.
+
+       * misc/ddeml.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed ascii/unicode issue for naming of the mutexes.
+       Made mutex handles global.
+       Fixed incorrect interpretation of return values of WaitForSingleObject.
+
+       * objects/font.c: Juergen Schmied <juergen.schmied@metronet.de>
+       First implementation of GetCharacterPlacementA.
+
+       * windows/defwnd.c, include/winuser.h:
+       Thuy Nguyen <thuy@macadamian.com>
+       Implemented the WM_SETICON and WM_GETICON messages.
+
+       * files/drive.c: Morten Eriksen <mortene@sim.no>
+       FIXME on unimplemented feature made less obtrusive.
+
+       * graphics/x11drv/bitblt.c: Pascal Lessard <pascal@macadamian.com>
+       Now the conversion in the blt functions round up the result.
+
+       * tools/build-spec.txt, tools/build.c: James Juran <jrj120@psu.edu>
+       Document use of "init" in build-spec.txt, and make build.c print a
+       warning if someone tries to use "init" in a Win16 spec file.
+
+       * loader/ne/segment.c: Michael Karcher <karcher@dpk.berlin.fido.de>
+       Make sure we have a dgroup before patching prologs.
+
+       * */Makefile.in, */.cvsignore:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Adapted to glue code generation changes.
+
+       * loader/ne/module.c, loader/ne/segment.c, windows/winproc.c, if1632/builtin.c, if1632/relay.c, if1632/snoop.c, if1632/thunk.c, include/callback.h, include/module.h, include/snoop.h, loader/module.c, loader/task.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Adapted to new-style Wine thunks.
+       Removed some now unnecessary function pointers.
+
+       * include/builtin16.h, include/stackframe.h, tools/build.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       CallTo16... / CallFrom16... Wine thunks reorganized:
+       - Cleaner separation between core and glue code.
+       - Argument conversion glue code now in C.
+       - Glue code needed for 16-bit .spec files inlined.
+
+Sat Aug 14 15:53:50 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * misc/comm.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       - implemented GetCommModemStatus
+       - fixed the DTR, CTS and COMMBREAK related subfunctions of EscapeCommFunction
+       - added more verbose TRACEing
+
+       * misc/version.c: Morten Eriksen <mortene@sim.no>
+       Made GetVersionEx() behave in accordance with the specification with
+       regard to error handling.
+
+       * dlls/msvideo/msvfw32.spec, dlls/msvideo/msvideo_main.c:
+       Mark G. Adams <madams@livepage.com>
+       Added stub for DrawDibClose.
+
+       * controls/combo.c: Francis Beaudet <francis@macadamian.com>
+       Fixed the look of the combobox's drop down button when in Win95 look.
+
+       * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
+       Added support for icons in property sheet tabs.
+
+       * include/commctrl.h, tools/wrc/CHANGES, tools/wrc/genres.c, tools/wrc/parser.l, tools/wrc/wrc.h:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Version 1.0.14 of wrc.
+
+Sun Aug  8 18:56:04 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/winbase.h, win32/time.c: Fixed SetLocalTime prototype.
+
+       * ole/ole2nls.c, win32/kernel32.c, dlls/commdlg/printdlg.c, dlls/ntdll/rtlstr.c, dlls/shell32/shell32_main.c, dlls/shell32/shellpath.c, dlls/version/info.c, files/dos_fs.c, if1632/thunk.c, include/wine/winestring.h, loader/libres.c, loader/pe_resource.c, dlls/comctl32/comctl32undoc.c:
+       Replaced a few calls to lstr* functions by their CRTDLL or libc
+       equivalent.
+
+       * memory/string.c:
+       Added an exception handler around a few lstr* functions.
+
+       * dlls/crtdll/Makefile.in, dlls/crtdll/crtdll.spec, dlls/crtdll/crtdll_main.c, dlls/crtdll/mbstring.c, dlls/crtdll/wcstring.c, dlls/ntdll/ntdll.spec, include/crtdll.h:
+       Reimplemented multi-byte and wide-chars functions to not depend on
+       lstr* functions; added a few missing ones; fixed a couple of bugs.
+
+Sat Aug  7 14:32:34 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/Attic/wnet.h, include/wine/winnet16.h, include/winerror.h, include/winnetwk.h, include/winuser.h, misc/network.c, relay32/.cvsignore, relay32/Attic/mpr.spec, relay32/Makefile.in, Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/mpr/.cvsignore, dlls/mpr/Makefile.in, dlls/mpr/auth.c, dlls/mpr/mpr.spec, dlls/mpr/mpr_main.c, dlls/mpr/multinet.c, dlls/mpr/nps.c, dlls/mpr/pwcache.c, dlls/mpr/wnet.c, include/netspi.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Separated Win16 (USER) and Win32 (MPR) network routines.
+       Moved implementation of MPR to dlls/mpr/.
+       Added proper headers and stubs for missing MPR routines.
+
+       * misc/registry.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Improved (sort of) RegFlushKey.
+
+       * windows/winpos.c: Francis Beaudet <francis@macadamian.com>
+       If the window is already the topmost window in ShowWindow(SW_SHOW), it
+       must not be activated.
+
+       * windows/x11drv/event.c: Stephane Lussier <stephane@macadamian.com>
+       WM_SYSCOMMAND message (for SC_CLOSE) should be posted not sent.
+
+       * windows/dce.c, windows/x11drv/wnd.c:
+       Stephane Lussier <stephane@macadamian.com>
+       X11drv SetDrawable function modifies the DC origin, this translation
+       should be reflected for the dc clipping region for CS_OWNDC and CS_CLASSDC.
+
+       * windows/defdlg.c, windows/dialog.c: Abey George <abey@macadamian.com>
+       Set focus to the dialog in EndDialog.
+
+       * libtest/Makefile.in: James Juran <jrj120@psu.edu>
+       Make sure we compile winestub.o before trying to build a Winelib test
+       program.
+
+       * files/directory.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Fixed case sensitivity flag.
+
+       * include/commdlg.h, dlls/commdlg/printdlg.c:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Implemented the return of hDevModes and hDevNames in the PRINTDLG
+       structure of PrintDlgA().
+
+       * windows/queue.c, include/queue.h: Ove Kaaven <ovek@arcticnet.no>
+       Made hardware_event use win32-conformant parameters.
+
+       * dlls/commdlg/cdlg32.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Explicitly load shell32.dll.
+
+       * dlls/comctl32/tab.c: Thuy Nguyen <thuy@macadamian.com>
+       Take into account icons when determining tab size.
+
+       * files/drive.c: Morten Eriksen <mortene@sim.no>
+       Improved GetDiskFreeSpaceEx() implementation a little bit.
+
+       * misc/comm.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       - added some more Baudrates
+       - fixed a hang in tcsetattr when the input buffer isn't empty
+       - added more verbosity for debugging
+
+       * controls/uitools.c: Francis Beaudet <francis@macadamian.com>
+       Handle the case when the button is really small.
+
+       * windows/nonclient.c: Thuy Nguyen <thuy@macadamian.com>
+       WS_EX_DLGMODALFRAME alone does not mean title bar, you still have to
+       specify WS_CAPTION.
+
+Wed Aug  4 15:07:57 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure.in, include/acconfig.h, include/config.h.in, include/dinput.h, windows/dinput.c, configure:
+       Marcus Meissner <marcus@jet.franken.de>
+       Implemented DirectInput Joystick support (tested with WC:Prophecy).
+
+       * relay32/kernel32.spec, win32/time.c:
+       Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
+       Implemented SetLocalTime.
+
+       * windows/x11drv/keyboard.c: Ivan De Saedeleer <Ivands@sympatico.ca>
+       Minor fix to the French Canadian keyboard.
+
+       * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
+       When flipping backbuffer -> frontbuffer, first exchange surfaces, then
+       copy XImage, since the palette might only be defined in the frontbuffer.
+
+       * tools/wineinstall: Joerg Mayer <jmayer@telesun2.telemation.de>
+       Create sysconfdir on install.
+
+       * dlls/stress/.cvsignore: Fixed typo.
+
+       * dlls/wnaspi32/winaspi32.c, if1632/relay.c, include/debugtools.h, loader/pe_image.c, win32/kernel32.c, windows/x11drv/keyboard.c, controls/listbox.c, controls/menu.c, controls/scroll.c, dlls/version/info.c, dlls/winaspi/winaspi16.c:
+       Got rid of dsprintf and related macros.
+
+       * server/mutex.c:
+       Remove the mutex from the thread list when destroying it.
+
+       * */*:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved various DLLs to dlls/
+
+Sun Aug  1 14:58:02 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/winaspi/winaspi16.c, if1632/snoop.c, include/winnt.h, loader/ne/segment.c, misc/error.c, msdos/devices.c, msdos/dpmi.c, msdos/int21.c, msdos/int33.c, debugger/registers.c, debugger/stack.c:
+       Removed IP_reg, SP_reg and FL_reg definitions to avoid potential
+       aliasing optimization problems.
+
+       * dlls/ntdll/exception.c, include/miscemu.h, loader/dos/module.c, loader/signal.c:
+       Removed SIGNAL_MaskAsyncEvents and cleaned up signal handling.
+
+       * include/Attic/async.h, win32/console.c, files/Attic/async.c, files/Makefile.in, files/file.c:
+       Removed async I/O support.
+
+       * include/comm.h, misc/comm.c:
+       Use the service thread for comm notifications.
+
+       * include/sig_context.h, include/stackframe.h, loader/task.c, msdos/dpmi.c, relay32/relay386.c, win32/kernel32.c, if1632/relay.c, if1632/thunk.c:
+       Made stack manipulation macros into inline functions.
+       Changed a few accesses to context registers to avoid potential
+       aliasing optimization problems.
+
+       * include/miscemu.h, include/sig_context.h, include/windef.h, loader/dos/dosvm.c, memory/instr.c, dlls/ntdll/exception.c:
+       Changed INSTR_EmulateInstruction to use a CONTEXT86 instead of a
+       SIGCONTEXT.
+
+       * Makefile.in: Remove wine.conf.man on distclean
+
+----------------------------------------------------------------
+Sat Jul 31 19:35:58 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/nonclient.c: Noomen Hamza <noomen@macadamian.com>
+       Close the right window when clicking on a non active window close
+       button.
+
+       * Makefile.in: Pavel Roskin <pavel_roskin@geocities.com>
+       Removed the dependency on "dummy" for wine and wine.sym.
+
+       * files/profile.c:
+       Remove file from cache when flushing it (based on a patch by Ian
+       Schmidt).
+
+       * include/winnt.h: Marcus Meissner <marcus@jet.franken.de>
+       Added CONTEXT for ALPHA and MIPS.
+
+       * configure.in, Make.rules.in, Makefile.in, configure:
+       Patrik Stridvall <ps@leissner.se>
+       Added support for Solaris Lint.
+
+       * scheduler/debugger.c, server/debugger.c, tools/make_debug, win32/console.c, console/generic.c, console/xterm.c, graphics/enhmetafiledrv/graphics.c, graphics/enhmetafiledrv/objects.c, graphics/metafiledrv/bitblt.c, graphics/metafiledrv/graphics.c, graphics/metafiledrv/objects.c, graphics/metafiledrv/text.c, include/debugdefs.h, include/xmalloc.h, misc/xmalloc.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some of the issues reported by Solaris Lint.
+
+       * include/pshpack4.h: Patrik Stridvall <ps@leissner.se>
+       Solaris C/C++ compile fix.
+
+       * msdos/dosmem.c, ole/storage32.c, windows/painting.c, controls/button.c, dlls/comctl32/monthcal.c, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, graphics/ddraw.c, include/wine/obj_base.h:
+       Patrik Stridvall <ps@leissner.se>
+       Various ANSI C compability fixes.
+
+       * relay32/winmm.spec, if1632/builtin.c, if1632/gdi.spec, if1632/mmsystem.spec, if1632/user.spec, include/multimedia.h, include/ntddk.h, include/olectl.h, include/winsock.h, misc/network.c, misc/system.c, misc/winsock.c, multimedia/mmsystem.c, ole/olefont.c, relay32/kernel32.spec, relay32/oleaut32.spec, relay32/user32.spec, dlls/comctl32/comctl32.spec, dlls/ntdll/exception.c, dlls/ntdll/file.c, dlls/ntdll/ntdll.spec, dlls/ntdll/rtl.c, dlls/tapi32/tapi32.spec:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed some of the issues reported by winapi-check.
+
+       * documentation/Makefile.in: Marcus Meissner <marcus@jet.franken.de>
+       Actually create the man/ subdirectories before installing.
+
+       * if1632/kernel.spec, include/wine/winbase16.h, loader/task.c, windows/queue.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Implemented KERNEL.447 (WIN32_OldYield16).
+
+       * windows/event.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Suspend WND lock before EVENT_Synchronize.
+
+       * win32/device.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Create VxD handle only for known VxDs.
+
+       * Make.rules.in, relay32/Makefile.in: Patrik Stridvall <ps@leissner.se>
+       Made compilation of *.spec.c files use -fno-builtin regardless of
+       where they are.
+
+       * include/tapi.h, include/winbase.h, scheduler/thread.c, dlls/comctl32/datetime.c, dlls/comctl32/flatsb.c, dlls/comctl32/header.c, dlls/comctl32/hotkey.c, dlls/comctl32/ipaddress.c, dlls/comctl32/listview.c, dlls/comctl32/monthcal.c, dlls/comctl32/nativefont.c, dlls/comctl32/pager.c, dlls/comctl32/progress.c, dlls/comctl32/rebar.c, dlls/comctl32/status.c, dlls/comctl32/tab.c, dlls/comctl32/toolbar.c, dlls/comctl32/tooltips.c, dlls/comctl32/trackbar.c, dlls/comctl32/treeview.c, dlls/comctl32/updown.c, dlls/shell32/brsfolder.c, dlls/shell32/contmenu.c, dlls/shell32/memorystream.c, graphics/ddraw.c, dlls/avifil32/avifile.c, dlls/comctl32/animate.c, dlls/comctl32/comboex.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed/added missing/wrong function prototypes and made internal
+       functions static.
+
+       * tsx11/ts_xshm.c, tsx11/ts_xutil.c, tools/make_X11wrappers, tsx11/ts_xf86dga.c, tsx11/ts_xf86vmode.c, tsx11/ts_xlib.c, tsx11/ts_xpm.c, tsx11/ts_xresource.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed missing prototypes and made it work with Solaris X11.
+
+       * debugger/external.c, include/wine/undocshell.h, multimedia/mcimidi.c, ole/antimoniker.c, ole/compositemoniker.c, ole/datacache.c, ole/filemoniker.c, ole/itemmoniker.c, ole/olefont.c, scheduler/thread.c, dlls/shell32/contmenu.c, dlls/shell32/folders.c, dlls/shell32/shelllink.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c:
+       Patrik Stridvall <ps@leissner.se>
+       Eliminated warnings.
+
+       * loader/ne/segment.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Fixed the DSEG value in the SEGTABLEENTRY struct.
+
+       * dlls/comctl32/comctl32.h, dlls/comctl32/flatsb.c, dlls/comctl32/pager.c, dlls/comctl32/rsrc.rc, dlls/comctl32/toolbar.c, documentation/common_controls:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Added builtin toolbar bitmaps.
+
+       * dlls/comctl32/listview.c, dlls/comctl32/treeview.c, include/listview.h, include/treeview.h:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Some more messages.
+
+       * dlls/advapi32/advapi32.spec, dlls/advapi32/crypt.c:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Added stub for CryptSetKeyParams().
+
+       * dlls/shell32/shell32.spec, dlls/shell32/shellord.c:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Added stubs for DAD_SetDragImage() and PathCleanupSpec().
+
+       * misc/crtdll.c, relay32/crtdll.spec:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Added stub for _except_handler2().
+
+       * objects/region.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Improved GetRandomRegion().
+
+       * controls/menu.c, windows/nonclient.c:
+       Pascal Lessard <pascal@macadamian.com>
+       Implemented the system button behavior and associated it to the system
+       menu in win95. Also permit the SC_CLOSE item to be disabled.
+
+       * misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
+       Bugfixes and a fake GETBASEIRQ.
+
+       * files/async.c: Ove Kaaven <ovek@arcticnet.no>
+       Made async fds nonblocking.
+
+       * windows/mdi.c: Dan Langlois <daniell@corel.com>
+       Removed an inappropriate if statement from MDI_ChildActivate that
+       prevented the activation code from executing.
+
+       * dlls/comctl32/monthcal.c, include/monthcal.h:
+       Alex Priem <alexp@sci.kun.nl>
+       Bugfixes & further updates for the month calendar common control.
+
+       * dlls/comctl32/datetime.c, include/commctrl.h, include/datetime.h:
+       Alex Priem <alexp@sci.kun.nl>
+       Started implementing date/time common control.
+
+       * graphics/psdrv/graphics.c, graphics/psdrv/ps.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       PSDRV_WriteArc shouldn't write a newpath.
+
+       * controls/button.c: Rein Klazes <rklazes@casema.net>
+       Fix handling of WM_LBUTTONDCLICK message for buttons with certain
+       styles.
+
+       * windows/dce.c: Abey George <abey@macadamian.com>
+       Bug fix for updating the clipping region in nested GetDCEx calls.
+
+       * windows/winpos.c: Yuxi Zhang <yuxiz@corel.ca>
+       Tried to fix the code for SetWindowPos to erase the background
+       properly.
+
+Fri Jul 30 18:10:21 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/commdlg/cdlg_En.rc, dlls/commdlg/cdlg_xx.rc, dlls/commdlg/printdlg.c, dlls/commdlg/rsrc.rc, include/winspool.h:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       - added Collate/NoCollate Icons to Print32 dialog (unfortunately they
+         don't display yet).
+       - added status strings.
+       - added string table for internationalisation of several internal
+         message boxes.
+
+       * include/commctrl.h, include/winuser.h: Yuxi Zhang <yuxiz@corel.ca>
+       Removed duplicated defines in winuser.h and commctrl.h. Also corrected
+       a typo for SW_MAX value.
+
+       * dlls/commdlg/cdlg.h, dlls/commdlg/cdlg32.c, dlls/commdlg/filedlg95.c:
+       Francis Beaudet <francis@macadamian.com>
+       Fixed a memory leak in the file dialog.
+
+       * loader/loadorder.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Strip .drv extensions to MODULE_GetLoadOrder.
+
+       * dlls/comctl32/tab.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a memory leak.
+
+       * scheduler/process.c, loader/task.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Install task-entry breakpoint *after* EXE module is initialized.
+
+       * graphics/psdrv/ps.c, include/psdrv.h:
+       Luc Tourangeau <luc@macadamian.com>
+       Added a call to the newpath operator immediately before the arc
+       operator.
+
+       * controls/button.c: Pierre Mageau <pierre@macadamian.com>
+       Fixed a problem when the style is BS_BITMAP or BS_ICON: the bitmap or
+       icon needed to be centered when the button is smaller than the bitmap.
+
+       * windows/mdi.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a memory leak that occurs when we maximize/minimize an MDI
+       child.
+
+       * dlls/comctl32/updown.c: Francis Beaudet <francis@macadamian.com>
+       Added more support for buddy windows in the updown control.
+
+       * controls/edit.c: Francis Beaudet <francis@macadamian.com>
+       Implemented proper win95 support for the WS_BORDER style.
+
+       * controls/listbox.c: Francis Beaudet <francis@macadamian.com>
+       Changed the WS_BORDER style to a WS_EX_CLIENTEDGE style for the
+       listbox control.
+
+       * controls/combo.c: Francis Beaudet <francis@macadamian.com>
+       Fixed the border for the listbox created by the simple combobox.
+
+       * ole/compobj.c, if1632/compobj.spec:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Implemented CoRevokeClassObject stub needed by Acrobat 3 16 bit.
+
+       * loader/ne/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       GetModuleHandle16: treat Win32 modules correctly.
+
+Wed Jul 28 16:38:45 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/shell32/brsfolder.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed use of StrRetToStrN.
+
+       * dlls/shell32/shell32.spec, dlls/shell32/shellord.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       StrRetToStrN[A|W|AW] new independent unicode/ascii/export functions.
+
+       * documentation/dlls: Klaas van Gend <klaas@vangend.demon.nl>
+       Added explanation of the current DLL support.
+
+       * memory/global.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: fixed freshly introduced bug in GlobalLock16.
+
+       * dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
+       Ian Schmidt <ischmidt@cfl.rr.com>
+       Added stubs for InitMUILanguage and COMCTL32.410.
+       Fixed some compiler warnings.
+
+Tue Jul 27 17:10:06 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * if1632/gdi.spec, if1632/thunk.c, if1632/user.spec, include/callback.h, miscemu/main.c, objects/gdiobj.c, windows/user.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added FinalUserInit16/FinalGdiInit16 stubs.
+       Call out to FinalUserInit in MAIN_EmulatorRun.
+
+       * if1632/kernel.spec, memory/selector.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added IsBadFlatReadWritePtr16().
+
+       * controls/edit.c: Abey George <abey@macadamian.com>
+       Fixed incorrect edit control behaviour in mouse message handling.
+
+       * windows/message.c: Abey George <abey@macadamian.com>
+       Send normal mouse messages to WM_SETCURSOR when non-client mouse
+       messages occur.
+
+       * windows/winpos.c: Thuy Nguyen <thuy@macadamian.com>
+       Check if the window has the WS_CLIPSIBLINGS style before using the
+       DCX_CLIPSIBLINGS flag.
+
+       * dlls/commdlg/Makefile.in, dlls/commdlg/cdlg.h, dlls/commdlg/cdlg32.c, dlls/commdlg/cdlg_En.rc, dlls/commdlg/filedlg.c, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/filedlgbrowser.h, include/commdlg.h, include/dlgs.h, include/tchar.h:
+       Francois Boisvert <francois@macadamian.com>
+       Implemented the Win95 file open/save dialogs.
+
+       * Makefile.in: Marcus Meissner <marcus@jet.franken.de>
+       Do tools/ before any of the other subdirectories, even when doing
+       parallel makes.
+
+       * memory/global.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Return selector also in CX from GlobalLock16().
+
+       * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       More gcc bug workarounds.
+
+       * graphics/psdrv/ppd.c, include/wingdi.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Added more paper sizes and bin names to PPD parser.
+
+       * windows/dinput.c: Marcus Meissner <marcus@jet.franken.de>
+       Actually return the number of events in Mouse_GetDeviceData (fixes
+       Wing Commander Prophecy). Added timestamp and sequence generation,
+       critical section for mousedata. Disabled mouse warping in
+       GetDeviceData for now (generates excess mouse events).
+
+Sun Jul 25 13:15:49 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * */*.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved .spec files to corresponding dlls/ directory.
+
+       * controls/listbox.c: Gerard Patel <g.patel@wanadoo.fr>
+       Several focus and selection problems in listboxes.
+
+       * windows/dce.c: Francis Beaudet <francis@macadamian.com>
+       Retrieve the clipping region before setting the drawable and reset the
+       clipping region after.
+
+       * relay32/Attic/shell32.spec, dlls/shell32/brsfolder.c, dlls/shell32/pidl.c, dlls/shell32/pidl.h, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, dlls/shell32/shlmenu.c, include/shell.h, include/shlguid.h, include/shlobj.h, include/wine/obj_enumidlist.h, include/wine/obj_shellfolder.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Many fixes/reimplementations.
+
+       * dlls/shell32/shlview.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Removed experimental/unused code.
+       Use ShellFolder to get ViewObjects.
+       Started cleanup of the contextmenu code.
+
+       * dlls/shell32/shlfolder.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Complete redesign, split into 3 implementations (Desktop, MyComputer
+       and filesystem folders). All parsing and binding is done recursive.
+
+       * dlls/shell32/shellpath.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Implemented SHGetSpecialFolderPathA.
+
+       * dlls/shell32/shellord.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Implemented SHCreateShellFolderViewEx.
+
+       * dlls/shell32/shellole.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Removed special CoCreateClassObject and use ole functions instead.
+       SHCreateDefClassObject implemented.
+
+       * dlls/shell32/shelllink.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Implemented access to lnk's to a IStream interface.
+
+       * dlls/shell32/iconcache.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed icon background (was black).
+
+       * dlls/shell32/folders.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed getting icons from filetypes.
+
+       * dlls/shell32/enumidlist.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Implemented enumeration of shell extensions, seperated enum stuff for
+       the 3 seperate shellfolder implementations.
+
+       * dlls/shell32/dataobject.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Rewrote GetData so support multiple selections.
+
+       * dlls/shell32/contmenu.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Separated stuff for shv background contextmenu to separate file.
+
+       * dlls/shell32/classes.c: Juergen Schmied <juergen.schmied@metronet.de>
+       New functions to access attributes in HCR.
+
+       * dlls/shell32/Makefile.in, dlls/shell32/shv_bg_cmenu.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       New file. Seperate implementation of the shellview background
+       contextmenu.
+
+       * include/wine/undocshell.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       New file. Contains functions not in the official headers but widely
+       used from other dlls.
+
+       * Makefile.in: Marcus Meissner <marcus@jet.franken.de>
+       Added X11OBJS and LIBOBJS to wine dependencies (we can't add ALT_LINK).
+
+       * Makefile.in: Make sure we build tools first.
+
+       * if1632/kernel.spec, if1632/relay.c, if1632/wprocs.spec, memory/global.c, tools/build-spec.txt, tools/build.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Relay code for Win16 register functions converts arguments.
+       New 'interrupt' keyword added (for Win16 interrupt handlers).
+       Adapted .spec files and implementations of register routines.
+
+       * include/psdrv.h, include/wine/wingdi16.h, misc/printdrv.c, graphics/psdrv/escape.c, graphics/psdrv/init.c, graphics/psdrv/ps.c, if1632/gdi.spec:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       {Start|End}{Doc|Page} go through DCfuncs.
+       Implement these in the PostScript driver.
+       Change PSDRV_Escape to use them.
+
+       * loader/dos/dosvm.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Work around 'local extern declaration with attribute' gcc bug.
+
+       * windows/dinput.c: Lionel Ulmer <lionel.ulmer@free.fr>
+       Implementation of SetEventNotification for the mouse driver.
+
+       * ole/compobj.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Let CoCreateInstance use LOAD_WITH_ALTERED_SEARCHPATH.
+
+       * include/ole2.h: Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed incomplete proto.
+
+       * winedefault.reg: Juergen Schmied <juergen.schmied@metronet.de>
+       New keys nessesary for running the new shell32.
+
+       * controls/static.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Use GDI APIs to access bitmap info.
+
+       * graphics/psdrv/clipping.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Rewrote PSDRV_SetDeviceClipping to use GetRegionData API.
+
+Sat Jul 24 12:20:25 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * miscemu/main.c, if1632/thunk.c, include/main.h, loader/main.c, misc/Attic/callback.c, misc/Makefile.in:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Unify startup sequence for Wine and WineLib.
+
+       * windows/clipboard.c, include/clipboard.h, memory/global.c:
+       Noel Borthwick <noel@macadamian.com>
+       Fix bug with pasting Wine clipboard content to external applications,
+       by storing clipboard data on the shared system heap.
+
+       * windows/x11drv/mouse.c: Achim Kaiser <Achim_Kaiser@t-online.de>
+       Draw an additional white bit for each invert bit of a cursor.
+
+       * windows/x11drv/event.c: Noel Borthwick <noel@macadamian.com>
+       While handling the X FocusIn message in managed mode, if the window
+       has been disabled revert the X focus back to the last focus window.
+
+       * dlls/shell32/brsfolder.c, include/commctrl.h, dlls/comctl32/treeview.c:
+       Francois Boisvert<francois@macadamian.com>
+       Implemented TREEVIEW_InsertItemW.
+
+       * graphics/escape.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Implemented ExtEscape.
+
+       * Makefile.in: Marcus Meissner <marcus@jet.franken.de>
+       Trying to fix parallel make by doing direct subdir/subdir.o rules.
+
+       * include/win.h, windows/nonclient.c, windows/x11drv/wnd.c:
+       Sylvain St-Germain <sylvain@macadamian.com>
+       Fixed inconsistency in conditions that determines if a window requires
+       a WM border.
+
+       * graphics/x11drv/xfont.c, include/x11font.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       For large font sizes call XLoadQueryFont with a 100 pixel high font
+       and rescale the metrics.
+
+       * misc/printdrv.c, objects/dc.c, graphics/psdrv/escape.c, graphics/win16drv/init.c, include/gdi.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Implement handling of 32 bit AbortProc.
+
+       * include/process.h, include/server.h, include/wine/exception.h, include/winnt.h:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       Suppressed compiler warning by using the 'unused' attribute.
+
+       * debugger/Makefile.in, debugger/external.c:
+       Kevin Holbrook <kwh@neosoft.com>
+       Added utility function to invoke external debugger.
+
+       * multimedia/.cvsignore, multimedia/winmm.rc, multimedia/winmm_En.rc, multimedia/winmm_Fr.rc, relay32/builtin32.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added WINMM resources.
+
+       * multimedia/Attic/mcistring.c, multimedia/Makefile.in:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed obsoleted mcistring.c.
+       Added support for resources.
+
+       * multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcicda.c, multimedia/mcimidi.c, multimedia/mciwave.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed return values for some messages in DriverProc (MCI_GETDEVCAPS &
+       MCI_STATUS) for mciSendString.
+
+       * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Spread the use of MM crit sect.
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Moved some MCI functions to mci.c.
+       Now loads error messages from string table.
+       Spread the use of MM crit sect.
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added parsing & storing of command tables.
+       Merged some MCI functions from mmsystem.c.
+
+       * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed some no longer used prototypes.
+       Added command tables to MCI structure.
+
+       * include/mmsystem.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed buggy prototype.
+
+       * debugger/types.c: Kevin Holbrook <kwh@neosoft.com>
+       Avoid crashing on a bad symbol address of 0x0000.
+
+       * misc/w32sys.c: Fixed GetW32SysVersion16 return type.
+
+       * include/commdlg.h, include/module.h, loader/module.c, relay32/utthunk.c, dlls/commdlg/colordlg.c, dlls/commdlg/filedlg.c, dlls/commdlg/finddlg.c, dlls/commdlg/fontdlg.c, dlls/commdlg/printdlg.c, if1632/wprocs.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed MODULE_GetWndProcEntry16().
+       Use 32-bit window procedures in COMMDLG instead.
+
+       * configure, configure.in: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed cut&paste bug.
+
+       * include/docobj.h, include/wine/obj_base.h, include/wine/obj_dataobject.h, include/wine/obj_dragdrop.h, include/wine/obj_inplace.h, include/wine/obj_olefont.h, include/wine/obj_oleundo.h, include/wine/obj_propertystorage.h, include/wine/obj_storage.h:
+       Paul Quinn <paulq@corel.ca>
+       Add a few stubs, some C++ compatibility, and fix a few types.
+
+       * include/initguid.h, ole/guid.c: Albert den Haan <albertd@corel.ca>
+       Declare only one instance of GUID_NULL.
+
+       * dlls/comctl32/imagelist.c: Pierre Mageau <pierre@macadamian.com>
+       Fixed various problem with ImageList_Draw.
+
+       * windows/dialog.c: Stephane Lussier<stephane@macadamian.com>
+       Re-enable the owner window in the EndDialog().
+
+       * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
+       Fixed notifications.
+
+       * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Always retrieve Callout routines using GetProcAddress().
+
+       * windows/defwnd.c: Abey George <abey@macadamian.com>
+       Send WM_CONTEXTMENU on WM_RBUTTONUP, not WM_RBUTTONDOWN.
+
+       * windows/x11drv/keyboard.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixed compiler warning.
+
+       * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Let through more flags to EnumPrinters.
+       Fixes for GetPrinter/GetPrinterDriver.
+
+       * graphics/psdrv/color.c, graphics/psdrv/init.c, graphics/psdrv/ps.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fix stupid `rubbish at end of %%Title' bug.
+       Don't complain about palette relative RGBs.
+       If output param to CreateDC is NULL default to `LPT1:' - Hack.
+
+Fri Jul 23 19:33:24 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * configure, configure.in, include/config.h.in, include/wine_gl.h:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       Better detection of OpenGL.
+
+       * include/callback.h, include/stackframe.h, misc/Attic/callback.c, tools/build.c, if1632/thunk.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Reverted CallTo16 routines to STDCALL convention.
+
+       * objects/font.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       String to GetTextExtentPoint is not necessarily 0 terminated.
+       Fix function name `32's in comments - API naming madness makes this
+       worthwhile.
+
+       * dlls/winspool/info.c, graphics/driver.c, graphics/psdrv/README, include/winspool.h, relay32/Attic/winspool.spec:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       EnumJobs stub.
+       Update graphics/psdrv/README.
+       Add warnings to DRIVER_GetDriverName.
+
+       * windows/mdi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed some bad ptr occurrence in this class WndProc.
+
+       * graphics/ddraw.c, include/options.h, misc/main.c, windows/x11drv/main.c:
+       Lionel Ulmer <lionel.ulmer@free.fr>
+       - Added a new option 'noxshm'
+       - Added a 16bpp -> 32 bpp conversion function
+
+       * windows/syscolor.c: Gerard Patel <g.patel@wanadoo.fr>
+       Change color gray text to 128 128 128 for win9x look.
+
+Tue Jul 20 15:13:20 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * scheduler/debugger.c:
+       Do not output text in OutputDebugStrAW when not being debugged
+
+       * windows/mdi.c: Noomen Hamza <noomen@macadamian.com>
+       MDIDestroyChild: MDI window menu item was deleted only if the current
+       destroyed child was active.
+
+       * dlls/comctl32/propsheet.c: Gerard Patel <g.patel@wanadoo.fr>
+       Reset disabled style for the dialog boxes set on property pages.
+
+       * tools/wrc/dumpres.c, tools/wrc/genres.c, tools/wrc/newstruc.c, tools/wrc/newstruc.h, tools/wrc/parser.l, tools/wrc/parser.y, tools/wrc/wrc.c, tools/wrc/wrc.h, tools/wrc/wrctypes.h, tools/wrc/CHANGES:
+       Bertho Stultiens <bertho@akhphd.au.dk>
+       - Generalized the distinction between 2 and 4 byte integers slightly through
+         a new parser state. The is now a warning when a 2 byte integer is larger
+         than 16 bit (and is truncated).
+       - Fixed a couple of cosmetic things in the DLGINIT stuff so that dumping of
+         this type will work as expected.
+       - Added generalized language/version/characteristics support to the DLGINIT
+         resource type.
+
+       Ulrich Czekalla <ulrichc@corel.ca>
+       - Added support for DLGINIT resource-type.
+       - Added string continuation and embedded quoting.
+       - Added numeric IDs for icons in controls.
+
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       - Bugfix: Distinguish between 2 and 4 byte integers in RCDATA.
+
+Sun Jul 18 18:42:29 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * misc/Attic/string.c, misc/Makefile.in:
+       Albert den Haan <albertd@corel.ca>
+       Remove string.c because all of its functions were moved to crtdll.c
+       where they belonged.
+
+       * tools/wrc/dumpres.c, tools/wrc/genres.c, tools/wrc/newstruc.c, tools/wrc/parser.l, tools/wrc/preproc.c, tools/wrc/readres.c, tools/wrc/utils.c, tools/wrc/wrc.c, tools/wrc/writeres.c, debugger/display.c, dlls/winaspi/winaspi16.c, dlls/wnaspi32/winaspi32.c:
+       Patrik Stridvall <ps@leissner.se>
+       Make it possible to compile with GNU C's -I- option.
+
+       * loader/dos/dosvm.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Work around gcc sig11 fault.
+
+       * objects/gdiobj.c: Thuy Nguyen <thuy@macadamian.com>
+       Fixed rounding in MulDiv.
+
+       * graphics/psdrv/Makefile.in, graphics/psdrv/clipping.c, graphics/psdrv/init.c, graphics/psdrv/ps.c, include/psdrv.h:
+       Luc Tourangeau <luc@macadamian.com>
+       - implementation of SetDeviceClipping
+       - coordinate system origin fix
+
+       * win32/kernel32.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Work-around for compiler bug.
+
+       * dlls/comctl32/treeview.c, include/commctrl.h, include/treeview.h:
+       Alex Priem <alexp@sci.kun.nl>
+       - Implementation of simple comctl32 v5.0 changes.
+       - TVM_SORTCHILDRENCB also accepts TVI_ROOT as a valid hParent.
+
+       * dlls/advapi32/security.c: Ian Schmidt <irsman@iag.net>
+       Added pointer validation and additional sanity check to IsValidSid().
+
+       * controls/uitools.c: Dennis Bj|rklund <dennisb@cs.chalmers.se>
+       Small fix in UITOOLS95_DrawRectEdge().
+       Also a fix to draw scrollbar-buttons more like in win9x.
+
+       * windows/painting.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       In WIN_UpdateNCRgn, do not send in WM_NCPAINT a region that is used
+       afterwards, but a copy of it.
+
+       * objects/region.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Check better that handles are actual handles to a region.
+
+       * windows/dce.c: Lawson Whitney <lawson_whitney@juno.com>
+       Stop DCE_GetVisRect dereferencing a null wndPtr.
+
+       * configure.in, documentation/.cvsignore, documentation/Makefile.in, documentation/wine.conf.man.in, documentation/wine.man.in, Make.rules.in, README, configure:
+       James Juran <jrj120@psu.edu>
+       Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Updated README and man page.
+       Split documentation for wine.conf into new wine.conf(5) manpage.
+
+       * include/ole2.h, include/winerror.h, ole/Makefile.in, ole/clipboard.c, ole/ole2.c, ole/ole2stubs.c, ole/olecli.c:
+       Noel Borthwick <noel@macadamian.com>
+       Implemented the OLE Clipboard API.
+
+       * windows/winpos.c: Abey George <abey@macadamian.com>
+       Validate the parent with the child window client rectangle when the
+       parent's update region is not empty.
+
+       * include/win.h, windows/painting.c:
+       Francis Beaudet <francis@macadamian.com>
+       Delay WM_NCPAINT message until the "painter's algorithm" kicks in.
+
+       * controls/combo.c: Francis Beaudet <francis@macadamian.com>
+       Fixed fake WM_LBUTTONUP message.
+
+       * include/winversion.h, misc/version.c: Ian Schmidt <irsman@iag.net>
+       Added version information for Win98.
+
+       * include/commctrl.h: Alex Priem <alexp@sci.kun.nl>
+       Macro definitions used SNDMSG instead of SendMessage[AW]. Bad.
+
+       * misc/main.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       debug_(snoop|relay)_(exclude|include)list => fixed allocation, modules
+       are now stored uppercase.
+
+       * controls/button.c: Francis Beaudet <francis@macadamian.com>
+       Implemented the BS_ICON style.
+
+       * windows/dialog.c: Ove Kaaven <ovek@arcticnet.no>
+       CreateDialogParamA should not call CreateDialogParamW, because
+       that'd create a dialog box with a Unicode dialog procedure...
+
+       * controls/scroll.c: Dennis Bj|rklund <dennisb@cs.chalmers.se>
+       Win9x look & feel on scrollbars.
+
+       * graphics/psdrv/README, graphics/psdrv/init.c, include/psdrv.h:
+       Thuy Nguyen <thuy@macadamian.com>
+       Introduced a [psdrv] section in wine.conf with a ppdfile value
+       specifying the path and name of the PPD file.
+
+       * dlls/comctl32/updown.c, include/updown.h:
+       Sylvain St-Germain <sylvain@macadamian.com>
+       Implementation of the updown buddy windproc subclassing for the
+       handling of keyboard up and down arrow.
+
+       * DEVELOPERS-HINTS: Jim Aston <jima@corel.ca>
+       Updated documentation to reflect renamed header.
+
+       * misc/winsock.c: Ove Kaaven <ovek@arcticnet.no>
+       Added missing include netinet/tcp.h, for TCP_NODELAY.
+
+       * dlls/comctl32/imagelist.c: Luc Tourangeau <luc@macadamian.com>
+       GetIcon bug fix.
+
+Thu Jul 15 16:09:05 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/module.h, loader/ne/module.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Add WINAPI for EntryAddrProc.
+
+       * misc/ddeml.c: Keith Matthews <keith_m@sweeney.demon.co.uk>
+       Minor bug fixes in DdeNameService, also changes to move towards
+       process-safe code.
+
+       * controls/button.c: Dennis Bj|rklund <dennisb@cs.chalmers.se>
+       Win9x look & feel on buttons and a fix for ownerdrawn buttons
+       (background set to COLOR_BTNFACE).
+
+       * if1632/kernel.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       GlobalSmartPageUnlock() stub added.
+
+       * miscemu/Attic/emulate.c, miscemu/Makefile.in, miscemu/main.c, relay32/Makefile.in, tools/build.c, Make.rules.in, Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/win87em/.cvsignore, dlls/win87em/Makefile.in, dlls/win87em/emulate.c, graphics/win16drv/Makefile.in, if1632/Makefile.in, memory/instr.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Use position-independent code in assembly glue when building .so.
+       Include if1632/ and graphics/win16drv/ into WineLib.
+       Move miscemu/emulate.c into dlls/win87em/.
+
+       * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Changed way of allocation open mci drivers (array => list); this list
+       is now stored on a per process basis.
+
+       * multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcicda.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed fixed size array to store specific data (now using
+       mci(Set|Get)DriverData to store specific data).
+       Make use of default debugtools.h channel.
+       Added CALLBACK attribute to DriverProc.
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Changed way of allocation open mci drivers (array => list).
+       First valid ID for mci devices is now 1 (some progs were testing this
+       value).
+       Started implementing mci command table resources.
+       Handled closing on MCI_ALL.
+
+       * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed fixed size array to store specific data (now using
+       mci(Set|Get)DriverData to store specific data).
+       Deferred opening of low-level device until play is requested.
+
+       * multimedia/Attic/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed return value for 'open' command.
+       Changed way of allocation open mci drivers (array => list).
+
+       * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Removed fixed size array to store specific data (now using
+       mci(Set|Get)DriverData to store specific data).
+       Fixed mmio chunk lookup on odd size 'fmt ' chunks.
+
+       * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Uniformized use of fd to midi device.
+       Now allocating memory on system heap.
+       Fixed bug when stopping all notes.
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Cosmetic fixes.
+       Changed way of allocation open mci drivers (array => list).
+       Started implementing mci command table resources.
+
+       * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       No longer calling mm timers callbacks with mm timer crit sect locked.
+
+       * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
+       ERROR_MORE_DATA requires to write the needed number of bytes into the
+       lpcchX value (verified against NT3.51 advapi32.dll).
+
+       * include/winnt.h, win32/device.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed some CONTEXT86 vs. CONTEXT mismatches.
+
+       * include/neexe.h, loader/ne/segment.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added support for 32-bit NE code segments.
+
+       * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
+       Fix a hang when we process WM_STYLECHANGED.
+       Small optimization in TREEVIEW_DrawItem.
+       Fix debugging crash in TREEVIEW_Expand.
+
+Mon Jul 12 13:46:38 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/shell32/pidl.h: Marcus Meissner <marcus@jet.franken.de>
+       Added missing prototype for ILFindChild().
+
+       * dlls/advapi32/security.c, loader/dos/dosmod.c, misc/network.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Compiler warnings fix.
+
+       * misc/comm.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Dumb fixes.
+
+       * if1632/kernel.spec, loader/task.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed bugs introduced by 'register' and 'return' function changes.
+
+       * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed DirectDrawSurface::Flip, do not change flags, exchange the low
+       level physical surfaces (verified for XLIB with WC Prophecy).
+
+Sun Jul 11 17:20:06 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/keyboard.c, windows/user.c, windows/win.c, misc/system.c, misc/toolhelp.c, misc/w32sys.c, tools/build-spec.txt, tools/build.c, win32/kernel32.c, memory/global.c, memory/local.c, include/builtin16.h, loader/ne/module.c, loader/task.c, if1632/kernel.spec, if1632/keyboard.spec, if1632/system.spec, if1632/thunk.c, if1632/toolhelp.spec, if1632/user.spec, if1632/w32sys.spec, if1632/dummy.c:
+       Take advantage of the new registers saved in the STACK16FRAME to turn
+       some 'register' functions into normal functions.
+       Removed the few remaining 'return' functions to simplify relay
+       handling.
+
+       * ipc/Attic/hash_test.c, ipc/Attic/run_tests, ipc/Attic/shm_block.c, ipc/Attic/shm_fragment.c, ipc/Attic/shm_fragment_test.c, ipc/Attic/shm_main_blk.c, ipc/Attic/shm_semaph.c, ipc/Attic/shm_semaph_test.c, ipc/Attic/wine_test_stub.c, loader/signal.c, loader/task.c, memory/atom.c, memory/global.c, misc/ddeml.c, windows/message.c, windows/win.c, windows/x11drv/event.c, Makefile.in, configure, configure.in, include/Attic/dde_atom.h, include/Attic/dde_mem.h, include/Attic/dde_proc.h, include/Attic/shm_block.h, include/Attic/shm_fragment.h, include/Attic/shm_main_blk.h, include/Attic/shm_semaph.h, include/dde.h, ipc/Attic/.cvsignore, ipc/Attic/Makefile.in, ipc/Attic/README, ipc/Attic/TEST_FRAGMENT.std, ipc/Attic/bit_array.c, ipc/Attic/bit_array_test.c, ipc/Attic/dde.tex, ipc/Attic/dde_atom.c, ipc/Attic/dde_atom_test.c, ipc/Attic/dde_mem.c, ipc/Attic/dde_mem_test.c, ipc/Attic/dde_proc.c, ipc/Attic/dde_proc_test.c, ipc/Attic/generic_hash.c, ipc/Attic/generic_hash.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       Removed the old, historical and no longer working IPC support.
+
+       * if1632/.cvsignore, if1632/Makefile.in, if1632/builtin.c, if1632/relay.c, if1632/snoop.c, if1632/thunk.c, include/builtin16.h, include/callback.h, include/module.h, include/stackframe.h, misc/Attic/callback.c, miscemu/main.c, relay32/.cvsignore, relay32/Makefile.in, scheduler/syslevel.c, tools/build.c, Make.rules.in:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Modularized CallFrom/To16 routines.  Adapted dependent routines,
+       16-bit snoop/relay debugging, and make rules.
+
+       * windows/message.c: Gerard Patel <g.patel@wanadoo.fr>
+       Revert last change in window activation on mouse click.
+
+       * memory/global.c: Rein Klazes <rklazes@casema.net>
+       Fixed a case when GlobalSize did not return zero after an error.
+
+Sat Jul 10 13:16:56 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/socket.c: Howard Abrams <howard@cs.nps.navy.mil>
+       Renamed static global variable 'iovec' to 'myiovec'.
+
+       * windows/dinput.c, memory/virtual.c, misc/registry.c, misc/winsock.c, multimedia/joystick.c, scheduler/client.c, scheduler/thread.c, server/console.c, server/file.c, server/pipe.c, server/thread.c, win32/console.c, win32/device.c, win32/file.c, configure, configure.in, debugger/break.c, debugger/msc.c, debugger/source.c, debugger/stabs.c, files/directory.c, files/dos_fs.c, files/file.c, include/config.h.in, include/multimedia.h, include/windef.h, loader/pe_image.c:
+       Howard Abrams <howard@cs.nps.navy.mil>
+       Added checks for sys/errno.h, sys/signal.h and sys/mman.h.
+
+       * windows/dialog.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Create dialog window using CreateWindowEx16/W depending on template
+       type, not dialog procedure type.
+
+       * dlls/shell32/shlfolder.c: Francois Boisvert <francois@macadamian.com>
+       Made IShellFolder::fnParseDisplayName return a relative pidl.
+
+       * dlls/comctl32/comctl32.h, dlls/comctl32/monthcal.c, dlls/comctl32/rsrc.rc, include/commctrl.h, include/monthcal.h:
+       Alex Priem <alexp@sci.kun.nl>
+       First try at the month calendar common control. Main features
+       basically OK.
+
+       * graphics/psdrv/init.c, include/winspool.h, dlls/winspool/info.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Implemented GetPrinterA and GetPrinterDriverA.
+
+       * controls/button.c: Luc Tourangeau <luc@macadamian.com>
+       Added BN_CLICKED notification in WM_SETFOCUS.
+
+       * dlls/shell32/shellpath.c, dlls/shell32/shlfolder.c, dlls/shell32/shlmenu.c, dlls/shell32/shlview.c, dlls/shell32/shres.rc, include/docobj.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Small fixes.
+
+       * relay32/Attic/shell32.spec, dlls/shell32/shellord.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Implemented StrToOleStrN.
+       Fixed crash in ShellExecuteEx.
+       Implemented SHRegOpenKeyA, SHRegQueryValueExA, StrToOleStr[A|W].
+       Stubs for DoEnvironmentSubst[A|W], PathProcessCommand[A|W].
+
+       * dlls/shell32/Makefile.in, dlls/shell32/memorystream.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       IStream interface for file access.
+
+       * dlls/shell32/iconcache.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed crash during second DLL_PROCESS_DETACH if the dll
+       refcount reached zero after the second one (memory freed twice).
+
+       * dlls/shell32/pidl.c, dlls/shell32/pidl.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Some more pidl-types.
+       Implementation of ILIsParent.
+
+       * dlls/shell32/shelllink.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Completely rewritten. IPersistStream interface implemented.
+
+       * dlls/shell32/shellole.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       DLLGetClassObject/Classfactory: create objects by CLSID not IID.
+
+       * misc/main.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: exit() replaced by ExitProcess().
+
+       * memory/local.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: correctly cope with end > 0xfffe.
+
+       * library/winestub.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Call ExitProcess() after WinMain() returns.
+
+       * loader/ne/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Improved behaviour of GetModuleHandle16 w.r.t dummy modules.
+       Don't try to call WEP of dummy modules in FreeLibrary16().
+
+       * include/winreg.h, misc/registry.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Added `const's to some registry API functions.
+
+       * winedefault.reg: Ove Kaaven <ovek@arcticnet.no>
+       Added a couple of DirectX CLSID entries. This makes Unreal completely
+       independent of a windows installation.
+
+       * ole/ole2nls.c: Dave Pickles <davep@nugate.demon.co.uk>
+       GetTimeFormat() should return LocalTime not SystemTime.
+
+       * programs/wcmd/ChangeLog, programs/wcmd/README, programs/wcmd/batch.c, programs/wcmd/builtins.c, programs/wcmd/directory.c, programs/wcmd/wcmd.h, programs/wcmd/wcmdmain.c, programs/wcmd/wcmdrc.rc:
+       Dave Pickles <davep@nugate.demon.co.uk>
+       FOR and IF commands added.
+       MOVE command added, but no wildcard support.
+       Redirection added.
+       Fixed TIME (was reporting in GMT).
+       More help text.
+
+       * dlls/comctl32/tab.c: Abey George <abey@macadamian.com>
+       Sometimes the text on a tab control got truncated.
+
+       * controls/combo.c: Abey George <abey@macadamian.com>
+       Fixed the height of the dropped list when there are few items in the
+       list.
+
+       * include/message.h, include/ttydrv.h, include/x11drv.h, scheduler/synchro.c, windows/event.c, windows/ttydrv/event.c, windows/winpos.c, windows/x11drv/event.c, windows/x11drv/keyboard.c, windows/x11drv/monitor.c, windows/x11drv/wnd.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed all EVENT_Synchronize( FALSE ) calls; use a periodic callback
+       calling XFlush() instead.
+
+       * include/psdrv.h, graphics/psdrv/Makefile.in, graphics/psdrv/bitblt.c, graphics/psdrv/bitmap.c, graphics/psdrv/brush.c, graphics/psdrv/init.c, graphics/psdrv/ps.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Added patterned brushes (level 2 PostScript only).
+       Simple PatBlt for PATCOPY, WHITENESS and BLACKNESS.
+
+       * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
+       Implementation of TVM_SORTCHILDREN. Massaged TVM_SORTCHILDRENCB a bit
+       to use the same code path.
+
+       * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fix InitTask() to work if DGROUP was manually resized.
+
+       * dlls/advapi32/security.c, relay32/Attic/advapi32.spec:
+       Ian Schmidt <irsman@iag.net>
+       Added stub for SetThreadToken(), required by Office 2000.
+
+       * include/commdlg.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: COMMDLG hook procedures were not CALLBACK.
+
+       * ole/stg_stream.c: Thuy Nguyen <thuy@macadamian.com>
+       It is possible for a stream to have both small block and big block
+       chain as NULL.
+
+       * loader/ne/module.c: Marcus Meissner <marcus@jet.franken.de>
+       Made string compare case insensitive in GetModuleHandle16() as a
+       quick fix for WinWord 6.
+
+       * misc/network.c, relay32/mpr.spec:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Added stub for WNetGetUniversalName[A|W].
+
+       * graphics/x11drv/palette.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed crash due to invalid GDI_Obj.
+
+       * objects/metafile.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed crash due to invalid pointer.
+
+----------------------------------------------------------------
+Sun Jul  4 16:09:20 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/*.c, ole/*.c, files/*.c, multimedia/*.c:
+       Converted to the new debug interface, using script written by Patrik
+       Stridvall.
+
+       * include/windef.h, include/winreg.h, tools/make_X11wrappers, tsx11/ts_xf86vmode.c, Makefile.in, graphics/ddraw.c, include/basetsd.h, include/ntdef.h, include/ts_xf86vmode.h, include/winbase.h:
+       Patrik Stridvall <ps@leissner.se>
+       Started on an implementation of Win64 for use on 64 bit platforms.
+
+       * windows/nonclient.c: Noomen Hamza <noomen@macadamian.com>
+       Windows should be activated in these cases:
+       1- when we click on non active window.
+       2- when we cancel a moving or resizing of a non active window.
+
+       * documentation/distributors:
+       Marcus Meissner <Marcus.Meissner@caldera.de>
+       Added sample wine.conf.
+
+       * graphics/ddraw.c, include/keyboard.h, include/ttydrv.h, include/x11drv.h, objects/dc.c, objects/gdiobj.c, windows/dinput.c, windows/ttydrv/init.c, windows/ttydrv/keyboard.c, windows/x11drv/init.c, windows/x11drv/keyboard.c:
+       Patrik Stridvall <ps@leissner.se>
+       Moved code to the X11 driver.
+
+       * include/winuser.h, loader/resource.c, relay32/user32.spec:
+       Joshua Thielen <thielen@netperson.net>
+       Fixed DestroyAcceleratorTable and implemented CreateAcceleratorTableW.
+
+       * windows/win.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       WIN_FindWindow: use GetExeptr(pWnd->hInstance) for CLASS_FindClassByAtom.
+
+       * controls/scroll.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed check for whether to call SetWindowPos when showing a window
+       scroll bar.
+
+       * ole/typelib.c: Marcus Meissner <marcus@jet.franken.de>
+       Check for complete lcid or just the primary language id in the
+       registry lookups (fixes one FirstClassClient 32 problem).
+
+       * windows/message.c: Per Ångström <pang@mbox304.swipnet.se>
+       Fixed a problem with apps that override the default behaviour on
+       WM_MOUSEACTIVATE message (main window was not activated).
+
+       * loader/pe_resource.c: Marcus Meissner <marcus@jet.franken.de>
+       When enumerating resource, only use the lower 31 bit of the name as
+       the offset (for the highest bit is '1'). Should fix wine-net/257.
+
+       * relay32/ntdll.spec, tools/wrc/writeres.c, dlls/ntdll/rtl.c, misc/wsprintf.c, multimedia/mcimidi.c:
+       Patrik Stridvall <ps@leissner.se>
+       Fixes for compile on non-Intel platforms.
+
+       * dlls/advapi32/eventlog.c, dlls/advapi32/security.c, dlls/advapi32/service.c, include/ntddk.h, include/ntsecapi.h, include/winbase.h, include/windef.h, include/winnt.h, include/winreg.h, include/winsvc.h, include/wtypes.h:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed/moved/added missing/wrong function prototypes.
+
+       * dlls/commdlg/cdlg_Da.rc, documentation/status/internationalisation, programs/progman/Da.rc, resources/sysres_Da.rc:
+       Henrik Olsen <henrik@iaeste.dk>
+       Cleanup of the Danish support.
+
+       * windows/winpos.c: Yuxi Zhang <yuxiz@corel.ca>
+       Fix a bug in SetWindowPos to prevent parent from erasing its child
+       painting area when parent window and child window don't have
+       WS_CLIPCHILDREN and WS_CLIPSIBLINGS.
+
+       * windows/defwnd.c: Yuxi Zhang <yuxiz@corel.ca>
+       Make defwndproc erase the correct location.
+
+Sat Jul  3 16:01:44 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * relay32/crtdll.spec, windows/dinput.c, dlls/comctl32/propsheet.c, dlls/comctl32/trackbar.c, dlls/version/resource.c, if1632/relay.c, include/win.h, loader/elf.c, loader/pe_image.c, misc/crtdll.c, misc/shell.c, multimedia/dsound.c, dlls/advapi32/advapi.c, dlls/advapi32/eventlog.c, dlls/avifil32/avifile.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       some small include fixes, some checks for NULL ptrs,
+       loader/elf.c: fixed the "lib" insertion
+       crtdll: added fsopen()
+       dinput: return that we are attached.
+
+       * controls/button.c: Reverted previous change.
+
+       * controls/edit.c: Gerard Patel <g.patel@wanadoo.fr>
+       Cancel pending notifications when EM_SETMODIFY is called.
+
+       * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
+       Fix a crash when doing sorted inserts at top level.
+
+       * windows/nonclient.c: Ove Kaaven <ovek@arcticnet.no>
+       Reworked nonclient drawing code. Win31 look now works more like real
+       Win31, so apps like Delphi 1.0 no longer go into infinite recursion
+       etc. Fixed a couple of bugs in win95 look too, but not as thoroughly
+       (e.g. WS_EX_WINDOWEDGE is still not handled).
+
+       * windows/sysmetrics.c: Ove Kaaven <ovek@arcticnet.no>
+       SM_C[XY]FRAME is BorderWidth + 1.
+
+       * memory/local.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: LocalInit with start == 0 always places heap at end of segment.
+
+       * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: TASK_CallToStart didn't pass correct hInstance to app.
+
+       * loader/dos/module.c, loader/ne/module.c, loader/pe_image.c, loader/task.c, miscemu/main.c, scheduler/process.c, include/module.h, include/process.h, include/task.h, loader/main.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       On NE process creation, move major part of NE EXE module loading and
+       NE instance creation into the child process.
+
+       * documentation/gui: Ove Kaaven <ovek@arcticnet.no>
+       Window style updates.
+
+       * libtest/guitest.c: Ove Kaaven <ovek@arcticnet.no>
+       Some enhancements, and removal of C++ constructs.
+
+       * graphics/d3ddevices.c, graphics/ddraw.c, graphics/ddraw_private.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       Implemented chains of surfaces. This allows an unlimited number
+       of backbuffers, and other attached surfaces (zbuffers, alpha buffers,
+       whatever).
+
+       * files/file.c, relay32/kernel32.spec:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Added UnlockFileEx stub.
+
+       * documentation/status/internationalisation, resources/sysres_Ca.rc, resources/sysres_Es.rc:
+       Jose Marcos Lopez Caravaca <jose.lopez@upcnet.upc.es>
+       Added missing 61762 entry on system resources in Spanish and
+       Catalonian languages.
+
+       * controls/scroll.c: Gerard Patel <g.patel@wanadoo.fr>
+       Make GetScrollInfo return scroll pos when program requests thumb pos
+       outside drag operation.
+
+Sun Jun 27 15:40:44 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/d3d_private.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Converted to the new debug interface.
+
+       * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
+       ReadConsoleA: use ir as pointer to (req+1).
+
+       * windows/painting.c: Gerard Patel <g.patel@wanadoo.fr>
+       Remove the  validated child area from the update region of parent for
+       windows without WS_CLIPCHILDREN style.
+
+       * debugger/db_disasm.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Grp8 instructions have *byte* BitOffset operand.
+
+       * msdos/vxd.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: missing WINAPIs added.
+
+       * ole/ole2.c: Marcus Meissner <marcus@jet.franken.de>
+       OleMetaFilePictFromIconAndLabel16: slightly broken, use LPOLESTR16.
+
+       * files/file.c: Gerard Patel <g.patel@wanadoo.fr>
+       Return ERROR_DISK_FULL for WriteFile.
+
+       * programs/cmdlgtst/cmdlgtst.c: Eric Williams <ewill@ncal.verio.com>
+       Fixed missing return after about dialog.
+
+Sat Jun 26 19:09:11 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * msdos/*.c, misc/*.c, miscemu/*.c, graphics/*.c:
+       Converted to the new debug interface, using script written by Patrik
+       Stridvall.
+
+       * scheduler/thread.c, tools/build.c, win32/device.c, win32/kernel32.c, win32/ordinals.c, windows/win.c, loader/ne/module.c, loader/ne/segment.c, memory/global.c, memory/local.c, memory/selector.c, misc/callback.c, misc/error.c, misc/windebug.c, miscemu/emulate.c, msdos/devices.c, msdos/dpmi.c, msdos/int09.c, msdos/int10.c, msdos/int11.c, msdos/int12.c, msdos/int13.c, msdos/int15.c, msdos/int16.c, msdos/int17.c, msdos/int19.c, msdos/int1a.c, msdos/int20.c, msdos/int21.c, msdos/int25.c, msdos/int26.c, msdos/int29.c, msdos/int2a.c, msdos/int2f.c, msdos/int33.c, msdos/int3d.c, msdos/int41.c, msdos/int4b.c, msdos/int5c.c, msdos/interrupts.c, msdos/vxd.c, msdos/xms.c, dlls/ntdll/exception.c, dlls/ntdll/rtl.c, dlls/winaspi/winaspi16.c, if1632/builtin.c, if1632/relay.c, if1632/snoop.c, if1632/thunk.c, include/callback.h, include/dosexe.h, include/miscemu.h, include/msdos.h, loader/dos/dosvm.c, loader/task.c:
+       Changed CONTEXT into CONTEXT86 everywhere we really want an i386
+       context.
+       Added #ifdef __i386__ around accesses to 386 registers in the generic
+       CONTEXT structure.
+
+       * include/winnt.h: Added CONTEXT86 definition.
+       Added PowerPC context as an example (not tested).
+
+       * relay32/relay386.c, relay32/snoop.c, include/wine/exception.h:
+       Fixes for non-i386 compiling.
+
+       * */*:
+       Patrik Stridvall <ps@leissner.se>
+       ANSI C fixes.
+       Removed warnings.
+       Made the include files self-sufficient.
+       Some Solaris fixes.
+
+       * relay32/comctl32.spec, dlls/comctl32/comctl32undoc.c, include/commctrl.h:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Fixed DPA_LoadStream and improved DPA_Merge.
+
+       * dlls/comctl32/treeview.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Added check for invalid parent item.
+
+       * dlls/shell32/shellord.c, relay32/shell32.spec:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Added SHDoDragDrop() stub.
+
+       * objects/region.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Improved GetRandomRegion().
+
+       * misc/network.c, relay32/mpr.spec:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Added WNetRemoveCachedPassword() stub.
+
+       * dlls/comctl32/updown.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Store buddy window.
+
+       * include/tooltips.h, dlls/comctl32/tooltips.c:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Started WM_NOTIFYFORMAT support.
+
+       * dlls/comctl32/rebar.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Better ComboBoxEx placement.
+
+       * loader/module.c: Dave Pickles <davep@nugate.demon.co.uk>
+       Ensure that the command-line passed to the various *CreateProcess
+       functions contains the path to the program being invoked.
+
+       * windows/x11drv/wnd.c: Lars Heete <hel@admin.de>
+       Prevent bad window X error.
+
+       * windows/mdi.c, windows/sysmetrics.c:
+       Abey George <abey@macadamian.com>
+       The system menu icon on a MDI child window was corrupted when the
+       child frame window is maximized within the main frame when the wine
+       look is Windows 95.
+
+       * controls/scroll.c, windows/defwnd.c:
+       Slava Monich <Slava.Monich@netmanage.com>
+       In case if scrollbar has the same background color as the window
+       it belongs to, it needs to be filled with 0x55aa bitmap brush.
+
+       * misc/registry.c: Marcus Meissner <Marcus.Meissner@caldera.de>
+       Fixed the stringcompare in _find_or_add_*() (was missing tolower()s).
+
+       * debugger/memory.c: Juergen Lock <nox@jelal.kn-bremen.de>
+       Fix (well kludge around) FreeBSD's `Invalid address' errors.
+
+       * controls/edit.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Draw a 3D border around edit controls when not in WIN31_LOOK.
+
+       * controls/button.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Only draw a black border around normal buttons when in WIN31_LOOK.
+
+       * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed alignment and position when looking for mmio chunks.
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       No longer using global vars (shared data) for mm timers, but a
+       specific structure for each attached process.
+       Fixed alignment and position when looking for mmio chunks.
+       Fixed WAVE mapper handling in waveGetCaps.
+
+       * include/multimedia.h, multimedia/time.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       No longer using global vars (shared data) for mm timers, but a
+       specific structure for each attached process.
+
+       * documentation/distributors: Marcus Meissner <marcus@jet.franken.de>
+       Wrote a small document on how to package WINE for distributors.
+
+       * windows/nonclient.c: Noomen Hamza <noomen@macadamian.com>
+       SetCursorPos() function was called with a window coordinates
+       parameter.
+
+       * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed null ptr deref introduced in last patch.
+
+       * if1632/ole2.spec, ole/ole2.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Kind of implemented OleMetaFilePictFromIconAndLabel.
+
+       * include/toolbar.h, dlls/comctl32/toolbar.c:
+       Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed various problems related to bitmaps and flat toolbars.
+
+       * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed problems with disappearing text.
+
+       * dlls/comctl32/ipaddress.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Complete rewrite of messaging code to implement/fix all input behaviors.
+       Fixed a few fixmes.
+
+       * programs/wcmd/ChangeLog, programs/wcmd/README, programs/wcmd/batch.c, programs/wcmd/builtins.c, programs/wcmd/wcmd.h, programs/wcmd/wcmdmain.c:
+       Dave Pickles <davep@nugate.demon.co.uk>
+       Added more batch functionality, including the CALL GOTO and SHIFT
+       commands plus batch command arguments.
+
+       * documentation/status/multimedia: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated to reflect current status.
+
+       * loader/ne/module.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       NE_LoadFileModule: Free module when NE_LoadDLLs fails.
+
+       * graphics/psdrv/ps.c, graphics/psdrv/text.c, include/psdrv.h:
+       Thuy Nguyen <thuy@macadamian.com>
+       Implemented the underline and strikeout text attributes for the Wine
+       PostScript driver.
+
+       * windows/win.c: Pascal Lessard <pascal@macadamian.com>
+       EnableWindow doesn't release the capture of a child window.
+
+       * Makefile.in: James Juran <jrj120@psu.edu>
+       Only test $(LIB_TARGET) = libwine.so.1.0 if $(LIB_TARGET) is
+       non-blank.
+
+       * controls/menu.c: Noomen Hamza <noomen@macadamian.com>
+       Remove the WM_LBUTTONUP message from the queue after selecting a mouse
+       menu item.
+
+       * server/change.c, server/console.c, server/debugger.c, server/device.c, server/event.c, server/file.c, server/handle.c, server/mapping.c, server/mutex.c, server/object.c, server/object.h, server/pipe.c, server/process.c, server/request.c, server/request.h, server/semaphore.c, server/snapshot.c, server/socket.c, server/thread.c, server/thread.h, server/trace.c, tools/make_requests, win32/console.c, win32/device.c, include/server.h, include/thread.h, loader/dos/module.c, memory/virtual.c, misc/comm.c, misc/toolhelp.c, ole/parsedt.c, scheduler/client.c, scheduler/debugger.c, scheduler/event.c, scheduler/handle.c, scheduler/mutex.c, scheduler/pipe.c, scheduler/process.c, scheduler/semaphore.c, scheduler/synchro.c, scheduler/thread.c, files/change.c, files/dos_fs.c, files/file.c:
+       Further server optimizations:
+       - merged request and reply structures
+       - build requests directly into the buffer to avoid a copy
+
+Tue Jun 22 19:14:41 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/shell32/shell32_Ru.rc, graphics/x11drv/xfont.c, ole/nls/rus.nls, resources/sysres_Ru.rc, dlls/commdlg/cdlg_Ru.rc:
+       Alexander Kanavin <ak@cave.hop.stu.neva.ru>
+       Standard dialog boxes resources and OLE strings are now in cp1251 encoding
+       Font mapper does not anymore use fonts in -koi8-r encoding
+       Font mapper now recognises fonts in -windows-* encodings (these are
+       provided by xfstt TrueType server)
+       Font mapper now sees max 16384 fonts (was 2048)
+
+       * relay32/builtin32.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Share the HMODULE of built-in modules over all processes.
+       Use the cached HMODULE to speed up relay debugging.
+       Display the multi-instantiation warning only for 'dangerous' DLLs.
+
+       * scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Load USER32.DLL before calling UserSignalProc.
+
+       * windows/timer.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Use separate service for each windows timer.
+
+       * if1632/compobj.spec, ole/compobj.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Added COMPOBJ.DllEntryPoint (Acrobat3 16bit needs it).
+
+       * ole/typelib.c, dlls/comctl32/listview.c, dlls/comctl32/treeview.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Thou shalt not use C++ comments.
+
+       * include/driver.h, windows/driver.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Moved to new trace interface.
+       Fixed driver closing.
+
+       * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Better handling of double quotes in MCI string commands.
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed memory leak in mci structures.
+
+       * graphics/ddraw.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed error handling in DGA_IDirectDraw2Impl_GetCaps().
+
+       * graphics/x11drv/clipping.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added missing GDI heap unlock.
+       Moved to new debug interface.
+
+       * dlls/commdlg/filedlg.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed GetOpenFileName when called with both OFN_ALLOWMULTISELECT and
+       OFN_EXPLORER bits set.
+
+       * dlls/comctl32/imagelist.c:
+       Francois Boisvert <francois@macadamian.com>
+       Modified ImageList_LoadImageA to check the case where cx is set to zero.
+
+       * windows/x11drv/keyboard.c: Philippe Froidevaux <pf@spin.ch>
+       Added Swiss french keyboard layout.
+
+       * server/select.c: Dump server objects on SIGHUP.
+
+       * server/file.c, server/handle.c, server/handle.h, server/main.c, server/mapping.c, server/mutex.c, server/object.c, server/object.h, server/pipe.c, server/process.c, server/request.c, server/request.h, server/semaphore.c, server/snapshot.c, server/socket.c, server/thread.c, server/thread.h, server/trace.c, tools/make_requests, win32/console.c, include/server.h, include/server/Attic/request.h, include/thread.h, memory/virtual.c, misc/comm.c, scheduler/client.c, scheduler/debugger.c, scheduler/event.c, scheduler/mutex.c, scheduler/pipe.c, scheduler/semaphore.c, scheduler/thread.c, server/change.c, server/console.c, server/debugger.c, server/device.c, server/event.c, files/file.c:
+       Made server communication faster by using a shared memory block.
+       A few other optimizations in request processing in the server.
+       Moved automatically generated request definitions to server.h and
+       removed include/server/request.h.
+
+       * windows/message.c, windows/queue.c, windows/win.c, windows/winproc.c, loader/main.c, loader/ne/segment.c, loader/task.c, miscemu/main.c, msdos/dpmi.c, scheduler/client.c, scheduler/process.c, scheduler/sysdeps.c, scheduler/syslevel.c, scheduler/thread.c, tools/build.c, win32/kernel32.c, debugger/stack.c, dlls/ntdll/exception.c, if1632/relay.c, if1632/thunk.c, include/process.h, include/queue.h, include/stackframe.h, include/task.h, include/thread.h, include/winbase.h, include/winnt.h:
+       Merged THDB and TEB structures.
+       Made SetLastError(), GetCurrentThreadId() and PROCESS_Current() inline.
+
+       * programs/winhelp/.cvsignore, programs/clock/.cvsignore, programs/progman/.cvsignore:
+       Added Wa.s
+
+Sun Jun 20 15:09:32 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * memory/instr.c, miscemu/main.c, programs/clock/Wa.rc, programs/progman/Wa.rc, programs/winhelp/Wa.rc:
+       Fixed Winelib compilation.
+
+Fri Jun 18 18:29:04 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * memory/Makefile.in, memory/instr.c, miscemu/Attic/instr.c, miscemu/Makefile.in:
+       Include instruction emulation in Winelib.
+
+       * include/wine/exception.h, win32/except.c: A few optimizations.
+
+       * loader/dos/dosvm.c: Use exceptions instead of ctx_debug_call.
+
+       * include/winbase.h, relay32/kernel32.spec, scheduler/syslevel.c, windows/x11drv/main.c:
+       Added DebugBreak.
+
+       * debugger/break.c, debugger/dbg.y, debugger/debug.l, debugger/info.c, debugger/registers.c, include/debugger.h, miscemu/main.c:
+       Debugger is now called by exception handling.
+       Added 'pass' command to pass exceptions to the app.
+
+       * include/miscemu.h, include/sig_context.h, loader/signal.c, dlls/ntdll/exception.c, graphics/ddraw.c:
+       Moved signal handling to exception.c, generate exceptions on signals.
+       Added hook for debugger in exception handling (temporary).
+
+       * programs/progman/Makefile.in, programs/progman/Wa.rc, programs/winhelp/Makefile.in, programs/winhelp/Wa.rc, resources/sysres_Wa.rc, ole/nls/wal.nls, programs/clock/Makefile.in, programs/clock/Wa.rc, programs/notepad/Makefile.in, programs/notepad/Wa.rc, dlls/commdlg/cdlg_Wa.rc, dlls/shell32/shell32_Wa.rc:
+       Pablo Saratxaga <srtxg@ping.be>
+       Walloon language update.
+
+       * windows/winpos.c, windows/x11drv/event.c, windows/x11drv/wnd.c, include/winpos.h, include/winuser.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       - Do not call XConfigureWindow if SetWindowPos was called due to a
+         received ConfigureNotify event (to avoid recursion).
+       - Use XTranslateCoordinates in EVENT_GetGeometry instead of manually
+         walking the tree.
+       - Set XSizeHint.win_gravity to StaticGravity for managed windows.
+
+       * misc/version.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Bug fix.
+
+       * loader/pe_image.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fix compiler warning.
+
+       * documentation/Makefile.in, Makefile.in:
+       Alexander V. Lukyanov <lav@long.yar.ru>
+       Install wine.man from current directory.
+       Remove wine.man on distclean, not on clean.
+
+----------------------------------------------------------------
+Sun Jun 13 08:49:47 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/comctl32/listview.c, include/listview.h:
+       Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Implemented LISTVIEW_SortItems() and LISTVIEW_CallBackCompare()
+
+       * dlls/comctl32/status.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixes a problem when using STATUSBAR_SetText() to toggle SBT_OWNERDRAW
+
+       * dlls/comctl32/treeview.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Adds some undocumented behavior to TREEVIEW_GetItemA().
+
+       * loader/module.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed ambigous else/brace problem, moved "name" computation in
+       CreateProcess _before_ outputting it in the FIXME_()s.
+
+       * objects/region.c: Marcus Meissner <marcus@jet.franken.de>
+       Do not reuse a passed CONST RECT * pointer.
+
+       * windows/x11drv/mouse.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: DISPLAY_SetCursor should not use USER-internals, as it is also
+       used with native USER ...
+
+       * loader/pe_image.c, scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed broken hack to support shared DLLs (e.g. USER32.DLL) and
+       replaced it by a somewhat less broken hack :-/
+
+       * multimedia/mci.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed small memory corruption.
+
+Sat Jun 12 18:36:55 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/*.h:
+       Patrik Stridvall <ps@leissner.se>
+       Mad the include files idempotent using a consistent macro naming
+       scheme.
+
+       * windows/painting.c: Noomen Hamza <noomen@macadamian.com>
+       Avoid painting destroyed windows.
+
+       * dlls/*.c, if1632/*.c, loader/*.c:
+       Converted to the new debug interface, using script written by Patrik
+       Stridvall.
+
+       * if1632/builtin.c, loader/ne/module.c, loader/ne/segment.c, memory/atom.c, memory/string.c, objects/text.c, win32/thread.c, windows/property.c, windows/rect.c, windows/sysmetrics.c, dlls/advapi32/advapi.c, dlls/commdlg/filetitle.c, dlls/ntdll/nt.c, dlls/ntdll/sync.c:
+       Patrik Stridvall <ps@leissner.se>
+       Added missing/wrong includes.
+
+       * windows/user.c, windows/x11drv/event.c, controls/icontitle.c, controls/menu.c, controls/widgets.c, debugger/dbg.y, debugger/dbgmain.c, loader/module.c, misc/spy.c, windows/message.c, windows/painting.c, windows/scroll.c:
+       Patrik Stridvall <ps@leissner.se>
+       Removed direct references to CLASS internals.
+
+       * include/process.h, misc/version.c, scheduler/process.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Rearrange winver detection code and cache the winver value we
+       determined in the PDB to speed up.
+
+       * windows/nonclient.c: Gerard Patel <g.patel@wanadoo.fr>
+       Draws a border around windows with old win31 style (only ws_border) in
+       win95 look.
+
+       * include/commctrl.h, include/prsht.h, include/wine/obj_dataobject.h, include/wtypes.h:
+       Patrik Stridvall <ps@leissner.se>
+       Added CINTERFACE and NONAMELESSUNION support.
+
+       * include/*.h:
+       Patrik Stridvall <ps@leissner.se>
+       Added extern "C" if __cplusplus is defined.
+
+       * include/combo.h, controls/combo.c, controls/listbox.c:
+       Francis Beaudet <francis@macadamian.com>
+       Fixed a few behaviors of the combobox that were broken.
+
+       * debugger/dbg.y, debugger/debug.l, debugger/info.c, include/module.h, include/process.h, loader/module.c, scheduler/process.c:
+       Guy Albertelli <galberte@neo.lrun.com>
+       Add new "walk" command options to list processes and modref's.
+
+       * graphics/x11drv/dib.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       X11DRV_DIB_SetImageBits_24/32: Fix the case for bits_per_pixel == 32
+       and negative lines.
+
+       * dlls/comctl32/status.c, dlls/comctl32/tab.c, dlls/comctl32/tooltips.c, dlls/comctl32/trackbar.c, dlls/comctl32/updown.c, include/winuser.h, dlls/comctl32/comboex.c, dlls/comctl32/commctrl.c, dlls/comctl32/datetime.c, dlls/comctl32/flatsb.c, dlls/comctl32/header.c, dlls/comctl32/hotkey.c, dlls/comctl32/imagelist.c, dlls/comctl32/ipaddress.c, dlls/comctl32/monthcal.c, dlls/comctl32/nativefont.c, dlls/comctl32/pager.c, dlls/comctl32/progress.c, dlls/comctl32/rebar.c:
+       Patrik Stridvall <ps@leissner.se>
+       Changed xxx(VOID) to xxx(void).
+
+       * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       - simplified internal data
+       - thread safe access to internal structures
+       - fixed bug on ONE_SHOT timers
+       - deferred service thread call until really needed (no longer on WINMM
+         or MMSYSTEM attachement)
+
+       * include/process.h, include/services.h, loader/main.c, scheduler/services.c, scheduler/thread.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Made the service thread instanciable in every process.
+
+       * Make.rules.in, Makefile.in, configure, configure.in:
+       James Juran <jrj120@psu.edu>
+       Use Autoconf to find path to ldconfig.
+
+       * ole/typelib.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a problem with the LoadTypeLib method.
+
+       * misc/Makefile.in, misc/registry.c: Marcus Meissner <mm@jet.lst.de>
+       Use @sysconfdir@ for the default registries in misc/registry.c too.
+
+       * graphics/ddraw.c: Marcus Meissner <mm@jet.lst.de>
+       Added generic pixel converter for 8->24.
+
+       * windows/dialog.c: Pavel Roskin <pavel_roskin@geocities.com>
+       DIALOG_ParseTemplate16() supported up to 127 controls. Bigger values
+       were expanded to WORD incorrectly.
+
+       * loader/dos/dosvm.c, loader/dos/module.c, msdos/dpmi.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Various DPMI fixes and preliminary DPMI raw mode switch handler.
+
+       * windows/mdi.c: Noomen Hamza <noomen@macadamian.com>
+       Fixed imprecision in the MDI tiling functionality.
+
+       * objects/metafile.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Open files with more appropriate sharing mode.
+
+       * objects/enhmetafile.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Small fixes for EnhMetaFile playback.
+
+       * dlls/comctl32/comctl32undoc.c: Ian Schmidt <irsman@iag.net>
+       Fixed an error and an off-by-one bug in DSA_SetItem().  This
+       eliminates some crashes with Win98 native SHELL32.
+
+       * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
+       Remove DIABLO_HACK (does not work anymore), add 1 FIXME, fix GetCaps()
+       with caps1==NULL.
+
+       * windows/syscolor.c: Slava Monich <Slava.Monich@netmanage.com>
+       dwDataSize needs to be reset before each RegQueryValueEx() call.
+
+       * multimedia/dsound.c: Ove Kaaven <ovek@arcticnet.no>
+       Don't ignore application-requested primary buffer flags.
+
+       * tools/build.c: Ove Kaaven <ovek@arcticnet.no>
+       Clear high word of %esp when returning from CallFrom16.
+
+       * include/comm.h, misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
+       Implementation of EV_RXFLAG.
+
+       * windows/winpos.c, windows/x11drv/event.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Better implementation of [GS]etForegroundWindow.
+       Fixed focus handling on inter-thread activation.
+       Adapted FocusIn/Out event handling to per-queue focus.
+
+       * loader/ne/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Release Win16Lock during PROCESS_Create.
+
+       * dlls/comctl32/imagelist.c: Luc Tourangeau <luc@macadamian.com>
+       ImageList_GetIcon bug fix.
+
+       * win32/time.c: Rein Klazes <rklazes@casema.net>
+       Corrected a problem in GetTimeZoneInformation() due a change to
+       mktime() in glibc-2.1.1 when daylight saving time is in effect.
+
+       * debugger/db_disasm.c: Patrik Stridvall <ps@leissner.se>
+       Changed K&R C function definition to ANSI C.
+
+       * graphics/psdrv/bitmap.c, include/psdrv.h:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       PSDRV_StretchDIBits should use logical co-ords.
+       Some versions of ghostscript seem to eat one too many characters of
+       image data. Add a '%' to the output file to work around this.
+
+       * relay32/wnaspi32.spec:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Fixed WNASPI32 ordinals.
+
+       * include/winbase.h:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Added the function definitions of GetStartupInfo*().
+
+       * documentation/status/dde, misc/ddeml.c:
+       Keith Matthews <keith_m@sweeney.demon.co.uk>
+       1st cut implementation of DdeNameService (omits monitor callback)
+       1st cut implementation of DdeKeepStringHandle (probably complete)
+       DdeInitializeW - minor changes to initialise service names structure
+       DdeGetLastError - start of proper last error retrieval
+       DdeCreateStringHandle16 - added code for default codepage where not
+       supplied.
+       Various documentary/comment corrections.
+
+Fri Jun 11 18:33:46 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/process.h, memory/environ.c, scheduler/process.c:
+       Use the normal environment routines to build the env db of the initial
+       process.
+
+       * include/server.h, server/console.c, server/object.h, server/process.c, server/process.h, server/trace.c, tools/make_requests, win32/console.c:
+       Return console handles in alloc_console request.
+       Fixed read_console_input parameters to conform to the reply structure
+       declaration.
+
+Mon Jun  7 17:46:39 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * objects/bitmap.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed CreateCompatibleBitmap when called with 0 width or height.
+
+       * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed mmioDescend when called with a parent chunk.
+
+       * loader/signal.c: Marcus Meissner <marcus@jet.franken.de>
+       Trying to fix sigaltstack() problem reported by Debian users.
+       SIGTRAP might be undefined (beos).
+
+       * ole/typelib.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed TLB_Read (can easily get count!=bytesread at the end of the file).
+       Fixed TLB_FindTlb (strstr on binary data will not work).
+
+       * dlls/comctl32/treeview.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed >> and * operator precedence problem.
+
+       * windows/x11drv/mouse.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed order for entering critical sections (X11 vs. WndLock) when
+       calling X11DRV_MOUSE_SetCursor.
+
+       * loader/module.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Consult ne.operating_system field for NE files in GetBinaryType().
+
+       * server/process.c: Fixed initial process refcount.
+
+Sun Jun  6 17:28:21 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * documentation/status/directplay, loader/dos/Makefile.in, documentation/Makefile.in, documentation/cdrom-labels:
+       Forced commit to get rid of the vendor branch
+
+       * programs/cmdlgtst/.cvsignore: Added cmdlgr.h
+
+       * programs/regapi/regapi.c:
+       Avoid use of strncmpi (reported by Ron Cemer).
+
+       * include/wine/winestring.h, multimedia/joystick.c, include/winbase.h, include/winuser.h:
+       Moved inclusion of winestring.h to winebase.h.
+       Added Winelib macros for lstrncmp functions.
+
+       * controls/scroll.c: Ron Cemer <roncemer@gte.net>
+       Fixes for several bugs in which portions of the scrollbar were not
+       being redrawn correctly, the focus rectangle was not being correctly
+       removed from the thumb before redrawing, etc.; added complete Win9x
+       and WinNT look and feel support.
+
+       * windows/sysmetrics.c: Ron Cemer <roncemer@gte.net>
+       Fixes for Win9x and WinNT look and feel.
+
+       * files/dos_fs.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed response of GetFullPathNameA when buffer==NULL.
+
+       * files/file.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       CreateFileA/FILE_DoOpenFile: add verbose reporting of arguments.
+
+       * configure.in, programs/Makefile.in, programs/wcmd/.cvsignore, programs/wcmd/ChangeLog, programs/wcmd/Makefile.in, programs/wcmd/README, programs/wcmd/batch.c, programs/wcmd/builtins.c, programs/wcmd/directory.c, programs/wcmd/makefile.bcc, programs/wcmd/wcmd.h, programs/wcmd/wcmdmain.c, programs/wcmd/wcmdrc.rc, configure:
+       Dave Pickles <davep@nugate.demon.co.uk>
+       Added Wine command-line interpreter.
+
+       * if1632/thunk.c, include/callback.h, misc/callback.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed Callback.CallTaskRescheduleProc().
+
+       * include/main.h, miscemu/main.c, tools/build.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Switch stacks in CALL32_Init().
+
+       * loader/task.c, scheduler/process.c, include/process.h, include/task.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       16-bit scheduler reorganized: run all tasks in their own thread.
+       Process creation sequence adapted to new scheduler.
+
+       * include/services.h, loader/main.c, scheduler/services.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed SERVICE_Exit().
+
+       * windows/queue.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Release WND lock before calling PostEvent16().
+
+       * include/wnaspi32.h:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Add some defines.
+
+       * dlls/wnaspi32/winaspi32.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       ASPI_ExecScsiCmd: better return value and verbose error when no device
+       found.
+
+       * loader/module.c: Guy Albertelli <galberte@neo.lrun.com>
+       Use SearchPath to test for existance of programs in lpCmdLine
+       processing. For lpApplName do not append ".exe" and use
+       DOSFS_GetFullName to locate the program. Move module find process
+       after flag testing and provide quick exit if not found.
+
+       * windows/dialog.c: Slava Monich <Slava.Monich@netmanage.com>
+       Implemented dialog units -> pixels conversion very close to how it's
+       actually done by Windows.
+
+Sat Jun  5 15:23:20 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/commdlg/colordlg.c, dlls/commdlg/filedlg.c, dlls/commdlg/fontdlg.c, include/commdlg.h, include/initguid.h, include/objbase.h, include/ole2.h, include/windef.h, include/wine/obj_dataobject.h, include/wine/obj_inplace.h, include/wine/obj_moniker.h, include/wine/obj_oleaut.h, include/wine/obj_oleobj.h, include/winerror.h, include/wingdi.h, include/winuser.h, include/wtypes.h, ole/bindctx.c, ole/moniker.c:
+       Paul Quinn <paulq@corel.ca>
+       Some non-threatening fixes to some headers, as well as some casting
+       changes that make winelib more win32 code compatible.
+
+       * files/drive.c, include/winbase.h, relay32/kernel32.spec:
+       <davep@nugate.demon.co.uk>
+       Stub for SetVolumeLabel().
+
+       * windows/message.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Add back lost treatment of HWND_TOPMOST.
+
+       * windows/x11drv/event.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Try to improve ConfigureNotify event processing.
+
+       * objects/pen.c: Joshua Thielen <thielen@netperson.net>
+       Allow pens with styles greater than PS_INSIDEFRAME to be created with
+       ExtCreatePen.
+
+       * relay32/oleaut32.spec, include/debugdefs.h, include/wine/obj_oleaut.h, ole/typelib.c, ole/typelib.h:
+       Rein Klazes <rklazes@casema.net>
+       Read/load type libraries. Implementation of ITypeLib, ITYpeInfo,
+       ITypeLib2 and ITypeInfo2 methods.
+
+       * ole/ole2disp.c: Rein Klazes <rklazes@casema.net>
+       Allow NULL as argument to SysFreeString in accordance with SDK.
+
+       * DEVELOPERS-HINTS: Klaas van Gend <klaas@vangend.demon.nl>
+       - more up-to-date description of source tree
+       - better example of required comments for an API implementation
+       - replacement of WINE_PACKED by "pshpack1.h", etc.
+       - naming conventions for non-api calls and types
+       - location conventions for non-api header files and prototypes
+
+       * relay32/mpr.spec, include/winnetwk.h, include/wnet.h, misc/network.c:
+       Robert W Hall <bobh@n-cantrell.demon.co.uk>
+       Added 2 stubs.
+
+       * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed behaviour of Alloc..ThunkletCallback[Ex] for NULL target.
+
+       * windows/x11drv/event.c, windows/x11drv/wnd.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed potential memory corruption in EVENT_QueryZOrder.
+       Fixed potential X synchronization problem in X11DRV_WND_SetHostAttr.
+
+       * files/directory.c: Guy Albertelli <galberte@neo.lrun.com>
+       Correct search order in SearchPath for Win 3.1/95/98. Still broken for NT.
+
+       * windows/win.c: Slava Monich <Slava.Monich@netmanage.com>
+       o check for both CW_USEDEFAULT and CW_USEDEFAULT16.
+       o if x is CW_USEDEFAULT (or CW_USEDEFAULT16) and y is *not*
+         CW_USEDEFAULT (or CW_USEDEFAULT16) then use y as a second
+         parameter to ShowWindow(). Some apps (CALC.EXE for Win98
+         is one of them) use this undocumented feature to create
+         hidden window with WS_VISIBLE style set.
+
+       * relay32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
+       Ian Schmidt <irsman@iag.net>
+       Added partial implementation for DPA_LoadStream and stub for
+       DPA_SaveStream.  Thanks to Eric Kohl (ekohl@abo.rhein-zeitung.de) for
+       the partial implementation and parameter information.
+
+       * debugger/stabs.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Make it possible to link Wine statically (at least on RedHat 6.0).
+
+       * controls/menu.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       When looking into sys menu, check if items are present before
+       dereferencing.
+
+       * documentation/Attic/wine.man: Marcus Meissner <marcus@jet.franken.de>
+       Autoconfigure the directories in the manpage.
+
+       * include/message.h, include/ttydrv.h, include/x11drv.h, windows/event.c, windows/ttydrv/event.c, windows/ttydrv/init.c, windows/winpos.c, windows/x11drv/event.c, windows/x11drv/init.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed DummyMotionNotify EVENT driver routine.
+
+       * configure, configure.in, documentation/.cvsignore, documentation/Makefile.in, documentation/wine.man.in:
+       Marcus Meissner <marcus@jet.franken.de>
+       Autoconfigure the directories in the manpage.
+
+       * files/file.c, include/winbase.h, relay32/kernel32.spec:
+       James Juran <jrj120@psu.edu>
+       Add stub for LockFileEx (KERNEL32.513).
+
+       * documentation/status/internationalisation:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Current status of Wine on internationalisation.
+
+       * controls/button.c: Rein Klazes <rklazes@casema.net>
+       Do not process WM_LBUTTONUP message in ButtonWndProc()
+       when the mouse is not captured.
+
+       * graphics/psdrv/init.c, objects/dc.c:
+       Noel Borthwick <noel@macadamian.com>
+       From CreateCompatibleDC, pass the device name associated with the
+       source DC in order to allow PSDRV_CreateDC to locate the printer info
+       for the device.
+
+       * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added some digital video interface
+       Fixed a few bugs (device names are no longer converted to upper case,
+       added call back window, all structures moved to 32 bit...).
+
+       * if1632/thunk.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Workaroung gcc 2.7.2.x sig 11 issue.
+
+       * include/multimedia.h, multimedia/mci.c, multimedia/mmsystem.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added (still incomplete) handling of MCI_BREAK command.
+
+       * documentation/no-windows: James Juran <jrj120@psu.edu>
+       Updated documentation/no-windows.
+
+       * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
+       Speedup enhancement for the 8->16 and 8->32 copy loop hotspots,
+       using a faster generic routine and some inline assembly for i386
+       (cleanups by Ove).
+
+Fri Jun  4 19:49:54 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/handle.c, server/handle.h, server/process.c, server/process.h, server/thread.c:
+       Made handle table a separate object.
+       Global handle table is no longer bound to a process.
+       Removed special handling of the initial process.
+
+       * server/main.c, server/object.c, server/object.h:
+       Added optional debugging code in object management.
+
+Sat May 29 14:27:27 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * scheduler/client.c, scheduler/process.c, scheduler/sysdeps.c, scheduler/syslevel.c, scheduler/thread.c, windows/queue.c, windows/winproc.c, include/thread.h, loader/task.c:
+       Got rid of THREAD_InitDone.
+       Made THREAD_Current() inline.
+       Moved server tid into TEB.
+
+       * windows/dialog.c: Luc Tourangeau <luc@macadamian.com>
+       Reimplemented the CheckRadioButton function.
+
+       * dlls/comctl32/tab.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed incorrect lookup of background color.
+
+       * dlls/comctl32/commctrl.c, dlls/comctl32/status.c:
+       Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed problems when using multiple style flags together.
+
+       * dlls/comctl32/tooltips.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed a problem when using string resources as tooltext.
+
+       * windows/win.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a behavior of the focus when a parent window is disabled.
+
+       * graphics/x11drv/graphics.c: Joshua Thielen <thielen@netperson.net>
+       Fixed a bug which causes the PolyBezier to not be updated on redraw
+       (when you want them to be).
+
+       * windows/input.c: Gerard Patel <g.patel@wanadoo.fr>
+       Remove unnecessary warning in TranslateAccelator.
+
+       * server/handle.c:
+       Fixed duplicate_handle to work with pseudo-handles (reported by Marcus
+       Meissner).
+
+       * dlls/commdlg/cdlg_xx.rc, dlls/ver/ver16.c, dlls/version/info.c, dlls/version/install.c, dlls/version/resource.c, include/ver.h, include/winver.h, tools/wrc/wrctypes.h:
+       Paul Quinn <paulq@corel.ca>
+       ver.h is a legacy header. winver.h should be used instead.
+
+       * dlls/tapi32/phone.c, misc/crtdll.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Fixed some warnings.
+
+       * include/commctrl.h, include/listview.h, dlls/comctl32/listview.c:
+       Luc Tourangeau <luc@macadamian.com>
+       - Reimplemented the scrolling using SetScrollInfo and GetScrollInfo.
+       - Implemented LVM_FINDITEM message.
+       - Added some new window styles.
+       - Fixed some bugs and extended a number of existing functions.
+       - Modified selection functions to support area selection (for group
+         selection in LVS_ICON and LVS_SMALLICON).
+
+       * misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed a couple of missing event notifications. Some more debugging
+       messages.
+
+       * windows/x11drv/keyboard.c: Rikhardur Egilsson <rikardur@sky.fr>
+       Icelandic keyboard support.
+
+       * graphics/ddraw_private.h, graphics/ddraw.c:
+       Lionel Ulmer <ulmer@directprovider.net>
+       - better debug output for surface creation
+       - added (experimental) DIBSection implementation of GetDC / ReleaseDC
+
+       * graphics/d3ddevices.c: Lionel Ulmer <ulmer@directprovider.net>
+       Corrected warning.
+
+       * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
+       Support TPM_RETURNCMD in TrackPopupMenu.
+
+       * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
+       Fix <return> key (somehow we get a control keystate).
+
+       * loader/dos/module.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
+       Fixed compilation erros on non-Linux systems.
+
+       * include/debugtools.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added missing TRACE define when NO_DEBUG_MSGS was defined.
+
+       * dlls/shell32/shellord.c: Ian Schmidt <irsman@iag.net>
+       Added missing WINAPI for SHValidateUNC.
+
+       * documentation/languages: Klaas van Gend <klaas@vangend.demon.nl>
+       Adapted to the new dll resource handling by Bertho Stultiens.
+
+Mon May 24 15:02:18 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * misc/shell.c: Release the Win16Lock before calling WinExec.
+
+       * scheduler/thread.c, include/process.h, loader/ne/module.c, loader/task.c:
+       Removed process argument to PROCESS_CallUserSignalProc.
+
+       * scheduler/process.c:
+       Moved remaining initialisations to the new process context.
+       Shuffled things around a bit in PROCESS_Start to avoid deadlocks.
+       Changed PROCESS_CallUserSignalProc to avoid accessing another process
+       address space.
+
+       * include/server.h, server/process.c, server/trace.c, tools/make_requests:
+       Added support for dumping variable-size data of server replies.
+       Added cmd_line and cmd_show in new_process request.
+
+       * if1632/mmsystem.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       fixed builtin mmsystem.dll init sequence
+
+       * multimedia/Attic/init.c, multimedia/Makefile.in:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       removed obsoleted init.c source file
+
+       * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       removed unnecessary MCI drivers entry point
+       added undocumented mmsystem functions
+
+       * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       moved to new trace interface
+       now calling time init function from mmsystem and/or winmm entry point
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       included DLL init sequence (from obsoleted init.c)
+       fixed builtin mmsystem.dll init sequence
+       fixed PlaySound when used with an asynchronous audio driver
+       fixed midiStream functions for Stop/Pause/Restart functions
+       fixed error handling in waveOutOpen with QUERY_FORMAT flag
+
+       * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       included midi init sequence (from obsoleted init.c)
+       moved to new trace interface
+       simplified code with using new configuration constant (HAVE_OSS_MIDI)
+       fixed erroneous warnings
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       included mci init sequence (from obsoleted init.c)
+       moved to new trace interface
+
+       * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       output: better internal thread interface (orthogonalization of states and events)
+       output: removed use of DSP_IOCTL_GETOSPACE
+       output: fixed latency in reset messages handling
+       output: replaced some polling mechanisms with blocking ones
+       output: fixed get/set volume functions
+
+       * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       moved to the new debug interface
+       fixed bugs in pause/play/stop functions
+       fixed signature of driver entry point
+
+       * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       moved to the new debug interface
+       fixed bugs in pause/play functions
+       fixed signature of driver entry point
+
+       * multimedia/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated traces.
+
+       * windows/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Remove extraneous winuser16.h.
+
+       * graphics/x11drv/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Changed printf into TRACE.
+
+       * debugger/expr.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed a few typos.
+
+       * debugger/stack.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Check when backtracking the stack if frames are correct (readable).
+
+       * windows/event.c, include/message.h, include/winsock.h, loader/main.c, loader/task.c, misc/winsock.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved WINSOCK network IO event handling to special thread.
+       Removed EVENT_WaitNetEvent, introduced a global scheduler event.
+
+       * miscemu/main.c, scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Wait until child initialized before returning from PROCESS_Create.
+
+       * relay32/kernel32.spec, win32/kernel32.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Use register functions with arguments for LogApiThk...
+
+       * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Cleaned up LISTVIEW_KeyDown by using LISTVIEW_GetNextItem.  Removed unused
+       variable in LISTVIEW_GetNextItem.
+
+Sun May 23 20:02:05 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/dosexe.h, include/module.h, include/pe_image.h, include/process.h, include/thread.h, loader/dos/module.c, loader/module.c, loader/ne/module.c, loader/pe_image.c, relay32/kernel32.spec, scheduler/process.c, scheduler/thread.c, win32/except.c, dlls/ntdll/exception.c:
+       Use the new debug functions to send debug events at appropriate places.
+       Pass the process creation flags to PROCESS_Create.
+
+       * scheduler/Makefile.in, scheduler/client.c, scheduler/debugger.c, win32/newfns.c, win32/process.c, include/winbase.h, misc/lstr.c:
+       Implemented the Win32 debug API functions.
+
+       * include/server.h, include/server/request.h, server/Makefile.in, server/debugger.c, server/object.h, server/process.c, server/thread.c, server/thread.h, server/trace.c:
+       Added debug events support.
+
+----------------------------------------------------------------
+Sun May 23 10:25:26 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * memory/global.c, memory/heap.c, memory/ldt.c, memory/selector.c, memory/string.c, memory/virtual.c, objects/brush.c, objects/color.c, objects/dc.c, objects/dib.c, objects/enhmetafile.c, objects/gdiobj.c, objects/metafile.c, objects/palette.c, objects/pen.c, objects/region.c, objects/text.c, scheduler/handle.c, scheduler/services.c, scheduler/synchro.c, scheduler/sysdeps.c, scheduler/syslevel.c, scheduler/thread.c, win32/code_page.c, win32/console.c, win32/error.c, win32/file.c, win32/init.c, win32/process.c, win32/struct32.c, win32/thread.c, win32/time.c, dlls/ntdll/file.c, dlls/ntdll/nt.c, dlls/ntdll/om.c, dlls/ntdll/reg.c, dlls/ntdll/rtl.c, dlls/ntdll/rtlstr.c, dlls/ntdll/sec.c, dlls/ntdll/sync.c, dlls/ntdll/time.c, memory/atom.c:
+       Converted to the new debug interface, using script written by Patrik
+       Stridvall.
+
+       * scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: dwFlags must describe target process in UserSignalProc.
+
+       * dlls/shell32/shellord.c: Ian Schmidt <irsman@iag.net>
+       Added missing WINAPI to SHELL32_654 stub.  Fixes crash in Win98
+       Explorer.
+
+       * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       LISTVIEW_KeyDown: Invalidate the listview window only when the
+       selected item changes.
+
+       * if1632/kernel.spec, misc/wsprintf.c, relay32/kernel32.spec, win32/kernel32.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added _DebugOutput (KERNEL.328), LogApiThk (KERNEL.423), LogApiThkLSF
+       (KERNEL32.42), LogApiThkSL (KERNEL32.44), LogCBThkSL (KERNEL32.47),
+       and SSConfirmSmallStack (KERNEL.704).
+
+       * if1632/display.spec, windows/display.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fix typo (wrong DISPLAY.CheckCursor ordinal).
+       Superfluous FIXME converted to TRACE in CheckCursor.
+
+       * relay32/relay386.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: syslevel relay check was too strict.
+
+       * server/mapping.c: Marcus Meissner <marcus@jet.franken.de>
+       Do not use pagesize aligned size_low to grow mapped file, but original
+       size_low. (fixes Heises Index Register)
+
+Sat May 22 19:22:26 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
+       - added some more debug output
+       - corrected a slight bug in DGA DirectDraw creation
+
+       * windows/win.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a major memory leak in the window management code.
+
+       * windows/winpos.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       In SetWindowPos if changing Z order and child window not yet in its
+       parent list, do not link it in WINPOS_ShowIconTitle, check for retval
+       of WIN_FindWndPtr.
+
+       * graphics/x11drv/dib.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Disable passing device context to X11DRV_DIB_BuildColorMap when RGB
+       colormap is used.
+
+       * debugger/dbg.y: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Don't freeze other thread while it may hold the X critical section.
+
+       * include/display.h, loader/main.c, windows/display.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added UserRepaintDisable16().
+
+       * windows/dinput.c, windows/message.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed EVENT_WaitNetEvent() calls.
+
+       * windows/input.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added IsUserIdle16().
+
+       * include/ttydrv.h, windows/ttydrv/event.c, windows/ttydrv/init.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Adapted to EVENT_ driver changes.
+
+       * loader/task.c, scheduler/synchro.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Adapted to event synchronization changes.
+
+       * include/message.h, include/x11drv.h, windows/event.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/wnd.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Moved X input event handling out of EVENT_WaitNetEvent and into
+       service thread callback; moved EVENT_WaitNetEvent out of the EVENT_
+       driver.  Changed winContext to hold HWND instead of WND *.
+
+       * windows/winpos.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Don't change Z-order of child windows when activating.
+
+       * dlls/winspool/info.c, include/wine/wingdi16.h, include/winerror.h, include/winspool.h, relay32/winspool.spec:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Implemented AddPrinterA, AddPrinterDriverA and GetPrinterDriverDirectory
+       Moved some 16bit GDI function declarations from winspool.h -> wingdi16.h
+
+       * configure, configure.in, include/acconfig.h, include/config.h.in:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Create a new configuration manifest constant HAVE_OSS_MIDI.
+
+       * loader/dos/module.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed silly EINTR bug with starting dosmod.
+
+       * graphics/ddraw.c: Kevin Holbrook <kwh@neosoft.com>
+       Should compare to X11 constant "None" since a colormap is an X
+       Resource ID and not a pointer.
+
+       * controls/listbox.c: Paul Quinn <paulq@corel.ca>
+       Stop a listbox bug that causes a div by zero when the item height
+       is zero. Doesn't solve the root of the problem though.
+
+       * dlls/shell32/shell32_Pt.rc:
+       Andre Malafaya Baptista <Malafaya@milenio3.pt>
+       About dialog translated to Portuguese.
+
+       * if1632/thunk.c: James Juran <jrj120@psu.edu>
+       task.h was included twice.  Removing one fixed a sig11 in gcc-2.7.2.3.
+
+       * objects/cursoricon.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Check if dc has been created before using it.
+
+       * graphics/escape.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Add a few more 32->16 Escape conversions.
+
+       * relay32/relay386.c, if1632/relay.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Check for syslevel violations while relay debugging.
+
+       * if1632/kernel.spec, include/syslevel.h, include/thread.h, scheduler/syslevel.c, windows/win.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Improved syslevel handling, store currently held syslevels in thread
+       database, WIN_CritSection converted to syslevel.
+
+       * include/windows.h: Joshua Thielen <thielen@netperson.net>
+       Added mmsystem.h include.
+
+       * loader/main.c, loader/task.c, scheduler/process.c, windows/user.c, if1632/kernel.spec, include/user.h, include/wine/winbase16.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added ExitKernel16 (replacing USER_ExitWindows), ExitProcess16, and
+       MapProcessHandle; stub for BUNNY_351.
+
+       * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Handle proc == NULL in THUNK_SetDCHook correctly.
+
+       * files/profile.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Added support for the undocumented combination
+       GetPrivateProfileStringA(section == NULL, entry == NULL, ...
+
+       * dlls/comctl32/header.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Cleaner null pointer check in HEADER_InsertItemA and HEADER_InsertItemW.
+
+       * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Implemented GetNextItem for the Listview control.
+
+       * scheduler/services.c: Ove Kaaven <ovek@arcticnet.no>
+       Expire timers on expiry time too, not just after.
+
+       * include/wine/obj_base.h, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c, multimedia/dplay.c, multimedia/dsound.c, ole/antimoniker.c, ole/bindctx.c, ole/compositemoniker.c, ole/datacache.c, ole/defaulthandler.c, ole/filemoniker.c, ole/hglobalstream.c, ole/ifs.c, ole/itemmoniker.c, ole/memlockbytes.c, ole/moniker.c, ole/olefont.c, ole/oleobj.c, ole/stg_stream.c, ole/storage32.c, windows/dinput.c, dlls/avifil32/avifile.c, dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, dlls/shell32/enumidlist.c, dlls/shell32/folders.c, dlls/shell32/regstream.c, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, graphics/d3ddevices.c:
+       Paul Quinn <paulq@corel.ca>
+       Microsoft com vtable compatibility workaround for g++.  Basically adds
+       an optional 8 bytes padding to COM objects where the RTTI would be.
+
+       * include/sysmetrics.h, misc/shell.c, objects/bitmap.c, objects/cursoricon.c, windows/dce.c, windows/defwnd.c, windows/dialog.c, windows/dinput.c, windows/input.c, windows/mdi.c, windows/message.c, windows/nonclient.c, windows/scroll.c, windows/sysmetrics.c, windows/win.c, windows/winpos.c, controls/button.c, controls/combo.c, controls/icontitle.c, controls/menu.c, controls/scroll.c, dlls/commdlg/filedlg.c, dlls/commdlg/finddlg.c, dlls/commdlg/fontdlg.c, dlls/commdlg/printdlg.c, dlls/shell32/iconcache.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Replaced all occurences of SYSMETRICS_xx and sysMetrics[SM_xx] by
+       GetSystemMetrics(SM_xx), removed no longer needed includes of
+       sysmetrics.h.
+
+       * msdos/int16.c: Ove Kaaven <ovek@arcticnet.no>
+       Added INT_Int16AddChar.
+
+       * loader/resource.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Bugfix: Prevent null-pointer dereference in TRACE argument list in
+       RES_FindResource
+
+       * loader/elfdll.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Fixed wrong NE module registration so that resources work.
+
+       * if1632/thunk.c, tools/build.c, win32/kernel32.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Set %ebx to point to real 16-bit stack in CBClientThunkSL.
+       Pass %esi back-and-forth in CBClientThunkSL(Ex).
+       Copy modified buffers back after return from FT_Thunk.
+       Fix broken recognition of LS thunklets.
+
+       * dlls/comctl32/comctl32undoc.c, dlls/comctl32/rebar.c, dlls/comctl32/toolbar.c, dlls/comctl32/updown.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Removed use of win.h, sysmetrics.h and associated WINE USER internal
+       variables. Added missing infoPtr->Buddy = hwndBud; in updown.c
+
+       * dlls/comctl32/Attic/propsheet.h, dlls/comctl32/comctl32.h, dlls/comctl32/propsheet.c, dlls/comctl32/rsrc.rc, dlls/comctl32/toolbar.c, include/commctrl.h, include/toolbar.h:
+       Eric Kohl <ekohl@abo.rhein-zeitung.de>
+       Toolbar customization dialog (take one).
+
+       * windows/win.c: Francis Beaudet <francis@macadamian.com>
+       Fixed GetTopWindow so it will correctly handle the NULL parameter.
+
+       * include/process.h, loader/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fix swapped FreeLibary return values. Handle FreeLibrary( 0 ) better.
+       Fix DLL_PROCESS_DETACH call sequence bugs resulting from nested
+       FreeLibrary calls.
+
+       * if1632/mmsystem.spec, multimedia/mmsystem.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Fixed specs for mixerGetDevCaps16/mixerGetID16, fixed mixGetDevCaps16.
+
+       * include/miscemu.h, msdos/devices.c, msdos/dosmem.c, msdos/int21.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Changed global DOS_LOL into function DOSMEM_LOL() in order to operate
+       on the correct address space. Added DOSMEM_MovePointers() that
+       relocates selectors when the DOS address space changes (i.e. when
+       dosmod is spawned, particularly from Win16 apps that uses DPMI to
+       execute real-mode code). More complete DOS device implementation.
+
+       * include/dosexe.h, loader/dos/dosvm.c, loader/dos/module.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Added MZ_Current() (returns current LPDOSTASK) and DOSVM_Wait()
+       (DOSVM idle message loop), and fields hConInput and hConOutput.
+
+       * objects/bitmap.c: Pascal Lessard <pascal@macadamian.com>
+       Add some null checking in the Get/SetBitmapBits functions.
+
+       * misc/crtdll.c, relay32/crtdll.spec:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added init function for CRTDLL, allocate stdio/stderr/stdout on
+       DLL_PROCESS_ATTACH, increase buffer for vfprintf() (Win95 arp.exe
+       needs 1.3KB).
+
+       * debugger/memory.c: Marcus Meissner <marcus@jet.franken.de>
+       Added support for FreeBSD 3.0 to DEBUG_checkmap_bad().
+
+       * misc/winsock.c: James Juran <jrj120@psu.edu>
+       Print a more effective (and visible) error message when an application
+       can't create a socket with type == SOCK_RAW.
+
+       * include/mmreg.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Some more defines for multimedia.
+
+       * msdos/vxd.c, win32/device.c:
+       Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
+       Some stubs for pccard vxd to debug the native shell32.
+
+       * multimedia/time.c: Ove Kaaven <ovek@arcticnet.no>
+       Use service thread for "true" multimedia timers.
+       Removed implementation of fake multimedia timers.
+       Set minimum resolution to 10 ms (the timing resolution of the Linux
+       kernel). Fixed a couple of flaws.
+
+       * misc/spy.c: Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
+       Implemented printing out of some structures.
+
+Thu May 20 16:40:23 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/select.c, server/socket.c:
+       Set only the client socket in non-blocking mode instead of all fds;
+       should avoid problems with stdio handles.
+
+Mon May 17 16:20:53 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/debugdefs.h, include/gdi.h, include/psdrv.h, include/ttydrv.h, include/wine/wingdi16.h, include/wingdi.h, include/winspool.h, misc/Attic/spooler.c, misc/Makefile.in, misc/printdrv.c, objects/dc.c, dlls/winspool/.cvsignore, dlls/winspool/Makefile.in, dlls/winspool/info.c, graphics/driver.c, graphics/enhmetafiledrv/init.c, graphics/env.c, graphics/escape.c, graphics/metafiledrv/init.c, graphics/psdrv/driver.c, graphics/psdrv/init.c, graphics/psdrv/ppd.c, graphics/psdrv/ps.c, graphics/ttydrv/init.c, graphics/win16drv/init.c, graphics/x11drv/init.c, Makefile.in, configure, configure.in:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Implement DocumentProperties, DeviceCapabilities, beginnings of
+       Open/Get/ClosePrinter.  Additions to PSDRV_DeviceCapabilities.
+       Split off WINSPOOL into its own directory.
+       Several functions added to DC_Funcs.
+       Based largely on a patch by Pascal Lessard <pascal@macadamian.com>
+
+       * loader/loadorder.c: Marcus Meissner <marcus@jet.franken.de>
+       glide2x loadorder is "so,native".
+
+       * msdos/dpmi.c: Ove Kaaven <ovek@arcticnet.no>
+       Improved shortcuts - follows jumps in trying to avoid switching to
+       real mode unnecessarily.
+
+       * documentation/no-windows: Ove Kaaven <ovek@arcticnet.no>
+       Updated and improved instructions.
+
+       * debugger/expr.c: Ove Kaaven <ovek@arcticnet.no>
+       Made "Wine-dbg>set *seg:off = val" work (previously only
+       "Wine-dbg>set *off = val" worked).
+
+       * multimedia/mcimidi.c, multimedia/mciwave.c:
+       Jukka Kangas <jtkangas@nic.fi>
+       When opening the file we don't need MMIO_EXCLUSIVE
+       rights. MMIO_DENYWRITE should be sufficient.
+
+       * dlls/shell32/shellpath.c:
+       Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
+       Prevent crash in stub of SheGetDirW.
+
+       * dlls/shell32/shlmenu.c:
+       Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
+       Further implementation of the FileMenu.
+
+       * windows/mdi.c: Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
+       Set the default menu item of the window menu
+
+       * wine.ini: James Juran <jrj120@psu.edu>
+       Changed serial ports in wine.ini to /dev/ttySX from /dev/cuaX in
+       accordance with Linux 2.2 Changes file.
+
+       * if1632/kernel.spec, loader/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Release Win16Lock when calling LoadLibrary32 from 16-bit code.
+
+       * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed THUNK_SetDCHook when using native USER.
+
+       * win32/kernel32.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: FT_PrologPrime was broken due to relay changes.
+
+       * misc/network.c, relay32/mpr.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Some stubs added.
+
+       * windows/hook.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Suspend window locks before calling hook procedure.
+
+       * windows/dialog.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed window refcount handling in GetNextDlgGroupItem.
+
+       * controls/button.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed superfluous WIN_ReleaseWndPtr.
+
+       * graphics/ddraw.c: Marcus Meissner <marcus@mud.de>
+       Xlib_IDirectDrawSurface4Impl_Flip should show 'flipto' surface, not
+       previous one. (reported by Ove)
+
+Sun May 16 17:11:58 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/winbase.h, include/winnt.h:
+       Added a few missing debug event definitions.
+
+       * server/console.c, server/file.c, server/pipe.c, server/thread.c, server/thread.h:
+       Adapted to new select interface.
+       Fixed bug in *_signaled routines that could cause busy-waiting in the
+       select loop.
+
+       * server/object.c, server/object.h, server/request.c, server/select.c, server/socket.c:
+       Changed select interface, separated timeouts from file descriptors.
+
+       * server/handle.c, server/handle.h, server/process.c, server/process.h:
+       Moved process structure definition to process.h.
+       Added suspend/resume_process.
+       Moved handle table back into the process structure.
+
+       * scheduler/client.c, server/trace.c, include/server.h:
+       Added TEB in init_thread request.
+
+Sat May 15 10:52:56 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * miscemu/instr.c:
+       Tried to add an error message when crashing on a selector load because
+       of missing LDT sharing between threads (untested).
+
+       * scheduler/event.c, scheduler/mutex.c, scheduler/semaphore.c, server/Makefile.in, server/change.c, server/console.c, server/device.c, server/event.c, server/file.c, server/handle.c, server/handle.h, server/main.c, server/mapping.c, server/mutex.c, server/object.c, server/object.h, server/pipe.c, server/process.c, server/process.h, server/request.c, server/select.c, server/semaphore.c, server/snapshot.c, server/socket.c, server/thread.c, server/thread.h, server/trace.c, tools/make_requests, include/server.h, include/server/Attic/object.h, include/server/Attic/process.h, include/server/Attic/thread.h, include/server/request.h, memory/virtual.c:
+       Server reorganization:
+       - moved request handlers to the specific C files
+       - moved handle management to handle.c
+       - moved server private includes to server/ instead of include/server/
+
+       * Make.rules.in: Get include files from the current directory first.
+
+Fri May 14 18:39:37 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/commdlg/colordlg.c, dlls/commdlg/filedlg.c, dlls/commdlg/finddlg.c, dlls/commdlg/fontdlg.c, dlls/commdlg/printdlg.c, dlls/shell32/shell32_main.c, graphics/psdrv/driver.c, include/win.h, windows/msgbox.c, windows/queue.c, windows/win.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Replaced WIN_GetWindowInstance by GetWindowLongA(GWL_HINSTANCE),
+       removed unnecessary win.h includes, added syslevel.h to queue.c.
+
+       * controls/combo.c: Francois Boisvert <francois@macadamian.com>
+       Changed CBGetDroppedControlRect to be compliant with Windows API.
+
+       * include/wine/exception.h, win32/except.c:
+       Fixed a few bugs, and improved the exception macros (based on
+       suggestions by Sergei Turchanov).
+
+       * dlls/ver/ver16.c, dlls/version/info.c, dlls/version/install.c, dlls/version/resource.c, ipc/dde_atom.c, ipc/dde_atom_test.c, ipc/shm_block.c, ipc/shm_fragment.c, ipc/shm_fragment_test.c, ipc/shm_main_blk.c, ipc/shm_semaph.c, ipc/shm_semaph_test.c, ipc/wine_test_stub.c, relay32/snoop.c, relay32/utthunk.c, dlls/advapi32/advapi.c, dlls/advapi32/crypt.c, dlls/advapi32/eventlog.c, dlls/advapi32/service.c, dlls/imagehlp/access.c, dlls/imagehlp/debug.c, dlls/imagehlp/imagehlp_main.c, dlls/imagehlp/integrity.c, dlls/imagehlp/internal.c, dlls/imagehlp/modify.c, dlls/imagehlp/symbol.c, dlls/msacm/msacm_main.c, dlls/msacm32/builtin.c, dlls/msacm32/driver.c, dlls/msacm32/filter.c, dlls/msacm32/format.c, dlls/msacm32/internal.c, dlls/msacm32/msacm32_main.c, dlls/msacm32/stream.c, dlls/psapi/psapi_main.c, dlls/rasapi32/rasapi.c, dlls/tapi32/assisted.c, dlls/tapi32/phone.c, console/generic.c, console/ncurses.c, console/xterm.c, controls/combo.c, controls/listbox.c, controls/menu.c, controls/scroll.c, controls/static.c, controls/uitools.c:
+       Converted to the new debug interface, using script written by Patrik
+       Stridvall.
+
+       * tools/make_X11wrappers, tsx11/ts_xf86dga.c, tsx11/ts_xf86vmode.c, tsx11/ts_xlib.c, tsx11/ts_xpm.c, tsx11/ts_xresource.c, tsx11/ts_xshm.c, tsx11/ts_xutil.c:
+       Converted to the new debug interface.
+
+       * windows/painting.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed invalid window refcount handling in RDW_Paint().
+
+       * windows/message.c: Noel Borthwick <noel@macadamian.com>
+       Fix a deadlock with the system message queue by ensuring the system message
+       queue is unlocked while the actual message is being processed.
+
+       * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
+       Check if in depth-conversion mode before returning an error message
+       in IDirectDrawPaletteImpl_GetEntries.
+
+Thu May 13 18:53:05 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * documentation/status/direct3D, graphics/d3d_private.h, graphics/d3dcommon.c, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c, graphics/ddraw_private.h, include/wine_gl.h:
+       Lionel Ulmer <ulmer@directprovider.net>
+       Replaced all the Mesa specific code by GLX code. Should work now on
+       any OpenGL implementation.
+
+       * windows/x11drv/keyboard.c: <TTarrant@Etnoteam.It>
+       Added Italian keyboard support.
+
+       * graphics/enhmetafiledrv/graphics.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Fixed a couple of memcpy errors.
+
+       * graphics/psdrv/driver.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Small fix to help native win95 PrintDlg on the way.
+
+       * dlls/winaspi/winaspi16.c, if1632/winaspi.spec, include/aspi.h:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Implemented InsertInASPIChain and fixed minor things.
+
+       * windows/x11drv/mouse.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Fixed quite ill window locking code.
+
+       * windows/winpos.c: Francis Beaudet <francis@macadamian.com>
+       Fixed an infinite loop in ChildWindowFromPointEx.
+
+       * controls/menu.c:
+       Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
+       - prevent crash when GetMenuDefaultItem is called on empty menu
+       - set default item on system menu
+
+       * loader/ne/module.c, memory/selector.c, relay32/ntdll.spec, win32/kernel32.c, win32/ordinals.c, dlls/ntdll/exception.c, dlls/ntdll/rtl.c, include/stackframe.h:
+       Adapted for new register functions support (ESP_reg in register
+       functions now points after the arguments).
+
+       * relay32/builtin32.c, relay32/kernel32.spec, relay32/relay386.c, relay32/snoop.c, tools/build.c:
+       Win32 register functions can now have arguments.
+       Simplified relay debugging for register functions.
+
+       * relay32/kernel32.spec, win32/device.c:
+       VxDCall functions do not need to be 'register'.
+
+Wed May 12 16:10:53 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * relay32/builtin32.c: Fixed bug I introduced in relay debugging.
+
+       * dlls/ntdll/exception.c, if1632/thunk.c, include/Attic/except.h, include/wine/exception.h, win32/except.c:
+       Added macros and definitions for using exception inside Wine or
+       Winelib code.
+
+       * include/Attic/except.h, include/ntddk.h, include/winnt.h, misc/crtdll.c, win32/init.c:
+       Moved some exception definitions to winnt.h and ntddk.h.
+
+       * msdos/devices.c: Marcus Meissner <marcus@jet.franken.de>
+       Added missing WINAPI for the callback procs.
+
+       * include/sig_context.h: Added ERROR_sig.
+
+       * ole/stg_bigblockfile.c: Francis Beaudet <francis@macadamian.com>
+       Bug fix.
+
+       * misc/winsock.c, include/winsock.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       WSOCK32/WINSOCK uses SetLastError() to keep its own WSALastErrors,
+       replaced all pwsi->err references.
+
+       * loader/pe_image.c: Changed some error handling a bit.
+
+       * windows/win.c: Ove Kaaven <ovek@arcticnet.no>
+       Cleaner Suspend/RestoreWndsLock, which should fix some slowness.
+
+       * relay32/kernel32.spec, relay32/ntdll.spec:
+       Added RtlUnwind in ntdll, and made kernel32 spec entry a forward to
+       the ntdll one.
+
+       * relay32/builtin32.c, tools/build-spec.txt, tools/build.c, include/builtin32.h:
+       Added import declaration for Win32 built-ins.
+
+Mon May 10 14:44:48 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * tools/build-spec.txt, tools/build.c, include/builtin32.h, relay32/builtin32.c:
+       Added support for forwarded ordinals in built-in dlls.
+
+Sun May  9 16:15:28 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * win32/console.c:
+       Fixed request size for alloc_console and free_console.
+
+       * relay32/kernel32.spec, relay32/ntdll.spec, win32/except.c, dlls/ntdll/Makefile.in, dlls/ntdll/exception.c, dlls/ntdll/rtl.c, include/Attic/except.h, include/debugdefs.h, include/ntddk.h, include/thread.h, include/winbase.h, include/winnt.h:
+       Improved exception handling.
+       Based on the work of Sergey Turchanov <turchanov@usa.net>.
+
+       * loader/module.c:
+       Use OpenFile() to test for file existence, so that the path gets
+       searched.
+
+       * server/select.c: Ove Kaaven <ovek@arcticnet.no>
+       Restart interrupted select() (happens with -pg).
+
+       * debugger/memory.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed off-by-one bug in memory access check.
+
+       * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
+       More debug output for RegQueryInfoKey.
+
+       * debugger/stack.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed a couple of bugs (silent backtrace not totally silent, crashes
+       when the stack is corrupted or similar).
+
+----------------------------------------------------------------
+Sat May  8 18:39:05 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * tools/wineconf.libs/autoconf.eng, tools/wineconf.libs/autoconf.tcl, tools/wineconf.libs/browsers.eng, tools/wineconf.libs/dirbrowser.tcl, tools/wineconf.libs/general.eng, tools/wineconf.libs/getfilename.tcl, tools/wineconf.libs/message.tcl, tools/wineconf.libs/message2.tcl, tools/wineconf.libs/saveRC.tcl, tools/wineconf.libs/wine-half.gif, tools/wineconf.libs/wineconf.eng, tools/wineconf.libs/wineconf.tcl, tools/wineconf.libs/wineconf1.tcl, tools/wineconf.tcl:
+       Jean-Louis Thirot <thirot@univ-brest.fr>
+       Added graphical configuration tool wineconf.tcl.
+
+       * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
+       Ignore ESC[%dc reports generated by 8bit control codes.
+       Open console even if we already have one in the process.
+
+       * files/profile.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed off by 1 error in section code (did not return len-2 on buffer
+       overflow in some cases, but len-1).
+
+       * dlls/comctl32/propsheet.c: Marcus Meissner <marcus@jet.franken.de>
+       Fixed warning.
+
+       * graphics/x11drv/palette.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Fixed palette handling for true/high-color X11.
+
+       * loader/ne/module.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Fixed extension handling in LoadLibrary16.
+
+       * windows/dce.c, windows/painting.c, windows/win.c, windows/winpos.c, windows/x11drv/event.c, include/win.h, objects/region.c:
+       Alex Korobka <alex@aikea.ams.sunysb.edu>
+       Rearranged PAINT_RedrawWindow() so that it first recursively updates
+       invalid regions and only then starts sending out messages. This should
+       help with reentrancy during message processing and now it needs just
+       one (or none) scratch region for all there is to do. Also, small fixes
+       for SetWindowPos().
+
+       * configure, configure.in: Added check for missing __i386__ definition.
+
+       * include/config.h.in, scheduler/client.c, server/socket.c, server/trace.c, configure, configure.in, tools/wrc/parser.y, ole/datacache.c, ole/defaulthandler.c, ole/hglobalstream.c, ole/memlockbytes.c, scheduler/sysdeps.c, tools/build.c, misc/wsprintf.c, miscemu/instr.c, msdos/ioports.c, if1632/snoop.c, include/server.h, include/stackframe.h, ipc/bit_array.c, controls/edit.c, controls/menu.c, debugger/dbg.y, graphics/x11drv/xfont.c:
+       Patrik Stridvall <ps@leissner.se>
+       ANSI C fixes.
+
+       * dlls/comctl32/propsheet.c: Marcus Meissner <marcus@jet.franken.de>
+       Pass PROPSHEETPAGE to propertypage dialog as lParam.
+
+       * misc/winsock.c, multimedia/dsound.c, objects/brush.c, objects/enhmetafile.c, ipc/dde_atom.c, ipc/generic_hash.c, ipc/shm_block.c, ipc/shm_main_blk.c, ipc/shm_semaph.c, loader/dos/dosmod.c, loader/signal.c, memory/ldt.c, graphics/psdrv/init.c, include/dplay.h, include/dplobby.h, include/heap.h, include/metafile.h, include/mmsystem.h, include/psdrv.h, include/shellapi.h, include/sig_context.h, include/winsock.h, dlls/ntdll/time.c, dlls/shell32/folders.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, graphics/ddraw.c, graphics/ddraw_private.h, graphics/dispdib.c, dlls/comctl32/pager.c, dlls/comctl32/rebar.c, dlls/comctl32/status.c, dlls/comctl32/toolbar.c, dlls/comctl32/tooltips.c, dlls/comctl32/treeview.c, dlls/commdlg/fontdlg.c, debugger/msc.c, dlls/comctl32/comboex.c, dlls/comctl32/header.c, dlls/comctl32/hotkey.c, dlls/comctl32/listview.c:
+       Patrik Stridvall <ps@leissner.se>
+       ANSI C fixes.
+
+       * windows/caret.c, include/wine/wingdi16.h, include/wine/winuser16.h, misc/printdrv.c, objects/font.c, objects/linedda.c, objects/region.c, graphics/win16drv/font.c, include/gdi.h, include/windef.h, include/wingdi.h, include/winuser.h, graphics/psdrv/font.c:
+       Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Split off wingdi16.h from wingdi.h.  Add many more #defines/typedefs
+       to bring wingdi.h almost upto a complete NT4.0 interface.
+       Fix return value of SetRectRgn().
+
+       * windows/display.c, windows/focus.c, windows/nonclient.c, windows/ttydrv/mouse.c, windows/win.c, windows/winpos.c, include/ttydrv.h, include/winpos.h:
+       Michael Veksler <mveksler@techunix.technion.ac.il>
+       Removed #include "wine/winuser16.h" and use "struct tag????" instead.
+
+       * debugger/stack.c: Ove Kaaven <ovek@arcticnet.no>
+       Improved Wine debugger backtrace. New features:
+       - Displays ebp, in case you want to check stackframes manually
+       - Detects far calls even when windows apps don't mark them
+       - Tracks CallFrom16/CallTo16 relaying (thunking)
+
+       * loader/elfdll.c: Ulrich Czekalla <ulrichc@corel.ca>
+       Bugfix: get_sobasename was off by one pointer increment.
+
+       * multimedia/init.c: Kevin Holbrook <kwh@neosoft.com>
+       Fixed implicit type warning.
+
+       * controls/listbox.c: Gerard Patel <g.patel@wanadoo.fr>
+       Values returned from PtInRect and LB_ITEMFROMPOINT are reversed.
+
+       * ole/datacache.c, ole/defaulthandler.c, ole/ole2.c, ole/ole2stubs.c, ole/oleobj.c:
+       Francis Beaudet <francis@macadamian.com>
+       Second part of the OLE datacache implementation.
+
+       * msdos/Makefile.in, msdos/devices.c, msdos/dosmem.c, msdos/int21.c, include/dosexe.h, include/miscemu.h, include/msdos.h:
+       Ove Kaaven <ovek@arcticnet.no>
+       Moved DOS List of Lists initialization, and added the beginnings of
+       the DOS device structures.
+
+       * programs/regapi/regapi.c, include/winreg.h, misc/registry.c:
+       Noomen Hamza <noomen@macadamian.com>
+       Bug fixes.
+
+       * ole/hglobalstream.c, relay32/ole32.spec:
+       Thuy Nguyen <thuy@macadamian.com>
+       Implemented GetHGlobalFromStream.
+
+       * include/thread.h, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Call THREAD_FreeTHDB as service thread callback.
+
+       * include/message.h, loader/task.c, windows/timer.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Removed TIMER_SwitchQueue.
+
+       * debugger/memory.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Format output in DEBUG_ExamineMemory for "d" and "x" not to exceed 80
+       chars.
+
+       * loader/signal.c: Marcus Meissner <marcus@jet.franken.de>
+       Stop winelib programs on fault instead of endless faultlooping.
+
+       * Makefile.in: James Juran <jrj120@psu.edu>
+       Run ldconfig in make install if using --enable-dll.
+       Cleaned up uninstall_lib as well.
+
+       * ole/storage.c, ole/storage32.c, ole/storage32.h, relay32/ole32.spec, ole/stg_bigblockfile.c, include/wine/obj_storage.h, ole/memlockbytes.c:
+       Thuy Nguyen <thuy@macadamian.com>
+       Implementation of IStorage supported by an implementation of
+       ILockBytes on top of an HGLOBAL.
+
+       * files/profile.c, relay32/kernel32.spec:
+       Marcus Meissner <marcus@jet.franken.de>
+       Return the correct value from GetPrivateProfileSectionA.
+       Copy/convert back the buffer in GetPrivateProfileSectionW.
+       Replace some output pointers str/wstr->ptr in kernel32.spec.
+
+       * loader/task.c, scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Some initialization sequence bugfixes:
+       - Initialize process crst for 16-bit processes.
+       - Don't crash due to uninitialized stack frames in WineLib.
+       - Map system DLLs before calling UserSignalProc.
+       - Signal USIG_PROCESS_CREATE only *after* the env_db is filled.
+
+       * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Call Callout routines directly when using builtin USER.
+
+       * loader/pe_image.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: all PE modules were marked 'internal'.
+
+       * include/dce.h, objects/dc.c, windows/dce.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Check for busy DCE moved to DCHook16().
+
+       * include/win.h, loader/main.c, windows/win.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Initialize WIN_CritSection earlier.
+
+       * dlls/comctl32/trackbar.c, include/trackbar.h:
+       Luc Tourangeau <luc@macadamian.com>
+       Removed the timer that was used to queue TRACKBAR_Refresh calls.
+       Removed all direct calls to TRACKBAR_Refresh (except from within the
+       WM_PAINT handling section) and replaced them by calls to
+       InvalidateRect.
+       Fixed a bug in the TRACKBAR_SetPos function.
+       Fixed the behavior for different types of mouse input.
+
+       * dlls/comctl32/toolbar.c: Yuxi Zhang <yuxiz@corel.ca>
+       Implemented toolbar multirow button layout.
+
+       * dlls/comctl32/tooltips.c: Francois Boisvert <francois@macadamian.com>
+       Implementation of WM_GETTEXT and WM_GETTEXTLENGTH in tooltips.
+
+       * ole/ole2disp.c: Thuy Nguyen <thuy@macadamian.com>
+       Implemented OleTranslateColor.
+
+       * include/winuser.h, windows/input.c:
+       Francis Beaudet <francis@macadamian.com>
+       Changed the return value of GetKeyboardState and SetKeyboardState from
+       VOID to BOOL.
+
+       * controls/listbox.c: Francois Boisvert <francois@macadamian.com>
+       Prevented LISTBOX_RepaintItem from repainting a non visible item.
+
+       * relay32/builtin32.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed typo.
+
+       * windows/class.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Bugfix for TRACE in UnregisterClass.
+
+Wed May  5 13:20:50 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/Attic/propsheet.h: No longer necessary.
+
+Tue May  4 16:55:23 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * objects/dc.c, windows/dce.c, include/dce.h:
+       Francis Beaudet <francis@macadamian.com>
+       Check if DC is busy before deleting it.
+
+       * win32/newfns.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       GetMailslotInfo is supposed to check for pointer validity.
+
+       * server/select.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Possible crash in select_loop() fixed.
+
+       * include/services.h, loader/task.c, scheduler/services.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed various stupid bugs in services thread routines.
+       Added SERVICE_Exit routine to kill the services thread.
+
+       * misc/main.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Inverted class/channel in __(SET|GET)_DEBUGGING macros.
+
+       * windows/queue.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Correct implementation of GetWindowThreadProcessId().
+
+       * if1632/mmsystem.spec, multimedia/mmsystem.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added PlaySound16, sndPlaySound16.
+
+       * if1632/thunk.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixes winproc deadlock for win16.
+
+Mon May  3 09:44:57 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/queue.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed some deadlock(s) in message sending.
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       cleaned up debug channels to use default one (mmsys)
+       more conversions from mixerXXXW and mixerXXXX16 to mixerXXXXA
+       fixed callback bug in midiStream functions
+       fixed compilation bug with egcs
+       changed to the new debug channel interface
+
+       * multimedia/mmaux.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       small range fixes for OSS driver
+       changed to the new debug channel interface
+
+       * multimedia/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       first (working) shot at OSS mixer low level interface
+       changed to the new debug channel interface
+
+       * misc/network.c, relay32/mpr.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed off-by-one ordinals in MPR.
+       Added MPR_Alloc/ReAlloc/Free (MPR.22-24).
+
+       * loader/module.c, if1632/relay.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: release Win16Lock in WinExec16, CallProc[Ex]32W_16.
+
+       * loader/main.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Load system DLLs into WineLib applications.
+
+       * graphics/psdrv/ps.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Small update to the PostScript encoding vector.
+
+       * loader/module.c, loader/task.c: Bug fixes.
+
+Sun May  2 19:10:57 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * scheduler/process.c:
+       Moved a few more initialisations to the new process context.
+
+       * loader/task.c: Don't initialise the stacks for 32-bit processes.
+
+       * miscemu/main.c: Only check number of tasks after first message.
+       Use a 16-bit module for creating the initial task.
+
+       * include/authors.h, AUTHORS:
+       Updated authors list from the Changelog. Please let me know if you
+       have been left out.
+
+       * loader/task.c, scheduler/process.c:
+       Converted to the new debugging interface (done with the help of the
+       script written by Patrik Stridvall).
+       Some changes to the initialisation sequence for 32-bit processes.
+
+       * */*.c:
+       Converted to the new debugging interface (done with the help of the
+       script written by Patrik Stridvall).
+
+       * tools/make_debug, include/debugdefs.h, include/debugtools.h, misc/main.c:
+       Misc fixes and improvements.
+
+       * include/config.h.in, configure, configure.in:
+       Added check for -lmmap for OS/2.
+
+       * include/debugdefs.h, ole/hglobalstream.c, ole/stg_stream.c, ole/storage32.c:
+       Francis Beaudet <francis@macadamian.com>
+       Fixed a few bugs in the OLE storage implementation, added a new set of
+       trace statements for the OLE storage related methods and introduced a
+       new debug channel for the storage subsystem.
+
+       * multimedia/time.c, objects/dib.c, objects/palette.c, include/wine/winuser16.h, misc/spooler.c:
+       Michael Veksler <mveksler@techunix.technion.ac.il>
+       Removed redundant include of winbase.h from winuser16.h.
+       Moved types from winbase.h to winuser16.h .
+
+       * include/winuser.h: Juergen Schmied <juergen.schmied@metronet.de>
+       - default item handling
+       - small drawing fixes
+
+       * dlls/commdlg/cdlg_En.rc, dlls/commdlg/printdlg.c:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       More implementation of PrintDlgA.
+       Conversion of resource identifiers of Print32 window to comply to the
+       M$ numbering.
+
+       * server/thread.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Don't crash if queuing an APC on a thread that doesn't wait.
+
+       * windows/timer.c, windows/x11drv/event.c, include/message.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Use SERVICES callback to implement Windows timers.
+       Timer expiration handling removed from EVENT_WaitNetEvent loop.
+
+       * memory/heap.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
+       Call SetLastError in HeapCompact().
+
+       * include/winbase.h: Ove Kaaven <ovek@arcticnet.no>
+       Added prototype for TryEnterCriticalSection.
+
+       * include/commdlg.h: Klaas van Gend <klaas@vangend.demon.nl>
+       Make all structures packed and removal of some WINE_PACKED.
+
+       * controls/button.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Pushbuttons should only be rounded in Win31 look.
+
+       * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
+       - default item handling
+       - small drawing fixes
+
+       * windows/winpos.c: Noel Borthwick <noel@macadamian.com>
+       Fixed an unbalanced windows lock/unlock sequence in
+       WINPOS_ActivateOtherWindow.
+
+       * include/debugdefs.h: enhmetafile added
+
+       * relay32/.cvsignore, relay32/Makefile.in, relay32/builtin32.c, relay32/mcianim.spec, relay32/mciavi.spec, relay32/mcicda.spec, relay32/mciseq.spec, relay32/mciwave.spec, relay32/winmm.spec, include/multimedia.h, loader/main.c, multimedia/audio.c, multimedia/init.c, multimedia/mci.c, multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcicda.c, multimedia/mcimidi.c, multimedia/mcistring.c, multimedia/mciwave.c, multimedia/mmsystem.c, documentation/status/multimedia, if1632/mmsystem.spec, wine.ini:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       - got rid of all the internal MM tweaks to load builtin MCI
+         drivers. They are all seen as drivers, loaded as DLLs and standard
+         module loadorder is used to know which type to use (builtin vs
+         native).
+       - first full working implementation of mmThread??? functions (to
+         support gracefully native MCI drivers).
+       - support of mmShowMMCPLPropertySheet.
+       - fix of some heap validate bugs (thanks to Ulrich for reporting them).
+
+       * loader/module.c: Guy Albertelli <galberte@neo.lrun.com>
+       Fix CreateProcessA to implement correct actions on ambiguous command
+       line names (try longer and longer strings).
+
+       * Makefile.in, configure, configure.in, graphics/enhmetafiledrv/.cvsignore, graphics/enhmetafiledrv/Makefile.in, graphics/enhmetafiledrv/dc.c, graphics/enhmetafiledrv/graphics.c, graphics/enhmetafiledrv/init.c, graphics/enhmetafiledrv/mapping.c, graphics/enhmetafiledrv/objects.c, graphics/metafiledrv/init.c, include/enhmetafiledrv.h:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Started implementing Enhanced MetaFile driver.
+
+       * include/ole2.h, include/wine/obj_oleobj.h, include/wine/obj_oleview.h, ole/Makefile.in, ole/datacache.c, ole/defaulthandler.c, ole/ole2.c, ole/ole2stubs.c, ole/oleobj.c, relay32/ole32.spec, dlls/shell32/shlview.c:
+       Francis Beaudet <francis@macadamian.com>
+       Implemented the OLE object default handler and data cache.
+
+       * include/enhmetafile.h, include/wingdi.h, objects/enhmetafile.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Several improvements to Enhanced MetaFile playback.
+
+       * loader/ne/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Only try to append ".dll" if a library is loaded implicitely.
+
+       * dlls/shell32/shellord.c:
+       Michael Veksler <mveksler@techunix.technion.ac.il>
+       Fix TRACE formatting warnings.
+
+       * dlls/shell32/shlfolder.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Fixed a small syntax problem.
+
+       * windows/winpos.c: Juergen Schmied <juergen.schmied@metronet.de>
+       - better stubs for Get/Set special (Progman/Taskman) window functions
+
+       * relay32/user32.spec, windows/message.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - new SendMessageCallbackW
+       - some fixme's for missing A<->W conversion
+
+       * windows/dialog.c: Noel Borthwick <noel@macadamian.com>
+       Fixed an unbalanced windows lock/unlock sequence in GetNextDlgTabItem.
+
+       * misc/printdrv.c: Klaas van Gend <klaas@vangend.demon.nl>
+       Bugfix for EnumPrinters level 2.
+
+       * windows/x11drv/keyboard.c: Guy Albertelli <galberte@neo.lrun.com>
+       Correct logic in GetKeyNameText.
+
+       * documentation/bugreports:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Removed +snoop from documentation/bugreports.
+
+Sat May  1 10:41:02 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * objects/bitmap.c: Pavel Roskin <pavel_roskin@geocities.com>
+       LoadImageW fixed for hicolor displays.
+
+       * include/mmsystem.h, include/multimedia.h, multimedia/mmsystem.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       MCI_ANIM_OPEN_PARMSW should be LPCWSTR, MCI_DefYieldProc should be WINAPI.
+
+       * dlls/comctl32/header.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed HEADER_InsertItemA and HEADER_InsertItemW null pointer checking
+       to handle wide character strings properly.  Fix of our previous patch
+       for null pointer checking.
+
+       * ole/Makefile.in, ole/memlockbytes.c, ole/ole2stubs.c:
+       Thuy Nguyen <thuy@macadamian.com>
+       Implemented CreateILockBytesOnHGloba, GetHGlobalFromILockBytes and
+       the ILockBytes interface based on an HGLOBAL.
+
+       * ole/compobj.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a bug in CoRegisterClassObject.
+
+       * dlls/comctl32/toolbar.c: Luc Tourangeau <luc@macadamian.com>
+       Removed some flickering when inserting or deleting buttons.
+
+       * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed LISTVIEW_GetItemChanges() to perform a more complete comparison
+       between lpItem and lpLVItem.  Now compares the pszText string of the
+       lpItem and lpLVItem structs.  Fixes a bug where the old and new item
+       have the same attributes but their text differs and GetItemChanges()
+       compares them as equal.
+
+       * dlls/comctl32/propsheet.c, dlls/comctl32/propsheet.h, dlls/comctl32/rsrc.rc, dlls/comctl32/tab.c:
+       Thuy Nguyen <thuy@macadamian.com>
+       Added support for adding and removing pages dynamically from a
+       property sheet.
+
+       * controls/button.c, controls/combo.c, controls/desktop.c, controls/listbox.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Removed the gotos from the WndProcs, always use a small wrapper that
+       locks the window, calls the real wndproc, unlocks the window.
+
+       * dlls/shell32/contmenu.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed default menu item.
+
+       * win32/code_page.c, misc/ddeml.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed typo.
+
+       * windows/queue.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Added a missing LeaveCriticalSection.
+
+       * windows/mdi.c: Francois Boisvert <francois@macadamian.com>
+       Fixed a wrong usage of WIN_FindWndPtr/WIN_ReleaseWndPtr in
+       TranslateMDISysAccel16.
+
+       * misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed off-by-one bug in async output buffers.
+
+       * ole/ole2.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a little Drag and Drop bug.
+
+----------------------------------------------------------------
+Mon Apr 26 14:58:59 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/config.h.in, configure, configure.in:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added autoconf check for "inline". You can now use it, it will be
+       defined to (empty) for compilers that do not have it.
+
+       * tools/wrc/parser.y: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
+       Don't include alloca.h.
+
+       * README, documentation/wine.man: James Juran <jrj120@psu.edu>
+       Update to reflect recent changes and discussions.
+
+       * loader/loadorder.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       The load order parser should not always complain about extensions.
+
+       * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
+       - align magic buttons right
+       - shortcuts alignment working again
+
+       * loader/ne/module.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed loading of native NE dlls.
+
+Sun Apr 25 19:04:42 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * memory/heap.c: Fixed __builtin_return_address arg.
+
+       * */*:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed ANSI compabillity.
+
+       * */*:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Built-in dlls now have resources attached via the PE-header like
+       normal dlls. This enables the use of the resource API.
+
+       * misc/registry.c:
+       Use $HOME instead of getpwuid for user's home directory.
+       Fixed messed up indentation.
+
+       * graphics/x11drv/xfont.c:
+       Use $HOME instead of getpwuid for user's home directory.
+
+       * */*.h:
+       Patrik Stridvall <ps@leissner.se>
+       #pragma pack(?) changed to #include "*pack*.h"
+
+       * tools/build.c, include/commctrl.h, include/commdlg.h, include/docobj.h, include/heap.h, include/shellapi.h, include/winbase.h, include/windef.h, include/wine/obj_oleaut.h, include/wine/obj_storage.h, include/winerror.h, include/wingdi.h, include/winnetwk.h, include/winnls.h, include/winuser.h:
+       Jim Aston <jima@corel.ca>
+       Added some missing #defines I've run across.
+
+       * files/dos_fs.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Ignore trailing dots on file names.
+
+       * include/debugger.h, debugger/dbg.y, debugger/debug.l, debugger/display.c, debugger/editline.c, debugger/expr.c, debugger/hash.c, debugger/msc.c, debugger/source.c, debugger/stabs.c, debugger/stack.c, debugger/types.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Added a possibility to let the internal debugger use a separate
+       heap. Not enabled by default, change #if in include/debugger.h to use
+       this (the heap allocator is very slow).
+
+       * loader/loadorder.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       wine.conf should not overrule content of burned in data in
+       loadorder.c.
+
+       * graphics/mapping.c: Karl Lessard <karll@corel.com>
+       SetMapMode should not reset the window and viewport origins to 0.
+
+       * tools/wineconf: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Allow to automatically copy part of wine.ini into generated file.
+       Small perl enhancement (work in strict mode).
+       Small updates in heuristics.
+
+       * wine.ini: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Upgraded to have a decent multimedia DLLs configuration.
+
+       * tools/wrc/wrc.h, tools/wrc/writeres.c, tools/wrc/CHANGES:
+       Bertho Stultiens <bertho@akhphd.au.dk>
+       - Fixed a counting bug in the win32 count and sort routine.
+       - Fixed sort order of resources (must be name before ordinal).
+       - Shuffled a couple of global variables so that built-in dlls now can
+         load resources through the proper PE interface.
+
+       * include/windef.h, include/winreg.h:
+       Adrian Thurston <adriant@corel.ca>
+       Added support for strict handles. Only works on machines where
+       sizeof(UINT) == sizeof(void*).
+
+       * scheduler/process.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Initialize process critical section in the correct process context.
+
+       * scheduler/critsection.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Warn if wrong process tries to enter critical section.
+       Better implementation of Reinitialize/UninitializeCriticalSection
+       (still not quite correct).
+
+       * loader/loadorder.c: Marcus Meissner <marcus@jet.franken.de>
+       debug.h must be last in list of includes.
+
+       * loader/ne/module.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Return 32-bit module in GetModuleHandle16() if appropriate.
+
+       * msdos/int2f.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed crash when status was read with cd-rom tray open.
+
+       * windows/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed a bug in msg conversion.
+
+       * dlls/comctl32/trackbar.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Prevent crash when nMinRange > nMaxRange.
+
+       * include/winuser.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added some missing manifest constants for Queue Status functions (QS_????).
+
+       * controls/button.c, controls/edit.c, windows/mdi.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added missing WIN_ReleaseWndPtr.
+
+       * graphics/x11drv/xfont.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       More appropriate default size for fonts with invalid sizes.
+
+       * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Implemented SetColumnWidth for ListView control.
+
+       * documentation/config: Adam Sacarny <magicbox@bestweb.net>
+       Added new documentation for the configuration file.
+
+       * misc/version.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Improved VERSION_GetVersion.
+
+       * windows/x11drv/keyboard.c: Peter Bortas <peter@idonex.se>
+       Added Swedish keyboard layout.
+
+       * include/gdi.h, include/metafiledrv.h, include/wingdi.h, objects/clipping.c, objects/dc.c, objects/dcvalues.c, objects/font.c, objects/gdiobj.c, objects/metafile.c, graphics/metafiledrv/Makefile.in, graphics/metafiledrv/dc.c, graphics/metafiledrv/graphics.c, graphics/metafiledrv/init.c, graphics/metafiledrv/objects.c, graphics/painting.c, graphics/psdrv/README, graphics/psdrv/init.c, graphics/win16drv/init.c, graphics/x11drv/init.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       General tidy up of the MetaFile driver - make sure that everything
+       goes through the DCFuncs table.
+
+       * misc/toolhelp.c, if1632/kernel.spec:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Add a stub for GlobalMasterHandle.
+
+       * tools/bug_report.pl: Adam Sacarny <magicbox@bestweb.net>
+       Much nicer way to select wine's location.
+       Option to disable creation of debugging output.
+       Debugging output is now created in directory script was started in.
+
+       * windows/x11drv/wnd.c: Noel Borthwick <noel@macadamian.com>
+       Fixed a problem with managed mode, where popup windows with a WS_DLGFRAME
+       style were appearing with a title bar. According to the docs for
+       WS_DLGFRAME a window with this style cannot have a title bar.
+
+       * loader/loadorder.c: Marcus Meissner <marcus@jet.franken.de>
+       Use DllOverrides from wine.ini as defaults also in
+       loadorder.c (merged in some MM dlls lines from Eric Poeuch).
+
+       * windows/timer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed some bogus infinite expiration time.
+
+       * windows/x11drv/event.c: David Luyer <luyer@ucs.uwa.edu.au>
+       - consolidate both cases of !pending in WaitNetEvent
+       - select() returns -1 not 0 on error in WaitNetEvent
+
+       * memory/heap.c, include/heap.h: Ove Kaaven <ovek@arcticnet.no>
+       Made HeapValidate threadsafe, and added some macros to track callerEIP
+       a little better.
+       Added HEAP_xrealloc.
+
+Sat Apr 24 12:02:15 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * loader/loadorder.c, configure, configure.in, include/acconfig.h, include/config.h.in, include/elfdll.h, loader/elf.c, loader/elfdll.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       autoconf fixes and cleanups (check for dlopen() in libc too).
+
+       * ole/Makefile.in, ole/hglobalstream.c, ole/ole2stubs.c, ole/stg_stream.c:
+       Francis Beaudet <francis@macadamian.com>
+       Implemented CreateStreamOnHGLOBAL.
+
+       * ole/compobj.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Let CoSetState() accept state == NULL.
+
+       * dlls/shell32/pidl.c, dlls/shell32/pidl.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Made internal format more compatible.
+
+       * dlls/shell32/shlfolder.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Small fixes.
+
+       * windows/class.c, windows/dce.c, controls/combo.c:
+       Guy Albertelli <galberte@neo.lrun.com>
+       Fix locking with proper calls to WIN_ReleaseWndPtr.
+
+       * multimedia/dsound.c: Ove Kaaven <ovek@arcticnet.no>
+       Don't malloc/free for every mixing operation, use the same buffer over
+       instead...
+
+       * dlls/comctl32/header.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbejy@wpi.edu>
+       HEADER_InsertItemA and HEADER_InsertItemW now treat null pointers to
+       text strings as null strings, as Windows does.  Fixes wine crash on
+       startup of CuteFTP.
+
+       * misc/registry.c: Noomen Hamza <noomen@macadamian.com>
+       Set (when registry loaded) data to "\0" and length to 2 in empty
+       string value case, in place of setting data to NULL and length to 0,
+       and this is without initializing output buffer parameter of
+       RegQueryValue*.
+
+       * include/wingdi.h: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Added Panose defines and EXTLOGFONT[A|W].
+
+Thu Apr 22 16:27:53 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * */*:
+       Patrik Stridvall <ps@leissner.se>
+       Fixed ANSI compabillity.
+
+       * multimedia/mciavi.c, multimedia/mcimidi.c, multimedia/mciwave.c, multimedia/midi.c, objects/text.c, windows/caret.c, windows/rect.c, dlls/version/info.c, if1632/thunk.c, include/wine/winuser16.h, memory/atom.c, memory/string.c, misc/lstr.c, multimedia/mcianim.c, controls/uitools.c, dlls/commdlg/finddlg.c, dlls/shell32/brsfolder.c:
+       Michael Veksler <mveksler@techunix.technion.ac.il>
+       Removed some includes of 16 bit API.
+
+       * dlls/shell32/pidl.c, dlls/shell32/shell32_main.h, include/oleobj.h, include/shlobj.h, dlls/shell32/dataobject.c:
+       Adrian Thurston <adriant@corel.ca>
+       ICOMization of remaining interfaces.
+
+       * dlls/comctl32/tooltips.c: Noel Borthwick <noel@macadamian.com>
+       Fixed bug with tooltips stealing focus whenever a tooltip was created,
+       shown, hidden or tracked. The SetWindowPos calls needed to have the
+       SWP_NOACTIVATE flag set additionally.
+
+       * objects/clipping.c: Karl Lessard <karll@corel.com>
+       Fixed coordinates conversion in OffsetClipRgn.
+
+       * include/objbase.h: Adrian Thurston <adriant@corel.ca>
+       Clean up objbase.h. Makes the STDMETHOD set of macros available to the winelib user.
+
+       * relay32/kernel32.spec, scheduler/handle.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       CreateSocketHandle,GetHandleContext,SetHandleContext stubs added.
+
+       * dlls/shell32/brsfolder.c, dlls/shell32/iconcache.c, dlls/shell32/regstream.c, dlls/shell32/shell32_main.c, dlls/shell32/shellord.c, include/shell.h, include/shellapi.h, include/shlobj.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Moved stuff to the right place.
+
+       * windows/syscolor.c: Gerard Patel <g.patel@wanadoo.fr>
+       Fixed syscolors for win 3.1.
+
+       * files/profile.c, if1632/kernel.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added missing profile KERNEL routines (call 32-bit versions).
+
+       * if1632/builtin.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: BUILTIN_GetEntryPoint16 didn't work correctly with the new
+       entry table layout.
+
+       * include/wingdi.h: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Add Enhanced MetaFile record structures.
+
+       * dlls/comctl32/commctrl.c, dlls/comctl32/propsheet.c, include/resource.h, resources/sysres_En.rc:
+       Thuy Nguyen <thuy@macadamian.com>
+       First patch implementing property sheets.
+
+       * relay32/gdi32.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: GDI32.100-104 are ordinal-only routines.
+       Added stubs for some Win98 GDI32 routine.
+       Re-numbered all named exports (lexicographically).
+
+       * graphics/driver.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added prototypes (stubs) for GDI32.100-104.
+
+       * dlls/shell32/folders.c, dlls/shell32/iconcache.c, dlls/shell32/pidl.c, dlls/shell32/pidl.h, dlls/shell32/shell32_main.h, dlls/shell32/shelllink.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - more checks for valid pidl formats
+
+       * relay32/shell32.spec, dlls/shell32/shellord.c, include/shlobj.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - corrected parameter count for SHGetSettings
+       - stub SHValidateUNC
+
+       * loader/elf.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
+       #else branch compile fix.
+
+       * include/elfdll.h, loader/elfdll.c, loader/loadorder.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Change wine's dlopen search-patch strategy not using the environment
+       and added #if:s to seperate the code out if libdl isn't availble.
+
+       * ole/compobj.c: Francis Beaudet <francis@macadamian.com>
+       Added a check for a NULL pointer in CoFreeUnusedLibraries.
+
+       * relay32/builtin32.c:
+       Marcus Meissner <msmeissn@stud.informatik.uni-erlangen.de>
+       Include debug.h last (ERR() macro problem on Solaris).
+
+       * controls/combo.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a sizing bug in the combobox control.
+
+       * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Internal NE entry point tables were bad (one huge bundle).
+
+       * misc/registry.c: Noomen Hamza <noomen@macadamian.com>
+       Initialize the output buffer parameters to 0 in RegQueryValue*
+       functions. This is important specially when there's no data to return.
+
+       * loader/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Do not increment module refCount if self is loaded from within
+       DllEntryPoint during the attach notification.
+
+Wed Apr 21 14:27:37 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
+       - protect TRACE against NULL-ptr
+       - rewrote GetMenuItemID/GetSubMenu to use MENU_FindItem (hmenu=0xffff fix).
+
+       * dlls/comctl32/toolbar.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed typo.
+
+       * loader/ne/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Reimplementation of GetModuleHandle16 according to how win95 handles
+       it (thanks to Marcus Meissner <marcus@jet.franken.de>).
+
+       * if1632/builtin.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Corrected wrong return values of built-in loader to work with the
+       loadorder stuff.
+
+Mon Apr 19 16:45:24 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/metafiledrv/bitblt.c, graphics/metafiledrv/init.c, include/bitmap.h, include/metafiledrv.h, objects/dib.c, objects/metafile.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Implemented recording of StretchDIBits and SetDIBitsToDevice and
+       playback of SetDIBitsToDevice. Cleaned up PlayMetaFileRecord a bit.
+
+       * include/elfdll.h, loader/elf.c, loader/elfdll.c, loader/loadorder.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Removed non-portable hacks and replaced them with more general
+       versions.
+
+       * windows/dce.c: Paul Millar <paulm@astro.gla.ac.uk>
+       Code added to re-evaluate stale DC information in DCE cache.
+
+       * loader/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Attach notifications must be send after all recursive dependencies are
+       loaded and not before.
+
+       * graphics/x11drv/palette.c: Patrik Stridvall <ps@leissner.se>
+       Fixed typo.
+
+       * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed playing position when required by track number.
+
+       * win32/device.c: Marcus Meissner <marcus@jet.franken.de>
+       Added MMDEVLDR DeviceIoctl(5) stub (msacm32 is a bit happier now).
+
+       * wine.ini: Marcus Meissner <marcus@jet.franken.de>
+       Native toolhelp will not work (missing GLOBALMASTERHANDLE).
+
+       * BUGS, README: Marcus Meissner <marcus@jet.franken.de>
+       Updated.
+
+       * controls/edit.c: Gerard Patel <g.patel@wanadoo.fr>
+       Test for static was reversed.
+
+       * */*:
+       Patrik Stridvall <ps@leissner.se>
+       New debug scheme with explicit debug channels declaration.
+
+Sun Apr 18 14:44:26 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * loader/ne/module.c: Removed extra call to TASK_StartTask.
+
+       * include/acconfig.h, include/config.h.in, configure, configure.in:
+       Removed check for union semun; cleaned up a bit.
+
+       * include/server.h, server/process.c, server/trace.c, tools/make_requests:
+       Added env ptr to new_process request
+
+       * relay32/user32.spec, windows/mdi.c, controls/menu.c, include/menu.h, include/winuser.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - use fonts/fontsizes given by SystemParametersInfo
+       - drawing/alignment fixes, win98 style for menubar
+       - ownerdrawn menus are working now for the first time
+       - complete constants magic items
+       - use right owner for popupmenus
+       - new: Get/SetMenuInfo
+       - implemented: Get/SetMenuContextHelpId
+       - more flags for Get/SetMenuItemInfo
+
+       * files/dos_fs.c: robert w hall <bobh@n-cantrell.demon.co.uk>
+       Make DOSFS_MatchLong match a search string ending in '*.' to a zero
+       extension file name, allowing Mathcad to run.
+
+       * loader/loadorder.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed memory freeing.
+
+       * programs/cmdlgtst/Attic/cmdlgr.h, programs/cmdlgtst/cmdlgr.rc, programs/cmdlgtst/cmdlgtst.c, programs/cmdlgtst/cmdlgtst.h:
+       Renamed cmdlgr.h to cmdlgtst.h.
+
+       * scheduler/critsection.c: Added timeout to critical section waiting.
+
+       * include/thread.h, scheduler/sysdeps.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Merged Linux/FreeBSD reentrant errno handler, added Solaris.
+       Preliminary support for Solaris low-level threads (LWPs) added.
+
+       * configure, configure.in, include/acconfig.h, include/config.h.in:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Reentrant libc check for Solaris added.
+       Fixed reentrant X11 check for FreeBSD and Solaris.
+       Added check for Solaris low-level thread routines.
+
+       * loader/ne/module.c:
+       Fixed toolhelp routines usage in GetModuleFromPath (reported by Bertho
+       Stultiens).
+
+       * tools/wineinstall: Ove Kaaven <ovek@arcticnet.no>
+       Automatic install script, which automatically configures and compiles
+       wine and regapi, runs tools/wineconf to generate a configuration file
+       if one does not already exist, and uses regapi to install the default
+       registry.
+
+       * documentation/gui, windows/win.c, windows/winpos.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Properly handling cases like calling SetWindowPos while processing
+       WM_NCCREATE.
+
+       * graphics/x11drv/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed a few bugs (typos from cut & paste & invalid heap block
+       freeing).
+
+       * misc/wsprintf.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Bug fix in GetLen.
+
+       * loader/ne/module.c, loader/pe_image.c, memory/global.c, misc/main.c, miscemu/main.c, relay32/builtin32.c, scheduler/process.c, scheduler/thread.c, if1632/builtin.c, include/builtin32.h, include/module.h, include/pe_image.h, include/winerror.h, loader/Makefile.in, loader/elf.c, loader/main.c, loader/module.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Reorganization of the loader to correctly load and free libraries and
+       implementation of load order to load different types of libraries.
+
+       * documentation/wine.man: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Updated commandline changes of -dll option and wine.conf entries.
+
+       * wine.ini: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Updated the example with the new configuration entries.
+
+       * dlls/shell32/shell32_main.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Bugfix: free loaded library not before exit.
+
+       * include/elfdll.h, include/loadorder.h, loader/elfdll.c, loader/loadorder.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       New files to support load order and partial stubs for elfdlls.
+
+       * graphics/metafiledrv/objects.c, graphics/x11drv/dib.c, include/bitmap.h, objects/brush.c, objects/cursoricon.c, objects/dib.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Fixes for upside-down DIBs.
+
+       * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
+       Changed 'GetDisplayMode' to return the mode previously set by
+       'SetDisplayMode' (and not the current monitor mode).
+
+       * include/tab.h, dlls/comctl32/tab.c:
+       Luc Tourangeau <luc@macadamian.com>
+       -Implemented TCS_BUTTONS, TCS_FIXEDWIDTH, TCM_GETITEMRECT,
+       TCM_SETITEMSIZE and TCM_DELETEITEM.
+
+       * objects/cursoricon.c: Pavel Roskin <pavel_roskin@geocities.com>
+       LookupIconIdFromDirectoryEx16() fixed: if GetSystemPaletteEntries()
+       returns 0, it is interpreted as if it were 256.
+
+       * loader/module.c, scheduler/process.c:
+       Kevin Holbrook <kwh@neosoft.com>
+       Fix ambiguous else warning.
+
+       * windows/syscolor.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Loading color values from the registry fixed.
+
+       * graphics/ddraw.c: Brian Gerst <bgerst@quark.vpplus.com>
+       - Removed all floating point math.
+       - Implemented stretching in X and Y directions for 8, 16, and 32 bit color.
+       - Implemented source and dest color-keying for 8, 16, and 32 bit color.
+       - Implemented some trivial raster operations.
+       - Minimized inner loops for maximum speed.
+       - Use memcpy whenever possible.
+
+       * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Reduced fragment size.
+       Reorganized wodOpen (with support for WAVE_QUERY_FORMAT).
+       Fixed buffer underrun recovery.
+       Fixed bug in wodReset()/wodClose().
+
+       * ole/storage32.c: Michael Veksler <mveksler@techunix.technion.ac.il>
+       Simplify propertyNameCmp() and fix a warning in the way by removing
+       CRTDLL__wcsupr() calls.
+
+       * misc/ddeml.c: Keith Matthews <keith_m@sweeney.demon.co.uk>
+       DdeNameService: expansion of stub to trap unused instanceids at start of run.
+       DdeGetLastError: catch 'not initialized' situation and return correct response.
+       DdeFreeStringHandle: complete test for error set by previous call of
+       something and ignore it, also release handle table mutex on normal exit.
+       DdeQueryStringA, DdeQueryStringW, DdeCreateStringHandleW: Release
+       handle table mutex on normal exit.
+
+       * include/wnet.h, misc/network.c:
+       Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
+       Don't announce the WNetDirectoryNotify capability WNetGetConnection.
+       Change the return value for local files.
+
+       * windows/mouse.c: Michael Veksler <mveksler@techunix.technion.ac.il>
+       Add "win.h" to fix implicit function declaration warnings.
+
+       * console/interface.c, include/console.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       Only declare console "driver" once, use external refs elsewhere.
+
+       * controls/listbox.c: Luc Tourangeau <luc@macadamian.com>
+       When the vertical scrollbar is removed, the background was not
+       properly repainted.
+
+       * loader/signal.c: Marcus Meissner <marcus@jet.franken.de>
+       Disable AC bit on receiving alignment exceptions.
+
+       * misc/main.c: Juergen Schmied <juergen.schmied@metronet.de>
+       SystemParametersInfo SPI_GETNONCLIENTMETRICS: implemented menu part.
+
+       * windows/x11drv/event.c: Noel Borthwick <noel@macadamian.com>
+       While handling the WM_DELETEWINDOW client message check if a window
+       has been disabled and if so prevent an SC_CLOSE message from being
+       sent.
+
+       * windows/dce.c: Noel Borthwick <noel@macadamian.com>
+       Make access to the DCE list thread safe by ensuring we have acquired
+       the Windows lock before using it.
+
+Fri Apr 16 15:19:14 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * resources/.cvsignore: Changed for renamed files
+
+       * misc/winsock_async.c, msdos/dosconf.c, windows/user.c:
+       Michael Veksler <mveksler@techunix.technion.ac.il>
+       Fixed warnings.
+
+       * ole/nls/wal.nls, ole/ole2nls.c, resources/Attic/sysres_Cz.rc, resources/Attic/sysres_Po.rc, resources/Attic/sysres_Sw.rc, resources/Makefile.in, resources/sysres.c, resources/sysres_Cs.rc, resources/sysres_Pt.rc, resources/sysres_Sv.rc, resources/sysres_Wa.rc, windows/x11drv/keyboard.c, documentation/wine.man, include/options.h, include/winnls.h, misc/main.c:
+       Pablo Saratxaga <pablo.sarachaga@ping.be>
+       Added walon language support (I also moved Cz -> Cs, Sw -> Sv, and Po
+       -> Pt; to conform to standard names for those languages).
+
+       * configure, configure.in, relay32/Makefile.in:
+       Marcus Meissner <marcus@jet.franken.de>
+       Add -fno-builtin when compiling with gcc in relay32/ subdir.
+
+       * include/module.h, loader/ne/module.c, loader/ne/segment.c, tools/build.c, if1632/builtin.c:
+       Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       - Implemented proper ("real", compressed) Win16 entry tables.
+       - Fixed MyAlloc (AKA NE_AllocateSegment).
+       - Implemented PatchCodeHandle16.
+
+       * tools/Attic/make_os2.sh, tools/make_os2.cmd, graphics/path.c, graphics/psdrv/graphics.c, include/sig_context.h:
+       Robert Pouliot <krynos@clic.net>
+       A few patches to help Wine to compile on OS/2.
+
+Thu Apr 15 16:46:51 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/metafiledrv/bitblt.c, graphics/metafiledrv/graphics.c, graphics/metafiledrv/init.c, graphics/metafiledrv/mapping.c, graphics/metafiledrv/objects.c, graphics/metafiledrv/text.c, include/metafile.h, include/metafiledrv.h, objects/clipping.c, objects/dc.c, objects/dcvalues.c, objects/metafile.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Change (32 bit) HMETAFILEs to GDI objects (HMETAFILE16s remain as
+       global memory handles).  Fixed disk-based MetaFiles.  Better
+       separation between MetaFile playback and the metafiledrv.
+
+       * misc/crtdll.c: Ove Kaaven <ovek@arcticnet.no>
+       _CIpow argument order was confirmed with Starcraft v1.05.
+
+       * documentation/keyboard: Ove Kaaven <ovek@arcticnet.no>
+       Clarified a few points.
+
+       * msdos/int21.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Added IOCTL function 0x440d/0x72.
+
+       * relay32/kernel32.spec, scheduler/critsection.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       UnitializeCriticalSection partial stub implementation.
+
+       * include/winbase.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added missing proto for GetExitCodeThread.
+
+       * include/driver.h, include/wine/keyboard16.h:
+       Michael Veksler <mveksler@techunix.technion.ac.il>
+       Added missing windef.h includes.
+
+       * windows/input.c, include/winuser.h:
+       Zygo Blaxell <uj22kfbc@umail.furryterror.org>
+       ReleaseCapture() is supposed to return a BOOL value.
+
+       * configure, configure.in, include/config.h.in, loader/signal.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       FreeBSD 3 multithreading final fix. Do not use libc_r, libc is just as
+       reentrant concerning errno. Revert unneeded FreeBSD hack to
+       loader/signal.c from last patch.
+
+       * windows/x11drv/keyboard.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       index == 3 corresponds to Alt-Gr + Shift.
+
+       * misc/ddeml.c: Keith Matthews <keith_m@sweeney.demon.co.uk>
+       More of DdeCreateStringHandleA, DdeFreeStringHAndle, DdeQueryStringA
+       and DdeCreateStringHandleW and tidy up of RemoveHSZNodes, and
+       DdeCreateStringHandleA.
+
+       * windows/x11drv/main.c, graphics/x11drv/bitblt.c, graphics/x11drv/palette.c, include/x11drv.h:
+       Pavel Roskin <pavel_roskin@geocities.com>
+       Fixed ugly disabled controls and black background in Write and Lotus
+       Notes.
+
+       * controls/button.c, include/button.h, include/winuser.h:
+       Pascal Lessard <pascal@macadamian.com>
+       Implement the button with bitmaps.
+
+       * include/wine/obj_storage.h, ole/stg_stream.c, ole/storage32.c:
+       Stephane Lussier <stephane@macadamian.com>
+       Implementation of IStorage::CopyTo and IStream::CopyTo.
+
+       * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: Always release the Win16Lock in TASK_Reschedule.
+
+       * windows/x11drv/event.c: Francois Boisvert<francois@macadamian.com>
+       Solved a deadlock between global lock and wnd lock in event.c.
+
+       * dlls/shell32/iconcache.c: Marcus Meissner <marcus@jet.franken.de>
+       Typo that broke Solaris compile fixed.
+
+       * controls/desktop.c: Francois Boisvert<francois@macadamian.com>
+       Add a WIN_ReleaseDesktop in DESKTOP_IsSingleWindow.
+
+       * windows/x11drv/keyboard.c: Guy Albertelli <galberte@neo.lrun.com>
+       Fix scancodes for NumLock and Num-/.
+       Fix MapVirtualKey() (maptype=2) to return proper ascii code.
+       Reworked GetKeyNameText() again.
+
+       * graphics/psdrv/font.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Limit lastChar to 0xff in PSDRV_GetCharWidth.
+
+       * windows/user.c: Marcus Meissner <marcus@jet.franken.de>
+       Missing WINAPI for RegisterSystemThread.
+
+Sun Apr 11 18:48:17 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * msdos/int10.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Fixed "Display Combination" call.
+
+       * misc/comm.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Fixed a crash due to invalid OpenComm return value for busy comm port.
+       Cleaned up/fixed several things.
+
+       * windows/win.c: Francois Boisvert<francois@macadamian.com>
+       Enabled thread safeness for wnd structure code.
+
+       * debugger/dbg.y: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Use CLIENT_DebuggerRequest to freeze/unfreeze threads.
+
+       * server/request.c, server/thread.c, server/trace.c, include/server.h, include/server/request.h, include/server/thread.h, scheduler/client.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added new CLIENT_DebuggerRequest routine, implemented support for
+       DEBUGGER_FREEZE_ALL/DEBUGGER_UNFREEZE_ALL requests.
+       Run wine server in the main wine process.
+       Bugfix: never free initial thread!
+
+       * scheduler/process.c, include/process.h:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Non-functional PROCESS_Suspend/ResumeOtherThreads removed.
+
+       * windows/timer.c: Ove Kaaven <ovek@arcticnet.no>
+       Teached TIMER_GetNextExpiration that a timer that has already expired
+       (but not processed yet) HAS already expired...
+
+       * winedefault.reg: Ove Kaaven <ovek@arcticnet.no>
+       Default values for registry.
+
+       * graphics/x11drv/dib.c: Karl Lessard <karll@corel.ca>
+       Optimized code for SetImageBits_X, making bitmap creation faster.
+
+       * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
+       The MEASUREITEMSTRUCT and DRAWITEMSTRUCT were filled wrong.
+
+       * configure.in, include/config.h.in, include/sig_context.h, loader/signal.c, scheduler/sysdeps.c, configure:
+       Marcus Meissner <marcus@jet.franken.de>
+       - Started multithreading for FreeBSD (incomplete, but some
+         applications now at least start up again).
+       - Use _thread_sys_sigaction/_thread_sys_sigaltstack.
+       - CR2 on pagefault gets passed in sc_err (some kind of kludge in
+         FreeBSD owns fault handling we can use)
+
+       * include/selectors.h, memory/global.c, memory/selector.c:
+       Made SELECTOR_ReallocBlock preserve the current selector access rights
+       (problem reported by Andreas Mohr).
+
+       * misc/system.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Use services thread instead of timer signals.
+
+       * server/thread.c, scheduler/synchro.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Allow user APCs with NULL 'func' (just wake up the thread).
+
+       * include/services.h, loader/main.c, scheduler/Makefile.in, scheduler/services.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Implemented 'kernel services thread'.
+
+       * include/winspool.h, misc/printdrv.c, relay32/winspool.spec:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Added stub for PrinterProperties.
+
+       * dlls/ntdll/rtlstr.c, include/ntddk.h, relay32/ntdll.spec, dlls/ntdll/nt.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Implemented NtTerminateProcess and NtDisplayString.
+
+       * loader/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       FreeLibrary partial implementation.
+
+       * misc/crtdll.c, relay32/crtdll.spec: Ove Kaaven <ovek@arcticnet.no>
+       Made _ftol take argument from FPU stack. Starcraft v1.04 (*not* Brood
+       Wars) now works perfectly with Wine's crtdll. Wrote a test
+       implementation of _CIpow too, which those who do have Brood Wars can
+       report on, so it can be implemented correctly.
+
+       * windows/x11drv/keyboard.c: Guy Albertelli <galberte@neo.lrun.com>
+       Partial implementation for GetKeyNameText for new keyboard structure.
+
+       * dlls/tapi32/phone.c: Kevin Holbrook <kwh@neosoft.com>
+       Fixed warning.
+
+       * include/wine/obj_storage.h: Marcus Meissner <marcus@jet.franken.de>
+       Added missing ReadClassStg prototype.
+
+       * misc/wsprintf.c: Michael Veksler <mveksler@techunix.technion.ac.il>
+       - Fix comments after the big renaming (xxxx32y --> xxxxy).
+       - Declare the WPRINTF_DATA union, and use it instead of LPCVOID and WORD.
+         Avoid ugly type casting, and fix compilation warnings of wsprintf.c
+
+       * documentation/status/dde:
+       Keith Matthews <keith_m@sweeney.demon.co.uk>
+       Status document for DDE/Ddeml.
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added event callback mechanism.
+       Introduction of MCI yield procs.
+       Updated (prepare|unprepare)header functions (wave, midi) to allow
+       correct callback mechanisms.
+       Made midiStreamXXX functions working.
+       First try at mmThreadXXX functions.
+
+       * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated (prepare|unprepare)header functions to allow correct callback
+       mechanisms.
+
+       * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Small enhancement.
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       New method for structure conversion (16 <-> 32).
+       More MCI structures correctly mapped.
+       Introduction of MCI yield proc and break facility.
+
+       * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated (prepare|unprepare)header functions to allow correct callback
+       mechanisms.  Implemented waveOut playback as asynchronous.
+
+       * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Started implementation of mmThreadXXX functions.
+
+       * include/mmsystem.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added a few missing defines (MIDI, WAVE, callbacks).
+       Structures for midiStreamXXX functions.
+
+       * if1632/mmsystem.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated (prepare|unprepare)header functions (wave, midi) to allow
+       correct callback mechanisms. Added wine specific entry for mmThreadXXX
+       functions thread starting point.
+
+       * include/wine/obj_storage.h:
+       Michael Veksler <mveksler@techunix.technion.ac.il>
+       Introduce STATSTG16 - a 16 bit variant of STATSTG.
+
+       * ole/storage.c: Michael Veksler <mveksler@techunix.technion.ac.il>
+       Fix IStorage16_fnStat() to use STATSTG16 (it is a 16 bit interface).
+
+       * controls/menu.c: Paul Millar <paulm@astro.gla.ac.uk>
+       Fixed menu type setting in SetMenuItemInfo32_common().
+
+       * include/process.h, loader/ne/module.c, loader/task.c, scheduler/process.c, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Send USIG_PROCESS_CREATE signal.
+       Bugfix: GetProcessDword offset -8 should return parent process ID.
+
+       * relay32/user32.spec, windows/user.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Added RegisterSystemThread stub.
+
+       * include/wine/obj_misc.h, ole/compobj.c, relay32/ole32.spec, include/winerror.h:
+       Francis Beaudet <francis@macadamian.com>
+       Implemented the CoCreateInstanceEx method.
+
+       * misc/registry.c: David Gay <dgay@CS.Berkeley.EDU>
+       Fixed crash due to a value of name length 0, value length 0 at the end
+       of the registry.
+
+       * windows/winpos.c: Francois Boisvert <francois@macadamian.com>
+       Check if pTempActiveWindow in WINPOS_SetWindowPos is valid after the
+       QUEUE_Lock.
+
+       * multimedia/dplay.c: Francois Gouget <fgouget@psn.net>
+       - updated because of the splitting of interface/implementation
+       - updated to use ICOM_THIS
+
+       * include/dplay.h, include/dplobby.h, ole/guid.c:
+       Francois Gouget <fgouget@psn.net>
+       - use the latest ICOM macros
+       - moved the IDirectPlayLobby interface to dplobby.h
+       - removed all the implementation aspects since they need to be
+       separate
+
+       * include/dsound.h, multimedia/dsound.c:
+       Francois Gouget <fgouget@psn.net>
+       ICOMisation of the DirectSound API.
+
+       * dlls/shell32/folders.c, dlls/shell32/iconcache.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, include/shlobj.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - reorganised icon extracing from files
+       - made extracting from ne and ico files working
+       - IPersistFile interface for IExtractIcon
+
+       * misc/shell.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Fixed buffer overrun.
+
+       * include/cursoricon.h, objects/cursoricon.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Changed ressource dir structures.
+       Adapted FindBestIccon/FindBestCursor.
+
+       * windows/syscolor.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Loading the color schema for registry.
+
+Sat Apr 10 16:58:55 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/winsock.h, misc/Attic/winsock_dns.c, misc/Makefile.in, misc/winsock.c, misc/winsock_async.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Reimplemented winsock asynchronous DNS services. No longer use a
+       fork()ed process, but either a service thread or inline blocking calls
+       for non-threading architectures. (Makes Free Agent16 work again.)
+
+       * programs/cmdlgtst/Attic/cmdlgr.h, programs/cmdlgtst/cmdlgr.rc, programs/cmdlgtst/cmdlgtst.c:
+       <ewill@ncal.verio.com>
+       - color and font dialogs now actually do something interesting,
+         and force a redraw when successful.  Background color is adjustable.
+         Text color is also adjustable, but the user has to set the CF_EFFECTS
+         flag first.
+       - text is output left-right centered, baseline, at the middle
+         of the window, and moves with the window.  Text font is adjustable.
+       - Success and failure MessageBox calls for Color, Font, Open,
+         and Save have been removed or suppressed.  They annoyed me after
+         awhile, and I suspect they annoyed others, too.  Use my tool! :-)
+       - cmdlgtst now has the full pathname in the upper left corner; which may
+         assist in debugging certain problems -- or it may not. :-)
+       - usage dialog added
+
+       * ole/ole2nls.c: Juergen Schmied <juergen.schmied@metronet.de>
+       Corrected debug output.
+
+       * windows/driver.c, relay32/winmm.spec:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Better error handling ; a few bug fixes ; now OpenDriver16 can load 32
+       bit drivers.
+       Added stub for GetDriverFlags.
+
+       * windows/user.c, relay32/user32.spec:
+       Sergey Turchanov <turchanov@usa.net>
+       Stubs for CloseDesktop and CloseWindowStation.
+
+       * loader/ne/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
+       GetModuleFromPath now checks for loaded modules via filenames which
+       were specified without a path.
+
+       * misc/registry.c, include/winreg.h:
+       Sylvain St.Germain <sylvain@macadamian.com>
+       Implementation of HKU key saving and loading. Add new supported data
+       type in debug_print_value.
+
+       * dlls/shell32/shlview.c, include/docobj.h, ole/guid.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       New interfaces for IOleCommandTarget, IDropTarget, IViewObject.
+       Small change how to get icons for listview.
+
+       * include/shlobj.h, relay32/shell32.spec:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       ILLoadFromString and SHGetSettings implemented.
+
+       * dlls/shell32/shellord.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       SHGetSettings implemented.
+       ExitWindowsDialog() simulated by Messagebox.
+
+       * dlls/shell32/pidl.c: Juergen Schmied <juergen.schmied@metronet.de>
+       ILLoadFromString implemented.
+
+       * graphics/x11drv/init.c, graphics/ttydrv/init.c, graphics/ttydrv/palette.c:
+       Richard Mortimer <remitrom@my-dejanews.com>
+       Added missing *IsDark entries into PALETTE_Driver instance
+       initialisation.
+
+       * windows/x11drv/mouse.c: Brian Gerst <bgerst@quark.vpplus.com>
+       Fixed X11DRV_MOUSE_WarpPointer initial value.
+
+       * objects/bitmap.c: Luc Tourangeau <luc@macadamian.com>
+       Ensure that the bitmap is properly initialized when created with the
+       LR_CREATEDIBSECTION flag.
+
+       * dlls/comctl32/treeview.c: Sylvain St.Germain <sylvain@macadamian.com>
+       Fixed the messaging problem of the edit box for node label edition.
+       Substituted WM_PAINT for InvalidateRect.
+       Some graphical fixes.
+
+       * misc/main.c: James Juran <jrj120@psu.edu>
+       Check for drivers==NULL before trying to delete them at exit.  This
+       could happen if the emulator initialization failed for some reason and
+       the drivers hadn't been initialized yet.
+
+       * if1632/thunk.c, include/callback.h, misc/callback.c, miscemu/main.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Call InitApp16 (using Callout) for initial process.
+
+       * miscemu/instr.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Clear invalid selectors also in CallTo16 relay code.
+
+       * programs/notepad/Es.rc:
+       Jose Marcos López Caravaca <jose.lopez@upcnet.upc.es>
+       Revised Spanish resources.
+
+       * windows/mdi.c: Gerard Patel <g.patel@wanadoo.fr>
+       Fixed window locking bug in CalcChildScroll.
+
+       * multimedia/time.c: Ove Kaaven <ovek@arcticnet.no>
+       Fixed fake multimedia timers. Grim Fandango is now able to start up
+       when under favorable conditions. The preview movie on the Brood Wars
+       disc now plays, too.
+
+       * misc/printdrv.c: Klaas van Gend <klaas@vangend.demon.nl>
+       Bugfix EnumPrintersA: lpbPrinters=NULL or cbBuf=0 would crash Wine,
+       instead of returning the right buffersize.
+
+Tue Apr  6 07:14:09 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * files/directory.c: galberte <galberte@neo.rr.com>
+       Fixed SearchPathA return value.
+
+       * graphics/d3d_private.h, graphics/d3dtexture.c, graphics/ddraw.c, graphics/ddraw_private.h:
+       Lionel Ulmer <ulmer@directprovider.net>
+       - clean-up of texture 'loading'
+       - added SetColorKey callback for already loaded textures
+
+       * include/wine/obj_storage.h: Francois Gouget <fgouget@psn.net>
+       Fixed a problem pointed out by Kevin Holbrook.
+
+       * include/commctrl.h: Francois Gouget <fgouget@psn.net>
+       commctrl.h must include prsht.h.
+
+       * include/wine/obj_oleaut.h: Francois Gouget <fgouget@psn.net>
+       Warning fix.
+
+       * include/wine/obj_base.h: Francois Gouget <fgouget@psn.net>
+       Added a new implementation of the ICOM macros that use Microsoft style
+       virtual methods to implement the COM interfaces in C++.
+
+       * misc/ddeml.c: Keith Matthews <keith_m@sweeney.demon.co.uk>
+       Correction of Mutex handling in DdeInitializeW for cases other than
+       1st call. Addition of instance handling to DdeCreateStringHandleA,
+       DdeCreateStringHandleW, RemoveHSZNodes, FreeAndRemoveHSZNodes.  1st
+       cut implementation of DdeUnitialize, move of internal structure defs
+       in from ddeml.h. Removed non-ANSI comment.
+
+       * include/ddeml.h: Keith Matthews <keith_m@sweeney.demon.co.uk>
+       Moved internal structures to ddeml.c, also removed non-ANSI comments,
+       and added spec for DdeQueryConfInfo and DdeQueryConvInfo16.
+
+       * multimedia/mmsystem.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed memory leaks in mixerOpen16/mixerClose,
+       midiOutOpen16/midiOutClose16, waveInOpen16/waveInClose16,
+       midiInOpen16/midiInClose16.
+
+       * tools/bug_report.pl: Adam Sacarny <magicbox@bestweb.net>
+       Added sanity check for whitespace in file names, various other fixups.
+
+Sun Apr  4 12:48:21 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * controls/listbox.c: Luc Tourangeau <luc@macadamian.com>
+       WM_MOUSEMOVE implementation bug fix.
+
+       * windows/x11drv/keyboard.c:
+       José Marcos López <jose.lopez@upcnet.upc.es>
+       Added Spanish keyboard layout.
+
+       * misc/comm.c: Lawson Whitney <lawson_whitney@juno.com>
+       Fixed the modem control part of EscapeCommFunction16.
+
+       * controls/combo.c: Gerard Patel <g.patel@wanadoo.fr>
+       Added missing goto.
+
+       * ole/ole2nls.c, relay32/kernel32.spec, include/winnls.h:
+       Marcus Meissner <marcus@jet.franken.de>
+       EnumCalendarInfoA stub.
+
+Sat Apr  3 16:27:54 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/mouse.c, windows/keyboard.c:
+       Francois Boisvert <francois@macadamian.com>
+       Suspend the window locks before DefKeybEventProc and
+       DefMouseEventProc.
+
+       * include/wnaspi32.h, programs/view/globals.h, include/aspi.h, include/mmsystem.h, include/winaspi.h, include/winioctl.h, include/winnt.h:
+       Joerg Mayer <jmayer@telesun2.telemation.de>
+       More #pragma fixes (idea Ove Kaaven, mistakes are mine).
+
+       * windows/win.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       No longer sending atoms in ((CREATESTRUCT*)lParam)->lpszName of
+       WM_CREATE messages.
+
+       * loader/module.c: Marcus Meissner <marcus@jet.franken.de>
+       Added some SetLastError()s in GetProcAddress() and LoadLibrary().
+
+       * misc/crtdll.c, relay32/crtdll.spec:
+       Christian Schlaile <up9n@rz.uni-karlsruhe.de>
+       Implemented makepath, rand() returns correct range, fixed fputc.
+
+       * files/file.c, include/file.h, msdos/int21.c:
+       Mask off unsupported attributes in _lcreat (bug reported by Andreas Mohr).
+       Moved _lcreat16_uniq to int21.c
+
+       * libtest/hello3.c, libtest/hello3res.rc, libtest/hello4.c, libtest/new.c, libtest/rolex.c, libtest/vartest.c, libtest/volinfo.c:
+       Pavel Roskin <pavel_roskin@geocities.com>
+       Casts to (SEGPTR) removed. They did nothing anyway.
+       Includes added or removed where necessary.
+       Win16 functions replaced with their Win32 counterparts. Comments added
+       where it was impossible.
+       CALLBACK added where necessary. Some declarations fixed.
+       Constructs like "#if WINDOWS" corrected. Using "#ifdef __unix__" instead.
+       DlgProc in hello3 uses EndDialog() instead of DestroyWindow().
+       Listbox enabled in hello3.
+
+       * windows/x11drv/keyboard.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated French keyboard.
+
+       * libtest/hello.c: Alex Korobka <alex@aikea.ams.sunysb.edu>
+       Fancier version of hello.c courtesy of Huw Davies.
+
+       * programs/control/control.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Fixed compilation of the Control panel.
+
+       * windows/x11drv/keyboard.c: Ove Kaaven <ovek@arcticnet.no>
+       'Realigned' the layout table a bit. Applied the non-latin-1 stuff and
+       the dead key mapping stuff to the actual mapping code too.  Prettied
+       up the fixme message. Added a check where if the keys of two layouts
+       match exactly, the one with the best-matching keycode order is chosen,
+       so that the QWERTY and Dvorak layouts can be distinguished.
+
+       * win32/device.c, relay32/kernel32.spec:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added (empty) stub for OpenVxDHandle.
+
+       * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       mmioOpen() now handles correctly MMIO_PARSE flag.
+
+       * controls/edit.c: Luc Tourangeau <luc@macadamian.com>
+       Background color fix when disabled or read only.
+
+       * windows/win.c: Francois Boisvert <francois@macadamian.com>
+       Transfered the window struct memory release from WIN_DestroyWindow to
+       WIN_ReleaseWndPtr.
+
+       * include/winuser.h: Thuy Nguyen <thuy@macadamian.com>
+       DLGITEMTEMPLATE structure had one too many member.
+
+       * debugger/db_disasm.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Prevent crash in debugger.
+
+Fri Apr  2 10:37:42 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * controls/combo.c, controls/listbox.c, include/combo.h:
+       Francis Beaudet <francis@macadamian.com>
+       Implemented the Win95 look and feel.
+
+       * windows/defwnd.c: Francis Beaudet <francis@macadamian.com>
+       Wrote a basic implementation of the WM_PRINT message.
+
+       * windows/dce.c, windows/win.c, windows/winproc.c, misc/callback.c:
+       Francois Boisvert <francois@macadamian.com>
+       Suspend all windows locks before the control is passed to the
+       application.
+       Also fixed some bugs in dce.c
+
+       * Make.rules.in, Makefile.in:
+       Joerg Mayer <jmayer@telesun2.telemation.de>
+       - Remove some old rc make stuff
+       - "make clean" omitted some include subdirs
+
+       * relay32/ddraw.spec, graphics/ddraw.c:
+       Lionel Ulmer <ulmer@directprovider.net>
+       Added DllClassFactory to DirectDraw.
+
+Thu Apr  1 12:05:44 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/x11drv/keyboard.c: Marcus Meissner <marcus@jet.franken.de>
+       Split off keysym/deadchar -> char mapping, use it in DetectLayout.
+
+       * tsx11/X11_calls, tsx11/ts_xlib.c, windows/clipboard.c, windows/message.c, windows/ttydrv/clipboard.c, windows/ttydrv/init.c, windows/win.c, windows/winpos.c, windows/x11drv/clipboard.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/wnd.c, controls/menu.c, graphics/x11drv/bitmap.c, include/clipboard.h, include/ts_xlib.h, include/ttydrv.h, include/win.h, include/winpos.h, include/x11drv.h:
+       Alex Korobka <alex@aikea.ams.sunysb.edu>
+       Fixes for ignored WVR_[VH]REDRAW flags, made minimization in managed
+       mode go through window manager, small bugfixes for menu and window
+       code, extended clipboard driver model to handle formats other than
+       text.
+
+       * controls/edit.c: Pavel Roskin <pavel_roskin@geocities.com>
+       EC_USEFONTINFO means es->char_width/3, not es->char_width. This is
+       true for multiline controls too, as my tests show.
+
+       * dlls/comctl32/listview.c, include/listview.h:
+       Luc Tourangeau <luc@macadamian.com>
+       Added support for icon and smallicon views.
+
+       * loader/dos/dosvm.c: Ove Kaaven <ovek@arcticnet.no>
+       Made DOSVM_GetTimer survive EAGAIN errors...
+
+       * include/comm.h, misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
+       Implemented async comm buffers (but probably not bugfree), and along
+       with them, the functionality of async event notifications, mong them
+       EnableCommNotification. Removed a previous hack that was faking the
+       buffers, since we now have real buffers...
+
+       * include/wine/winuser16.h: Ove Kaaven <ovek@arcticnet.no>
+       Added CN_* flags used in WM_COMMNOTIFY.
+
+       * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
+       Implement the EnumAttachedSurface method.
+
+       * ole/ole2.c: Noel Borthwick <noel@macadamian.com>
+       Implementation for OleCreateMenuDescriptor, OleSetMenuDescriptor and
+       OleDestroyMenuDescriptor along with a bunch of internally used methods
+       and data structures.
+
+       * ole/guid.c, include/initguid.h, include/shlguid.h, include/wine/obj_olefont.h, include/wtypes.h:
+       Adrian Thurston <adriant@corel.ca>
+       initguid.h should only contain the macro that defines the guids.
+       Added olectl.h to guid.c so some needed guids get defined.
+       Made GUID_NULL an actual guid set to 0,0,0...
+
+       * if1632/gdi.spec, objects/gdiobj.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added GdiSignalProc() stub.
+
+       * misc/callback.c, relay32/user32.spec, windows/user.c, if1632/thunk.c, if1632/user.spec, include/callback.h, include/task.h, include/user.h, loader/main.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Added USER32.UserSignalProc to Callout table.
+       Implemented built-in UserSignalProc().
+       Don't announce Win3.1-style USER handler any more.
+
+       * win32/ordinals.c, include/process.h, loader/ne/module.c, loader/ne/segment.c, loader/task.c, scheduler/process.c, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Implemented PROCESS_CallUserSignalProc().
+       Send USER signals at various appropriate places.
+       Moved [GS]etProcessDword() to scheduler/process.c.
+
+       * dlls/shell32/Makefile.in, dlls/shell32/brsfolder.c, dlls/shell32/pidl.c, dlls/shell32/shelllink.c, dlls/shell32/shlmenu.c, include/shlobj.h, relay32/shell32.spec:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       All 19 FileMenu_* functions, some as stubs, some implemented.
+
+       * dlls/shell32/shellole.c, dlls/shell32/shellord.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       SHCLSIDFromString, StrToOleStr implemented.
+       RLBuildListOfPaths stub.
+
+       * dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       DllGetVersion (not yet exported).
+       Small change to SHAppBarMessage.
+
+       * relay32/winmm.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added DrvClose, DrvDefDriverProc, DrvOpen, DrvOpenA, DrvSendMessage.
+
+       * if1632/mmsystem.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added StackEnter() and StackLeave() stubs
+
+       * multimedia/mci.c, multimedia/mmsystem.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Starting implementation of MCI creator tasks
+       Fixed bug in MCI_OPEN handling (thanks to Adam for reporting this one)
+       Better implementation of mmTaskCreate16
+
+       * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added creator task to MCI struct.
+
+       * dlls/commdlg/filedlg.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Replaced 0xC000 by symbolic constants.
+
+       * dlls/comctl32/imagelist.c: Francis Beaudet <francis@macadamian.com>
+       Fixed small ==, != mixup.
+
+       * windows/defdlg.c, windows/defwnd.c:
+       Luc Tourangeau <luc@macadamian.com>
+       Implemented WM_NOTIFYFORMAT.
+
+       * loader/elf.c: Marcus Meissner <marcus@mud.de>
+       "foo" was not translated to "foo.so" in elf loader.
+
+       * include/bitmap.h, objects/bitmap.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       LoadBitmap16()/LoadImage16() calling sequence simplified.
+
+       * loader/module.c, loader/ne/resource.c, misc/callback.c, if1632/wprocs.spec:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Allow NULL NE resource handler; call the default handler directly.
+       Removed WPROCS / Callbacks support for WineLib resource handlers.
+
+       * include/process.h, relay32/utthunk.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Made Universal Thunk list per-process, not system global.
+
+       * include/commctrl.h: Paul Quinn <paulq@corel.ca>
+       Additional macro definitions.
+
+       * dlls/comctl32/tab.c: Francis Beaudet <francis@macadamian.com>
+       Implemented TCM_ADJUSTRECT.
+
+       * msdos/int09.c, msdos/ioports.c:
+       Michael Veksler <mveksler@techunix.technion.ac.il>
+       Removed "implicit declaration" warnings.
+
+       * graphics/d3d_private.h: Lionel Ulmer <ulmer@directprovider.net>
+       Fixed OpenGL devices implementation.
+
+       * windows/queue.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       In UserYield16, when current thread is a 32 bit one which hold the
+       Win16Lock, must take care of a LockCount > 1.
+
+       * */*.c:
+       Patrik Stridvall <ps@leissner.se>
+       More code moved to the X11 driver (bitmap and palette and misc).
+
+----------------------------------------------------------------
+Sun Mar 28 15:20:00 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/winbase.h, include/wingdi.h:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Move DM* defines from winbase.h -> wingdi.h.
+
+       * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
+       Fixed QueryInterface functions for IDirect3D 1 and 2.
+
+       * ole/nls/Attic/dnk.nls: Apparently no longer needed.
+
+       * controls/menu.c, controls/uitools.c, dlls/comctl32/comboex.c, graphics/x11drv/brush.c, graphics/x11drv/graphics.c, include/debug.h, include/debugdefs.h, memory/global.c, misc/ddeml.c, windows/x11drv/event.c:
+       Dimitrie O. Paun <dimi@cs.toronto.edu>
+       Changed some debug messages from one channel to another, to clean up a
+       bit the debug channel usage.
+
+       * loader/module.c: Jess Haas <paranoid07@hotmail.com>
+       Fixed CreateProcessA so it can handle commandlines with arguments and
+       no .exe.
+
+       * loader/ne/module.c: Jess Haas <paranoid07@hotmail.com>
+       Fixed GetModuleHandle16.
+
+       * windows/x11drv/keyboard.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Added Russian keyboard support.
+
+       * include/winuser.h, relay32/user32.spec, windows/user.c:
+       Lionel Ulmer <ulmer@directprovider.net>
+       Added stub for SetSystemCursor.
+
+       * win32/file.c: Steffen Moeller <moeller@ebi.ac.uk>
+       SetFileAttributesA: "implemented" setting of directory flag as test of
+       compatibility.
+
+       * windows/x11drv/keyboard.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Changes in X11DRV_KEYBOARD_DetectLayout in order to implement Russian
+       keyboard support.
+
+       * include/wine/obj_storage.h, ole/Makefile.in, ole/ole2.c, ole/ole2stubs.c, ole/storage.c, ole/variant.c, relay32/ole32.spec, relay32/oleaut32.spec, relay32/user32.spec, windows/input.c, include/ole2.h, include/oleauto.h, include/olectl.h, include/winuser.h:
+       Paul Quinn <paulq@corel.ca>
+       Aaron Barnes <aaronb@corel.ca>
+       Adrian Thurston <adriant@corel.ca>
+       Bundle of new stubs.
+
+       * misc/crtdll.c, misc/ddeml.c, ole/ole2disp.c:
+       Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Added missing WINAPIs.
+
+       * relay32/kernel32.spec, win32/newfns.c:
+       Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Added CreateIoCompletionPort stub.
+
+       * windows/queue.c, windows/message.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Call EVENT_Pending() to flush X11 output queue before blocking in
+       MsgWaitForMultipleObjects().
+       Don't call EVENT_WaitNetEvent in MSG_PeekHardwareMsg.
+       Protect system queue access in hardware_event().
+
+       * windows/user.c, windows/win.c, windows/winpos.c, windows/x11drv/event.c, windows/x11drv/wnd.c, controls/menu.c, windows/dce.c, windows/dialog.c, windows/focus.c, windows/mdi.c, windows/message.c, windows/nonclient.c:
+       Francois Boisvert<francois@macadamian.com>
+       Fixed some bugs in thread safeness for wnd struct.
+
+       * libtest/Makefile.in, libtest/hello3.c, libtest/hello3res.rc:
+       Pavel Roskin <pavel_roskin@geocities.com>
+       Made libtest/hello3 work again, now with Windows-compatible resource
+       loading.
+
+       * include/imm.h, include/mmsystem.h, include/msacm.h, include/windef.h, include/wtypes.h:
+       Jiuming Luo <jiuming_luo@yahoo.com>
+       Moved macro DECLARE_HANDLE() (in msacm.h and wtypes.h) to windef.h,
+       then deleted the duplicated typedefs (in imm.h and mmsystem.h).
+
+       * misc/printdrv.c: Klaas van Gend <klaas@vangend.demon.nl>
+       Rewrote EnumPrintersA, added CriticalSection around Registry reads and
+       implemented PRINTER_INFO_2 request.
+
+       * windows/x11drv/keyboard.c: Jonathan Naylor <g4klx@pop.agri.ch>
+       Added Swiss German keyboard layout.
+
+       * dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, dlls/shell32/folders.c, dlls/shell32/iconcache.c, dlls/shell32/pidl.c, dlls/shell32/shell32_main.h, dlls/shell32/shlview.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       - adjusted printing of refcounts to be equal
+       - cleaning up icon cache on PROCESS_DETACH
+       - fixed ascii/unicode use in SH/ILCreateFromPath
+       - fixed small memory leak in shellview
+
+       * loader/dos/dosvm.c: Marcus Meissner <marcus@jet.franken.de>
+       Empty DOSVM_QueueEvent for !MZ_SUPPORTED.
+
+       * programs/cmdlgtst/cmdlgtst.c:
+       Pavel Roskin <pavel_roskin@geocities.com>
+       Fixed warnings.
+
+       * include/commdlg.h: Pavel Roskin <pavel_roskin@geocities.com>
+       Changed CHOOSECOLOR[AW].Flags from UINT to DWORD.
+
+       * windows/painting.c, windows/scroll.c, windows/ttydrv/init.c, windows/ttydrv/wnd.c, windows/win.c, windows/winpos.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/wnd.c, controls/menu.c, include/region.h, include/ts_xf86vmode.h, include/ts_xutil.h, include/ttydrv.h, include/win.h, include/x11drv.h, objects/region.c, tools/make_X11wrappers, tsx11/X11_calls, tsx11/ts_xf86vmode.c, tsx11/ts_xutil.c, windows/dce.c, windows/nonclient.c:
+       Alex Korobka <alex@aikea.ams.sunysb.edu>
+       Moved hrgnUpdate from client to window coordinates, made nonclient
+       painting depend on the update region, reworked SetWindowPos() and
+       RedrawWindow() to speed up update region calculation, made -desktop
+       work properly, added WM_CANCELMODE here and there, fixed several
+       window activation bugs that crept in since the last time.
+
+       * windows/message.c: Alex Korobka <alex@aikea.ams.sunysb.edu>
+       Fixed occasional loss of SendMessage() return value.
+
+       * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
+       Added initialisation of the pixmap_depth field in
+       Xlib_DirectDrawCreate.
+
+       * msdos/ioports.c: Jess Haas <paranoid07@hotmail.com>
+       Fixed a warning.
+
+       * msdos/int2f.c: Jess Haas <paranoid07@hotmail.com>
+       Added stub for int2f 4b.
+
+       * multimedia/mmsystem.c: Chris Morgan <cmorgan@wpi.edu>
+       James Abbatiello <abbeyj@wpi.edu>
+       Fixed memory leak in waveOutOpen/waveOutClose.
+
+       * graphics/psdrv/escape.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       More Escapes for the PostScript driver.
+
+Sat Mar 27 16:56:13 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * graphics/d3dcommon.c, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c:
+       Francois Gouget <fgouget@psn.net>
+       Adapted to the interface/implementation separation.
+       Now uses ICOM_THIS to access the implementation structures.
+       Replaced 'this' with 'This' for ICOM_THIS.
+       Direct access to the virtual table has been eliminated too.
+
+       * graphics/d3d_private.h, graphics/ddraw_private.h:
+       Francois Gouget <fgouget@psn.net>
+       Updated to include all the implementation aspects that were previously
+       in the public includes.
+
+       * graphics/vga.c: Francois Gouget <fgouget@psn.net>
+       Removed direct access to the virtual table
+
+       * include/d3d.h, include/ddraw.h: Francois Gouget <fgouget@psn.net>
+       Removed all implementation aspects.
+       Modified to use the latest ICOM macros.
+       Added the macros for use in C.
+       Added the method parameter names (when I had them).
+
+       * include/module.h, include/pe_image.h, include/thread.h, loader/module.c, loader/pe_image.c, scheduler/process.c, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed sequence of DLL_PROCESS_DETACH notification calls.
+       Moved PE_MODREF flags to WINE_MODREF level.
+       Better handling of LoadLibraryEx flags.
+       PE_InitTls() changed to work only on the current thread.
+
+       * include/server.h, scheduler/process.c, server/trace.c:
+       Added cmd line in new_process request.
+
+       * scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       All threads created with CreateThread are 32-bit threads.
+
+       * dlls/shell32/Makefile.in, dlls/shell32/regstream.c, dlls/shell32/shellord.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Reading of binary streams implemented (SHOpenRegStream).
+
+       * msdos/int25.c, msdos/int26.c:
+       Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Fixed int25 & int26 error code.
+
+       * loader/task.c, windows/queue.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Allow UserYield16 to be called from 32-bit thread.
+
+       * include/oledlg.h, include/winbase.h:
+       Albert Den Hann <albertd@corel.ca>
+       Additional macro definitions.
+
+       * graphics/x11drv/bitmap.c, include/bitmap.h, objects/bitmap.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Fixed {S|G}etBitmapBits in x11drv.  Removed BITMAP_GetPadding.
+
+       * objects/metafile.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Fixed metafile recording of CreatePatternBrush.
+
+Thu Mar 25 16:42:28 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/comctl32/imagelist.c, dlls/comctl32/toolbar.c, include/commctrl.h, include/toolbar.h, dlls/comctl32/commctrl.c:
+       Pascal Lessard <pascal@macadamian.com>
+       Change the AddBitmap function. Implement flat toolbar. Change
+       CreateToolbarEx. Implement partially the hot buttons for toolbar.
+
+       * msdos/int16.c:
+       Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
+       Implemented Get Shift Flags function.
+
+       * dlls/comctl32/treeview.c: Marcus Meissner <marcus@jet.franken.de>
+       Missing WINAPI.
+
+       * graphics/painting.c: David Luyer <luyer@ucs.uwa.edu.au>
+       Changed stdlib.h to string.h.
+
+       * dlls/ntdll/time.c: David Luyer <luyer@ucs.uwa.edu.au>
+       Added string.h.
+
+       * misc/ddeml.c, multimedia/msvideo.c, ole/safearray.c, programs/avitools/aviinfo.c, programs/avitools/aviplay.c, programs/avitools/icinfo.c, win32/console.c:
+       David Luyer <luyer@ucs.uwa.edu.au>
+       Changed "strings.h" to "string.h".
+
+       * graphics/x11drv/bitblt.c, windows/nonclient.c:
+       Randy Weems <rweems@home.com>
+       Fixed off-by-one error if bitblt width or height is negative.
+
+       * dlls/comctl32/tab.c, include/tab.h:
+       Francis Beaudet <francis@macadamian.com>
+       Implemented:
+       - showing the selected tab as highlighted
+       - support for drawing the focus rectangle
+       - basic keyboard support
+       - support for a tab with horizontal scrolling.
+
+       * files/profile.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Thread-safe implementation of profile functions (Windows and Wine).
+
+       * include/message.h, loader/main.c, windows/timer.c:
+       Stephane Lussier <stephane@macadamian.com>
+       Made the timer code thread safe.
+
+       * windows/dialog.c: Francis Beaudet <francis@macadamian.com>
+       Fixed possible endless loop.
+
+       * controls/listbox.c: Francis Beaudet <francis@macadamian.com>
+       Fixed LB_GETCURSEL message to return LB_ERR on empty list.
+
+       * dlls/shell32/shell32_main.h, dlls/shell32/shellole.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, include/shlguid.h, include/shlobj.h, include/wine/obj_base.h, include/wine/obj_commdlgbrowser.h, include/wine/obj_contextmenu.h, include/wine/obj_dockingwindowframe.h, include/wine/obj_extracticon.h, include/wine/obj_shellbrowser.h, include/wine/obj_shellextinit.h, include/wine/obj_shellfolder.h, include/wine/obj_shellview.h, dlls/shell32/brsfolder.c, dlls/shell32/contmenu.c, dlls/shell32/folders.c, dlls/shell32/shell32_main.c:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       Use the new header for COM definitions.
+
+       * dlls/shell32/shellord.c, relay32/shell32.spec:
+       Juergen Schmied <juergen.schmied@metronet.de>
+       New stub shell_654.
+
+       * include/treeview.h, dlls/comctl32/treeview.c:
+       Sylvain St.Germain <sylvain@macadamian.com>
+       Implementation of TVM_SORTCHILDRENCB.
+       Implementation of TVI_SORT insertion.
+       Fix display problem when TVIF_IMAGE|TVIF_SELECTEDIMAGE were not set.
+       Fix problems related to TVIS_EXPANDEDONCE.
+
+       * dlls/comctl32/comctl32undoc.c:
+       Sylvain St.Germain <sylvain@macadamian.com.epfl.ch>
+       Fix problem in DPA_QuickSort where the sort order was inverted.
+
+       * include/dosexe.h, include/winbase.h, loader/dos/dosvm.c, loader/dos/module.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Added infrastructure and definitions for general-purpose event and IRQ
+       handling for the Wine dos box. Removed the obsolete MZ_Tick. Added
+       event message loop, message handling, CLI/STI handling, and minimal
+       PIC support.
+
+       * loader/dos/dosmod.c: Ove Kaaven <ovek@arcticnet.no>
+       Added handling of SIGUSR2 for the new event interruption handling,
+       bumping up the protocol revision. Made some debug messages not be
+       output when it's not necessary.
+
+       * msdos/ioports.c: Ove Kaaven <ovek@arcticnet.no>
+       Added port 0x60 for int 0x09, and port 0x20 for PIC handling.
+
+       * include/miscemu.h, msdos/Makefile.in, msdos/interrupts.c:
+       Ove Kaaven <ovek@arcticnet.no>
+       Added int 0x09 and int 0x33.
+
+       * msdos/int33.c: Ove Kaaven <ovek@arcticnet.no>
+       Implemented a int 0x33 handler, with a minimal implementation of the
+       mouse routines, including callbacks.
+
+       * msdos/int09.c: Ove Kaaven <ovek@arcticnet.no>
+       Implemented a int 0x09 handler, and a scancode queue that simulates
+       IRQ 1 in the dos box.
+
+       * include/docobj.h: Paul Quinn <paulq@corel.ca>
+       Creation of docobj.h.
+
+       * objects/dib.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Allow depth of DIB to differ from depth of bitmap in GetDIBits.
+
+Wed Mar 24 15:07:20 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * debugger/editline.c: Abort on input error.
+
+       * include/oledlg.h: Adrian Thurston <adriant@corel.ca>
+       Population of oledlg.
+
+       * windows/x11drv/event.c, windows/painting.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Add IsWindow() checks after SendMessage() returns.
+
+       * msdos/int10.c: Jess Haas <paranoid07@hotmail.com>
+       Fixed a small bug in int10.
+
+       * controls/combo.c: Pascal Lessard <pascal@macadamian.com>
+       COMBO_Size: maintain the height of the RectCombo when the window is
+       resized.
+
+       * include/hook.h, include/winuser.h: Adrian Thurston <adriant@corel.ca>
+       Paul Quinn <paulq@corel.ca>
+       Added various definitions.
+       Moved CWPSTRUCT from hook.h to winuser.h to conform to the SDK.
+
+       * include/windef.h: Jim Aston <jima@corel.ca>
+       Added a few empty macros.
+
+       * include/cursoricon.h, objects/cursoricon.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       CURSORICON_Destroy: missing WINAPI added.
+
+       * misc/winsock.c: Marcus Meissner <marcus@jet.franken.de>
+       Added translation for SO_RCVTIMEO (as seen by IE4).
+
+Tue Mar 23 17:04:10 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * server/process.c: Create startup info for the initial process.
+
+       * include/server.h, scheduler/client.c, scheduler/process.c, scheduler/sysdeps.c, scheduler/thread.c, server/request.c, server/trace.c:
+       Added server pid and tid in init_thread request, and use them in
+       CLIENT_InitThread.
+
+       * include/compobj.h, include/objbase.h, include/ole2.h, include/wine/obj_base.h, include/wine/obj_inplace.h, include/wine/obj_moniker.h, include/winerror.h, include/wtypes.h, ole/Makefile.in, ole/antimoniker.c, ole/bindctx.c, ole/compobj.c, ole/compositemoniker.c, ole/filemoniker.c, ole/itemmoniker.c, ole/moniker.c, ole/storage32.c, relay32/ole32.spec:
+       Noomen Hamza <noomen@macadamian.com>
+       Implemented:
+       - IMoniker interface for FileMoniker,ItemMoniker,AntiMoniker and
+         GenericCompositeMoniker
+       - IRunningObjectTable interface, and
+       - IBindCtx interface.
+
+       * graphics/psdrv/bitmap.c, graphics/psdrv/ps.c, include/psdrv.h:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Added StretchDIBits for the PostScript driver.
+
+       * include/miscemu.h: Ove Kaaven <ovek@arcticnet.no>
+       Added missing ending pragma pack.
+
+       * misc/comm.c: Rein Klazes <rklazes@casema.net>
+       Corrected small bug in GetCommState16. Parity check can be disabled
+       even when a parity bit is used. SetCommState16() can override baudrate
+       setting in wine.conf.
+
+Mon Mar 22 17:47:36 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * loader/module.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Bugfix: cope with quoted arguments for CreateProcess().
+
+       * loader/resource.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fixed typo in SizeofResource().
+
+       * memory/string.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       lstrcpyA can't use strcpy.
+
+       * relay32/builtin32.c, if1632/builtin.c, include/module.h, misc/main.c, miscemu/main.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added -dll option for winelib programs. (Note: will not print warnings
+       on failure currently).
+
+       * relay32/ntdll.spec: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Added strlwr.
+
+       * loader/pe_image.c, msdos/int21.c:
+       Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Cosmetics.
+
+       * if1632/mmsystem.spec, relay32/winmm.spec:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added new stubs (mmTaskXXX, mmThreadXXX, mciExecute).
+
+       * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Started calling mixer as a 32 bit low level driver (no longer 16 bit)
+       Added support for yield proc in mci struct
+       Added mmTaskXXX16 and mmThreadXXX16 functions
+       Refreshed implementation of 16 bit native & asynchronous MCI driver
+       command (through mmtask.tsk).
+
+       * multimedia/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed a few bugs. Started implementing mixerMessage as a 32 bit
+       function (no longer 16 bit).
+
+       * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Implemented mciExecute.
+
+       * include/multimedia.h, multimedia/mci.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added yield proc members to mci struct.
+
+       * include/mmsystem.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added mixer specfic error codes, fixed type in function name.
+
+       * windows/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed return codes for default driver proc.
+
+       * controls/listbox.c: Lawson Whitney <lawson_whitney@juno.com>
+       Made LB_GETCURSEL return focus_item if no item has been selected.
+
+       * windows/x11drv/keyboard.c:
+       Kalevi J Hautaniemi <oh3fg@oh3tr.ele.tut.fi>
+       Added Finnish keyboard layout.
+
+       * misc/main.c, windows/x11drv/clipboard.c, windows/x11drv/keyboard.c, graphics/wing.c, graphics/x11drv/xfont.c, include/wine/winuser16.h, include/winuser.h, include/x11drv.h:
+       Veksler Michael <mveksler@techunix.technion.ac.il>
+       Removed winuser16.h from x11drv.h.
+
+       * include/winspool.h, misc/printdrv.c:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       Implementation of EnumPrintersA, info level 4 and 5.
+
+       * tools/bug_report.pl: Adam Sacarny <magicbox@bestweb.net>
+       Check if the build is stripped, and die if it is.
+       Check for Bash 2.0, and if so use different STDERR->STDOUT redirctor
+       (thanks Ryan Cumming!).
+
+       * windows/mdi.c: Veksler Michael <mveksler@techunix.technion.ac.il>
+       Fixed "reached end of non void..." warnings.
+
+       * documentation/debugging: Marcus Meissner <marcus@jet.franken.de>
+       MessageBox32A -> MessageBoxA
+
+       * loader/module.c, relay32/kernel32.spec:
+       Sergey Turchanov <turchanov@usa.net>
+       Implementation for FreeLibraryAndExitThread.
+       Made GetBinaryType = GetBinaryTypeA.
+
+       * include/task.h, loader/task.c, scheduler/process.c, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Run Win32 processes in their own threads.
+       Process exit sequence adapted.
+
+Sun Mar 21 19:26:26 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * scheduler/sysdeps.c, scheduler/thread.c, include/thread.h, loader/module.c, scheduler/client.c, scheduler/process.c:
+       Changed process initialisation to use the new server requests.
+       Started to move the process init to the right context, not finished yet.
+
+       * include/server/object.h, include/server/process.h, include/server/request.h, include/server/thread.h, server/main.c, server/process.c, server/request.c, server/socket.c, server/thread.c, server/trace.c, include/server.h:
+       Added new_process and init_process request.
+       Split out process creation from thread creation.
+       Changed server initialisation to ensure that we always have a current
+       thread.
+
+       * windows/x11drv/keyboard.c: Robert Pouliot <krynos@clic.net>
+       One small error corrected and the 102th key...
+
+       * misc/comm.c, include/comm.h: Ove Kaaven <ovek@arcticnet.no>
+       Made commerror and eventmask local to each port (for win16), made the
+       win16 routines use port indices instead of UNIX fds (this should make
+       some Visual Basic stuff and similar garbage start working), moved some
+       stuff around (win16 routines at top of file, win32 routines at
+       bottom), made a couple of win32 routines use win32 handles, and added
+       a few hints as to how to implement asynchronous buffers, based on
+       which EnableCommNotification can eventually be implemented.
+
+       * include/winuser.h: Ove Kaaven <ovek@arcticnet.no>
+       Fixed prototypes of a couple of comm routines.
+
+       * loader/ne/module.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Fixed typo.
+
+       * windows/win.c: Francis Beaudet <francis@macadamian.com>
+       Clear update region before WM_NCDESTROY.
+
+       * include/heap.h, memory/heap.c, relay32/utthunk.c, windows/queue.c:
+       Got rid of SYSTEM_LOCK macros.
+
+Sat Mar 20 07:18:26 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * misc/main.c: No longer need to delete system heap critical section.
+
+Fri Mar 19 17:04:25 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * dlls/shell32/shell32_main.c: Francis Beaudet <francis@macadamian.com>
+       Added a check for desktop in SHGetFileInfo.
+
+       * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixed some bugs in MCI message mapping (32A => 16).
+
+       * windows/win.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Fixed WIN_SendDestroyMsg.
+
+       * include/winsock.h: Pavel Roskin <pavel_roskin@geocities.com>
+       Removed definitions for FIONREAD and FIONBIO.
+
+       * windows/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Fixes some return values for DefDriverProc.
+
+       * programs/regapi/regFixer.pl:
+       Sylvain St.Germain <sylvain@macadamian.com>
+       Removed the chop command that was there to get rid of dos ^M.
+       The script now process only unix file format.
+
+       * windows/dialog.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
+       Hide dialog windows created by CreateDialog* in EndDialog just as
+       Windows does.
+
+       * ole/variant.c: Stephane Lussier <stephane@macadamian.com>
+       Set type of destination variant in VariantChangeTypeEx function.
+
+       * windows/x11drv/keyboard.c:
+       Bertho Stultiens <bertho@panter.soci.aau.dk>
+       Fixed Danish keyboard layout.
+
+Thu Mar 18 17:39:58 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * ole/itemmoniker.c, ole/ole2.c, ole/olefont.c, windows/dinput.c, windows/input.c, windows/keyboard.c, windows/message.c, windows/painting.c, windows/queue.c, windows/syscolor.c, windows/sysmetrics.c, windows/user.c, dlls/shell32/iconcache.c, files/dos_fs.c, graphics/ddraw.c, graphics/fontengine.c, include/win.h, loader/main.c, loader/resource.c, misc/lzexpand.c, misc/registry.c, msdos/int10.c, multimedia/init.c, objects/enhmetafile.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Lots of warning fixed, one missing WINAPI in ddraw.c added.
+
+       * dlls/comctl32/treeview.c: Sylvain St.Germain <sylvain@macadamian.com>
+       Implements +/-, PgUp/PgDown, Home/End, Left/Right, Up/Down.
+
+       * relay32/msvfw32.spec: Marcus Meissner <marcus@jet.franken.de>
+       msvfw32.spec brought up to date (forgot it in last msvfw32 patch).
+
+       * relay32/kernel32.spec, misc/toolhelp.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Added Module32* stubs.
+
+Wed Mar 17 15:54:44 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * windows/x11drv/keyboard.c:
+       Bruno Afonso <bruno.afonso@camoes.rnl.ist.utl.pt>
+       Added Portuguese keytable.
+
+       * windows/x11drv/keyboard.c: Robert Pouliot <krynos@clic.net>
+       Added Canadian French keyboard layout.
+
+       * windows/x11drv/keyboard.c:
+       Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
+       Added UK keyboard layout.
+
+       * msdos/int10.c, msdos/int16.c, msdos/int21.c, msdos/int2f.c:
+       <paranoid07@hotmail.com>
+       Fixed/implemented various interrupt functions.
+
+       * controls/menu.c, dlls/shell32/dataobject.c, dlls/shell32/shlfolder.c, graphics/metafiledrv/text.c, include/winioctl.h, win32/kernel32.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Fixed some warnings. removed some unneccessary includes, removed one
+       direct WND* access in controls/menu.c.
+
+       * windows/win.c: Francis Beaudet <francis@macadamian.com>
+       Implemented a more defensive version of WIN_SendDestroyMsg.
+
+       * include/Makefile.in: Alexander V. Lukyanov <lav@long.yar.ru>
+       Install headers from $(SRCDIR).
+
+       * include/wine/obj_base.h: Francois Gouget <fgouget@psn.net>
+       Removed the obsolete ICOM macros.
+
+       * include/vfw.h: Francois Gouget <fgouget@psn.net>
+       Moved the APIs closer to the corresponding COM interface, removed two
+       duplicates and added 2-3 macros for A/W APIs.
+
+       * msdos/int15.c: <paranoid07@hotmail.com>
+       Added some stubs for int15 functions.
+
+       * windows/message.c, windows/queue.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Inter-thread SendMessage() bugfixes:
+       - Insert new message to be received at the *end* of the SM_PENDING_LIST.
+       - Do *not* process received messages in ReplyMessage().
+       - Clear the QS_SMRESULT flag only immediatedly before waiting.
+
+       * ole/storage32.c: Thuy Nguyen <thuy@macadamian.com>
+       Return error if not a valid OLE compound file.
+
+       * dlls/version/install.c: Douglas Ridgway <ridgway@winehq.com>
+       Fix crash if lpuCurDirLen or lpuDestDirLen==0.
+
+       * misc/cdrom.c: Marcus Meissner <marcus@jet.franken.de>
+       Make cdrom.c compile on FreeBSD (FreeBSD does not seem to have *SEEK,
+       strange).
+
+Tue Mar 16 16:29:26 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/dosexe.h, include/module.h, include/pe_image.h, loader/dos/module.c, loader/module.c, loader/ne/module.c, loader/pe_image.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Pass CreateProcess() SECURITY_ATTRIBUTES through to PROCESS_Create().
+
+       * include/process.h, include/thread.h, scheduler/process.c, scheduler/thread.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Pass new arguments (suspend/inherit) to the server.
+
+       * include/server.h, include/server/thread.h, scheduler/client.c, server/request.c, server/thread.c, server/trace.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Handle suspend/resume_thread requests in phase STARTING correctly.
+       Set initial suspend count for threads created with CREATE_SUSPENDED.
+       Set 'inheritable' flag for process/thread handles.
+
+       * dlls/comctl32/monthcal.c, dlls/comctl32/nativefont.c, dlls/comctl32/pager.c, dlls/comctl32/progress.c, dlls/comctl32/propsheet.c, dlls/comctl32/rebar.c, dlls/comctl32/status.c, dlls/comctl32/tab.c, dlls/comctl32/toolbar.c, dlls/comctl32/tooltips.c, dlls/comctl32/trackbar.c, dlls/comctl32/treeview.c, dlls/comctl32/updown.c, dlls/comctl32/animate.c, dlls/comctl32/comboex.c, dlls/comctl32/commctrl.c, dlls/comctl32/datetime.c, dlls/comctl32/flatsb.c, dlls/comctl32/header.c, dlls/comctl32/hotkey.c, dlls/comctl32/ipaddress.c, dlls/comctl32/listview.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Removed no longer necessary win.h include, added now necessary other
+       includes (win.h used only by UPDOWN now).
+
+       * misc/comm.c: Marcus Meissner <marcus@jet.franken.de>
+       debug.h must be last, or we get ERR() macro problems again.
+
+       * dlls/comctl32/tooltips.c: Francis Beaudet <francis@macadamian.com>
+       Fixed a slight bug that was included in the change from WND ptr to
+       hwnd last week.
+
+       * loader/main.c, misc/callback.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Fix compiler warnings.
+
+       * dlls/comctl32/imagelist.c, dlls/comctl32/treeview.c, include/treeview.h:
+       Sylvain St.Germain <sylvain@macadamian.com>
+       Fixed some graphical problems of the treeview and added support LMB
+       click on +/- sign to open and close.
+       Fixed a bug in imagelist where the last image could not be displayed.
+
+       * windows/x11drv/event.c:
+       Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Avoid unnecessary error messages.
+
+       * windows/hook.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
+       Ignore HIWORD of boolean return values of 16-bit hook procedures, to
+       match buggy Windows behaviour.
+
+       * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
+       Corrected bug in enumeration function.
+
+       * windows/win.c: Pavel Roskin <pavel_roskin@geocities.com>
+       Fixed bug introduced in WIN_FindWindow.
+
+       * dlls/comctl32/tab.c: Thuy Nguyen <thuy@macadamian.com>
+       0 is a valid index for a tab item.
+       CreateSolidBrush takes a COLORREF as a parameter.
+       Tab controls were always displayed in the top left corner.
+
+Mon Mar 15 16:15:17 1999  Alexandre Julliard  <julliard@winehq.com>
+
+       * include/wine/obj_dragdrop.h, include/wine/obj_inplace.h:
+       Francois Gouget <fgouget@psn.net>
+       Updated the interfaces to use the latest ICOM macros.
+
+       * documentation/status/multimedia: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Updated.
+
+       * if1632/mmsystem.spec, include/mmsystem.h, include/multimedia.h, multimedia/Makefile.in, multimedia/mci.c, multimedia/mcistring.c, multimedia/mmsystem.c, relay32/winmm.spec:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Moved all MCI internal functions/variables/macros to mci.c.
+       Changed some interface names.
+
+       * include/digitalv.h, multimedia/mciavi.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Make use of digitalv.h file.
+
+       * multimedia/init.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Changed how list of loadable MCI drivers is obtained.
+
+       * documentation/keyboard: Ove Kaaven <ovek@arcticnet.no>
+       Describes in newbie terms how to add new keyboard layouts.
+
+       * windows/x11drv/keyboard.c: Ove Kaaven <ovek@arcticnet.no>
+       Better comments, and added ANSI codepages in table.
+       US keyboard contributed by Uwe Bonnes.
+       French keyboard contributed by Eric Pouech.
+       German keyboard contributed by Ulrich Weigand.
+       Danish keyboard contributed by Bertho Stultiens.
+
+       * dlls/commdlg/colordlg.c, dlls/commdlg/filedlg.c, dlls/commdlg/finddlg.c, dlls/commdlg/fontdlg.c, dlls/commdlg/generic.c, dlls/commdlg/printdlg.c, include/commdlg.h:
+       Klaas van Gend <klaas@vangend.demon.nl>
+       - Reimplementation of the CommDlg ExtendedError mechanism using TLS.
+       - Some header inclusion cleanup.
+
+       * multimedia/mcimidi.c, multimedia/mciwave.c, multimedia/mmio.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Cosmetic fixes.
+
+       * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Makes use of new CDAUDIO_Seek() function.
+
+       * msdos/int2f.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Various fixes for MSCDEX traps.
+
+       * misc/cdrom.c, include/cdrom.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Added new function CDAUDIO_Seek().
+
+       * include/driver.h, windows/driver.c:
+       Eric Pouech <Eric.Pouech@wanadoo.fr>
+       Better 16/32 bit driver messages mapping and handling.
+       Better protection against bad handles.
+
+       * include/peexe.h, loader/resource.c:
+       Marcus Meissner <marcus@jet.franken.de>
+       Use MESSAGE_RESOURCE_* defines from SDK headers, updated LoadMessage*
+       code.
+
+       * include/Makefile.in: Niels Kristian Bech Jensen <nkbj@image.dk>
+       Fixed make install.
+
 ----------------------------------------------------------------
 Sun Mar 14 17:25:33 1999  Alexandre Julliard  <julliard@winehq.com>