Pass the main exe name in the CREATE_PROCESS debug event.
[wine.git] / ChangeLog
blob122cb9e5202b6934dd51db27faa5daca19a84cbe
1 ----------------------------------------------------------------
2 2000-05-26  Alexandre Julliard  <julliard@winehq.com>
4         * controls/listbox.c: Serge Ivanov
5         - Added handling of WM_MOUSEACTIVATE message
6         - Added in_focus field to internal listbox's structure. This flag is set on
7           receiving WM_SETFOCUS message and is reseted on WM_KILLFOCUS. All calls to
8           GetFocus function were replaced with checks of this flag.
9         - In LISTBOX_HandleLButtonDown: focus is set only if 'in_focus' flag is
10           clear
12         * dlls/dplayx/dplay.c, dlls/dplayx/dplayx_global.c, dlls/dplayx/dplayx_global.h, dlls/dplayx/name_server.c, dlls/dplayx/name_server.h:
13         Peter Hunnisett <hunnise@nortelnetworks.com>
14         Started local name server framework.
16         * dlls/commdlg/finddlg.c, dlls/commdlg/fontdlg.c, dlls/commdlg/printdlg.c, include/commdlg.h, dlls/commdlg/cdlg.h, dlls/commdlg/cdlg_En.rc, dlls/commdlg/comdlg32.spec, dlls/commdlg/filedlg.c:
17         Huw D M Davies <h.davies1@physics.ox.ac.uk>
18         Add PrintSetup dialog and support for hooks and templates.
19         Move 16 bit api definitions out of commdlg.h to cdlg.h
21         * controls/edit.c: Henning Hoffmann
22         Don't send EN_CHANGE after painting the edit.
23         Send it wherever text is changed.
25         * controls/edit.c: Ulrich Czekalla <ulrichc@corel.com>
26         Moved the EN_UPDATE notification out of the paint handler. Instead,
27         the notification is sent when an InvalidateRect is made after
28         modifying the text.
30         * dlls/comctl32/tooltips.c:
31         Francois Methot (Macadamian)
32         Fixed the blank color palette tooltip bug by triggering a refresh of
33         the tooltip with UpdateWindow function instead of calling directly the
34         refresh function.
36         * debugger/Makefile.in, debugger/external.c, misc/Makefile.in, misc/ext_debugger.c:
37         James Juran <juran@cse.psu.edu>
38         DEBUG_ExternalDebugger() needs to be a part of wine, not winedbg.
40 2000-05-25  Alexandre Julliard  <julliard@winehq.com>
42         * Make.rules.in:
43         Do not clear suffixes list (breaks BSD make).
45         * dlls/winspool/info.c, include/winspool.h:
46         Huw D M Davies <h.davies1@physics.ox.ac.uk>
47         Move winspool to unicode.
48         Minor bug fixes.
50         * dlls/comctl32/trackbar.c:
51         Aric Stewart <aric@codeweavers.com>
52         Reworked the thumb drawing code, thumb calculation code, channel
53         calculation code, and corrected some bugs in how tics are drawn and
54         how clicks are handled.
56         * controls/edit.c:
57         Louis-Philippe Gagnon (of Macadamian Technologies for Corel)
58         Added event handler for WM_MBUTTONDOWN (sends WM_PASTE message).
60         * dlls/comctl32/toolbar.c:
61         Chris Morgan <cmorgan@wpi.edu>
62         Use clipping regions to reduce the amount of processing performed when the
63         toolbar is repainting.  Reduces processing by approximately 85-95% in most
64         cases.
66         * dlls/comctl32/treeview.c:
67         Gerard Patel <g.patel@wanadoo.fr>
68         Fixes crash when calling Treeview_EndEditLabelNow and no node is
69         currently edited.
71 2000-05-24  Alexandre Julliard  <julliard@winehq.com>
73         * dlls/comctl32/flatsb.c:
74         Susan Farley <sfarley@codeweavers.com>
75         Defer to standard scrolling APIs for non-flatSB specific functions so
76         that flatSBs show up and behave properly, just not with flat properties.
78         * graphics/x11drv/dib.c:
79         Rob Farnum <robf@codeweavers.com>
80         Separate out the 32bit case from the 24bit case, and copy 3bytes of
81         source for every 4bytes of input, into the destination for the 24bit
82         case.
84         * include/winbase.h, include/winnt.h, win32/file.c:
85         Francois Gouget <fgouget@psn.net>
86         Sorted out a few misplaced definitions.
87         Added some missing definitions related to file handling and virtual
88         memory manipulation.
89         Added IsTextUnicode.
91         * dlls/comctl32/treeview.c:
92         Aric Stewart <aric@codeweavers.com>
93         Added handling for TVS_SINGLEEXPAND.
95         * dlls/comctl32/tab.c:
96         Aric Stewart <aric@codeweavers.com>
97         Corrected the problem where a tab control marked multiline but has
98         only one tab was being justified to fill the whole tab space.
100         * msdos/dpmi.c: Marcus Meissner <marcus@jet.franken.de>
101         Commented out broken __asm__, added comments where it is broken.
103         * dlls/comctl32/listview.c:
104         Martin Fuchs <martin-fuchs@gmx.net>
105         Inserted a missing call to SetWindowPos(). With this change the header
106         control is visible again in list views with report style.
108         * Make.rules.in, tools/wrc/Makefile.in:
109         Revived the GEN_C_SRCS variable to support wrc lex/yacc sources.
111 2000-05-23  Alexandre Julliard  <julliard@winehq.com>
113         * windows/message.c:
114         Alexandre Julliard <julliard@codeweavers.com> (for Corel)
115         Send a normal mouse message code in WM_PARENTNOTIFY, even if the
116         actual message was a non-client one.
118         * server/registry.c, dlls/ddraw/main.c, dlls/opengl32/wgl.c, dlls/x11drv/x11drv_main.c, include/x11drv.h:
119         Patrik Stridvall <ps@leissner.se>
120         Fixed issues found by winapi_check.
122         * tools/winapi_check/modules.dat, tools/winapi_check/modules.pm, tools/winapi_check/nativeapi.dat, tools/winapi_check/win32/opengl32.api, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_function.pm, tools/winapi_check/winapi_local.pm, tools/winapi_check/winapi_options.pm:
123         Patrik Stridvall <ps@leissner.se>
124         - Updated API files
125         - Better headers and prototype checking
126         - Prototype checking now called --prototype instead of --headers
127         - New options --headers-{duplicated,misplaced} for
128           duplicated/misplaced functions checking of the headers.
129         - Minor bug fixes.
131         * Make.rules.in, configure, configure.in:
132         Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
133         If system doesn't have OpenGL, don't refer to libopengl32.so.
135         * dlls/ole32/datacache.c, dlls/ole32/defaulthandler.c:
136         Abey George (of Macadamian/Corel)
137         When you open files with Embedded objects, they were not getting drawn
138         correctly.  When you paste OLE objects with presentation data, they
139         were not getting drawn correctly.
141         * controls/menu.c: Rob Farnum <robf@codeweavers.com>
142         Post a WM_CANCELMODE message to wake up the internal menu handling
143         code. This fixes the problem of a menu being orphaned when the parent
144         window disappears, or if the parent loses focus.
146         * dlls/winsock/socket.c:
147         Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
148         Fix a mismatch between format string and parameter.
150         * dlls/comctl32/updown.c:
151         Susan Farley <sfarley@codeweavers.com>
152         SetBuddy no longer overwrites its superclass' WndProc property when
153         the buddy has already been subclassed, eliminating the infinite loop
154         that resulted.
156         * configure, configure.in:
157         John R. Sheets <jsheets@codeweavers.com>
158         Cleaned up X11 extension tests.
160         * controls/edit.c: Ulrich Czekalla <ulrichc@corel.com>
161         Capture ^V,^X,^C and translate it to the corresponding message for
162         paste, cut, copy.
164         * dlls/opengl32/make_opengl_spec, dlls/opengl32/opengl32.spec, dlls/opengl32/wgl.c:
165         Lionel Ulmer <lionel.ulmer@free.fr>
166         - fixed the OpenGL32 spec file (and the make_opengl_spec tool)
167         - prevent HalfLife from crashing when it frees three times the same
168           rendering context
170         * graphics/vga.c, include/vga.h:
171         Ove Kaaven <ovek@arcticnet.no>
172         Improved DirectDrawPalette handling (set it on init, not every time it
173         changes). Added VGA_WriteChars() function.
175         * msdos/int33.c: Ove Kaaven <ovek@arcticnet.no>
176         Scale mouse coordinates to default width 640.
178         * dlls/ddraw/ddraw/main.c:
179         Ove Kaaven <ovek@arcticnet.no>
180         Made WINE_DirectDraw a decorationless popup window. Fixes mouse
181         coordinates previously offset by the invisible decorations.
183         * include/winnt.h:
184         Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
185         #undef DELETE before (re)defining it.
187         * dlls/comctl32/tooltips.c:
188         Chris Morgan <cmorgan@wpi.edu>
189         Fixed tooltips.
191         * dlls/comctl32/toolbar.c:
192         Chris Morgan <cmorgan@wpi.edu>
193         Reduce toolbar redrawing and flicker by calling RedrawWindow() in
194         TOOLBAR_MouseMove() only if hot effect applies to the current hot
195         button.  Restore bHot flag of hot button in TOOLBAR_LButtonUp() to
196         restore hot effect properly.
198         * controls/listbox.c: Serge Ivanov
199         Fixed WM_LBUTTONDBLCLK handling.
201         * include/win.h, include/x11drv.h, windows/defwnd.c, windows/nonclient.c, windows/x11drv/wnd.c:
202         Susan Farley <sfarley@codeweavers.com>
203         Set and retrieve the window icon that is drawn under managed mode
204         (based on the work of Andrew Lewycky for Corel).
206         * dlls/comctl32/toolbar.c:
207         Aric Stewart <aric@codeweavers.com>
208         Corrected a problem of when oldHit is negative and we try to use it as
209         an index into the buttons array.
211         * include/windows.h: Francois Gouget <fgouget@psn.net>
212         Should include commdlg.h.
214         * include/windef.h: Francois Gouget <fgouget@psn.net>
215         Define the _X86_ macro on Intel processors.
217         * controls/edit.c:
218         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
219         Some part of EDIT_EM_LineLength code was commented (broken). Restored
220         the capability to calculate the remaining non-selected chars of a
221         selection area.
223         * dlls/ddraw/ddraw/dga.c, dlls/ddraw/ddraw/x11.c:
224         Lionel Ulmer <lionel.ulmer@free.fr>
225         Remove the PRIMARYSURFACE attribute from back buffers.
227         * dlls/comctl32/listview.c:
228         Aric Stewart <aric@codeweavers.com>
229         If a listview is created with LVS_NOCOLUMNEHEADER then wine creates the
230         header like normal but just sets it not visible. This fix lays out
231         those supposedly nonexistent headers to size 0,0. So that even if they
232         become visible they are not drawn.
234         * dlls/commdlg/colordlg.c, include/wine/winuser16.h:
235         Gerard Patel <g.patel@wanadoo.fr>
236         Remove the direct call into core (DIALOG_DoDialogBox).
238         * dlls/ddraw/ddraw/dga.c, dlls/ddraw/ddraw/dga2.c, dlls/ddraw/dga_private.h:
239         Lionel Ulmer <lionel.ulmer@free.fr>
240         Initialize the back-buffer with the correct VTable.
242         * dlls/opengl32/opengl32.spec, dlls/opengl32/wgl.c, dlls/x11drv/x11drv_main.c, dlls/opengl32/make_opengl_spec, wine.ini:
243         Lionel Ulmer <lionel.ulmer@free.fr>
244         - added option to get double-buffered desktop
245         - implemented wglUseFontBitmapsA and wglDeleteContext
247         * tools/wrc/CHANGES, tools/wrc/README.wrc, tools/wrc/dumpres.c, tools/wrc/dumpres.h, tools/wrc/genres.c, tools/wrc/newstruc.c, tools/wrc/newstruc.h, tools/wrc/parser.h, tools/wrc/parser.l, tools/wrc/parser.y, tools/wrc/utils.c, tools/wrc/utils.h, tools/wrc/wrc.h, tools/wrc/wrc.man, tools/wrc/wrctypes.h, tools/wrc/writeres.c:
248         Bertho Stultiens <bertho@akhphd.au.dk>
249         - Implemented animated cursors and icons resource types.
250         - Added partial support for font resources (user supplied fontdir is
251           required).
252         - All resources with inline data (a la RCDATA) now support language,
253           version and characteristics data.
254         - Implemented resource name duplicate checks. It is now an error if
255           two resources of the same type have the same name.
256         - Bugfix: Language propagation was not correct when .res files were
257           generated.
258         - Bugfix: VERSIONINFO now handles memory options.
259         - Bugfix: resource names and the resource type may be equal (e.g. MENU
260           MENU {...}). This support was mistakingly deleted in the upgrade to
261           the builtin preprocessor.
262           The standalone LANGUAGE setting became context sensitive as a consequence
263           of this. Now it *must* end with a newline *after* both expressions and
264           no newlines are allowed within the line (the statement must fit on one
265           line). This is no practical problem though.
267         * tools/winapi_check/output.pm:
268         Francois Gouget <fgouget@psn.net>
269         Send regular messages to stdout so that they are separate from
270         progress messages.
272         * documentation/bugreports:
273         Gerard Patel <g.patel@wanadoo.fr>
274         Regression testing using CVS.
276         * dlls/dplayx/dplay.c, dlls/dplayx/dplayx_global.c, documentation/status/directplay:
277         Peter Hunnisett <hunnise@nortelnetworks.com>
278         - Small fixes/updates
279         - Add support for the DPCONNECTION_DIRECTPLAYLOBBY flag
281         * documentation/winedbg:
282         Eric Pouech <Eric.Pouech@wanadoo.fr>
283         A bit of documentation on new debugging features.
285         * files/directory.c: James Juran <juran@cse.psu.edu>
286         SearchPathA needs to set the last error to ERROR_FILE_NOT_FOUND when
287         it does not find the file.
289         * scheduler/debugger.c:
290         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
291         Use WARN() instead of TRACE() in DebugOutputA().
293         * memory/heap.c:
294         Huw D M Davies <h.davies1@physics.ox.ac.uk>
295         HeapFree on a NULL ptr should return TRUE.
297 2000-05-19  Alexandre Julliard  <julliard@winehq.com>
299         * dlls/comctl32/listview.c:
300         Chris Morgan <cmorgan@wpi.edu>
301         Update nItemWidth in LISTVIEW_SetItem() if LVS_LIST or LVS_SMALLICON
302         mode and item text is wider than the current nItemWidth.
304         * loader/task.c:
305         Ulrich Weigand <weigand@informatik.uni-erlangen.de>U
306         Fixed initialization of INSTANCEDATA in InitTask().
308         * dlls/ole32/storage.c:
309         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
310         StgOpenStorage16: correct arguments to the CreateFile call.
312         * files/dos_fs.c:
313         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
314         DOSFS_DoGetFullPathName: terminate string weh called like .\\file
316         * dlls/icmp/icmp_main.c:
317         Francois Gouget <fgouget@psn.net>
318         Replace the calls to malloc by calls to HeapAlloc and friends.
320         * dlls/comctl32/toolbar.c:
321         Aric Stewart <aric@codeweavers.com>
322         Fixes the line of garbage at the bottom of images and the fact that
323         the buttons in the open dialog box where too tall.
325         * dlls/ole32/Makefile.in, dlls/ole32/ole2conv.spec, dlls/ole32/ole2prox.spec, dlls/ole32/ole2thk.spec, if1632/.cvsignore, if1632/Makefile.in, if1632/ole2conv.spec, if1632/ole2prox.spec, if1632/ole2thk.spec, dlls/Makefile.in:
326         Dimitrie O. Paun <dimi@cs.toronto.edu>
327         Moved if1632/ole2{conv,prox,thk}.spec into dlls/ole32.
329 2000-05-18  Alexandre Julliard  <julliard@winehq.com>
331         * include/d3d.h, include/d3dcaps.h, include/d3dtypes.h, include/dsound.h:
332         Peter Hunnisett <hunnise@nortelnetworks.com>
333         - Added remaining DirectX 3D3 6&7 3D interfaces.
334         - Added d3dcaps.h, d3dtypes.h and rearranged contents according to
335           DirectX 7 headers.
336         - Fixed dsound.h include list (d3d.h->d3dtypes.h).
338         * programs/regapi/README:
339         Juergen Lock <nox@jelal.kn-bremen.de>
340         Minor update.
342         * misc/printdrv.c: Patrik Stridvall <ps@leissner.se>
343         Fixed issues found by winapi_test.
345         * dlls/gdi/gdi32.spec, include/wingdi.h, objects/dc.c, objects/dcvalues.c:
346         Patrik Stridvall <ps@leissner.se>
347         GetRelAbs for some reason takes 2 parameters, even though the second
348         one is ignored at least on Windows NT 3.51 according to Marcus Meissner.
350         * controls/edit.c: Sheri Steeves
351         The edit is now detected correctly if the parent is a combo box. It
352         wasn't working when the combobox was superclassed.
354         * windows/nonclient.c: Francois Boisvert
355         System icons in the small caption bars are displayed with the right size.
357         * dlls/opengl32/make_opengl_norm, dlls/opengl32/opengl_norm.c, dlls/opengl32/wgl.c:
358         Patrik Stridvall <ps@leissner.se>
359         Fixed issues found by winapi_check.
361         * tools/winapi_check/modules.dat, tools/winapi_check/win32/opengl32.api, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_options.pm, tools/winapi_check/winapi_parser.pm:
362         Patrik Stridvall <ps@leissner.se>
363         Minor bug fixes.
365         * dlls/comctl32/tab.c:
366         Francois Gouget <fgouget@psn.net>
367         Convert C++ comments to regular C comments.
369         * dlls/ddraw/dga_private.h, dlls/ddraw/dsurface/dga.c, dlls/ddraw/dsurface/dga2.c, dlls/ddraw/dsurface/x11.c, dlls/ddraw/x11_private.h:
370         Ove Kaaven <ovek@arcticnet.no>
371         Made IDirectDrawSurface::SetPalette set the surface's DIBSection color
372         map to point to the IDirectDrawPalette's own depth conversion color map.
374         * dlls/ddraw/ddraw/main.c, dlls/ddraw/main.c:
375         Ove Kaaven <ovek@arcticnet.no>
376         Initialize an identity mapping in CreatePalette if no depth conversion
377         is necessary. Also fixed a warning.
379         * graphics/x11drv/dib.c: Ove Kaaven <ovek@arcticnet.no>
380         Made X11DRV_DIB_MapColor map back to the original color index if the
381         XImage pixel's physical color is still the same.
383 2000-05-15  Alexandre Julliard  <julliard@winehq.com>
385         * graphics/x11drv/xfont.c:
386         Use the correct display for cached metrics file name.
387         Store metrics in specified config dir.
389         * dlls/x11drv/x11drv_main.c, include/options.h, wine.ini:
390         Make sure all Wine processes share the same X display.
391         Inherit --managed option across processes.
392         Add support for specifying display and managed mode in config file.
394         * dlls/ddraw/convert.c: Ove Kaaven <ovek@arcticnet.no>
395         Use unsigned int instead of unsigned short in DirectDraw
396         depth-conversion color map.
398         * controls/listbox.c:
399         Susan Farley <sfarley@codeweavers.com>
400         Avoid calls to SetFocus when they are unnecessary.
402 2000-05-14  Alexandre Julliard  <julliard@winehq.com>
404         * dlls/comctl32/treeview.c:
405         David Black <dblack@btinternet.com>
406         Implemented TVM_EDITLABELA, plus some improvements to EndLabelEditNow.
408         * dlls/winmm/wineoss/midi.c:
409         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
410         More verbose errors.
412         * windows/nonclient.c: Chris Morgan <cmorgan@wpi.edu>
413         Fixed borders of windows while dragging or sizing to match
414         TWEAK_WineLook setting.
416         * relay32/builtin32.c:
417         Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
418         #include <sys/types.h> before <sys/mman.h>.
420         * misc/Makefile.in, misc/ddeml.c, dlls/Makefile.in, dlls/user/Makefile.in, dlls/user/ddeml.c, dlls/user/ddeml.spec, if1632/.cvsignore, if1632/Makefile.in, if1632/ddeml.spec, if1632/ole2nls.spec:
421         Dimitrie O. Paun <dimi@cs.toronto.edu>
422         Moved DDEML into dlls/user.
424         * dlls/advapi32/registry.c, include/server.h, misc/registry.c, server/registry.c, server/trace.c:
425         Added support for registry values larger than the server buffer.
426         When loading a registry file, automatically determine overlap between
427         key name and file contents based on the first key name.
428         Removed v1 saving code.
429         Save USER\.Default separately into ~/.wine/userdef.reg.
431         * dlls/ddraw/ddraw/dga.c, dlls/ddraw/ddraw/dga2.c, dlls/ddraw/ddraw/main.c, dlls/ddraw/ddraw/x11.c, dlls/ddraw/dga.c, dlls/ddraw/dga2.c, dlls/ddraw/dga_private.h, dlls/ddraw/dsurface/dga.c, dlls/ddraw/dsurface/dga2.c, dlls/ddraw/dsurface/main.c, dlls/ddraw/dsurface/x11.c:
432         Ove Kaaven <ovek@arcticnet.no>
433         Improved DIBSection support for IDirectDrawSurface::GetDC.
435         * graphics/x11drv/opengl.c, dlls/opengl32/wgl.c:
436         Lionel Ulmer <lionel.ulmer@free.fr>
437         - set debug messages after a TRACE_ON test
438         - prevent crash when making the NULL context current
440         * controls/menu.c: Gerard Patel <g.patel@wanadoo.fr>
441         When new menu Id is not found or index > nitems, insert the new menu
442         at end of current menu.
444 2000-05-13  Alexandre Julliard  <julliard@winehq.com>
446         * dlls/ddraw/d3d_private.h, dlls/ddraw/ddraw.spec, dlls/ddraw/ddraw/x11.c, dlls/ddraw/direct3d/mesa.c, dlls/ddraw/main.c, dlls/ddraw/mesa_private.h, include/ddraw.h:
447         Peter Hunnisett <hunnise@nortelnetworks.com>
448         - Added ability to create 3D3 interfaces for Xlib
449         - Changed DD_OK to D3D_OK in some places for consistency
450         - Cleaned up some compiler warnings present without DGA2
451         - Changed order for DirectDrawEnumerateExA to enumerate at least
452           what abilities are known rather than bailing on unsupported flags
453         - Added DirectDrawCreateEx stub
455 2000-05-12  Alexandre Julliard  <julliard@winehq.com>
457         * controls/menu.c:
458         Susan Farley <sfarley@codeweavers.com>
459         Distinguish RADIOCHECK style menu items from standard checkmark menu
460         items.
462         * controls/button.c:
463         Susan Farley <sfarley@codeweavers.com>
464         Like the AUTORADIOBUTTON, the parent of a RADIOBUTTON style button
465         should be sent a BN_CLICKED when it receives the focus.
467         * files/dos_fs.c:
468         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
469         GetFullPathname: add missing termination to the string.
471         * tools/wrc/genres.c, tools/wrc/newstruc.c, tools/wrc/parser.y, tools/wrc/wrc.c:
472         Patrik Stridvall <ps@leissner.se>
473         Fixed byte order on Solaris and FreeBSD.
475         * graphics/metafiledrv/init.c, graphics/psdrv/init.c, graphics/ttydrv/init.c, graphics/win16drv/init.c, graphics/x11drv/Makefile.in, graphics/x11drv/init.c, graphics/x11drv/opengl.c, include/acconfig.h, include/config.h.in, include/debugdefs.h, include/gdi.h, include/wine_gl.h, include/x11drv.h, loader/loadorder.c, dlls/Makefile.in, dlls/ddraw/d3dviewport.c, dlls/ddraw/ddraw/dga.c, dlls/ddraw/ddraw/x11.c, dlls/ddraw/dsurface/x11.c, dlls/ddraw/mesa_private.h, dlls/opengl32/.cvsignore, dlls/opengl32/Makefile.in, dlls/opengl32/make_opengl_ext, dlls/opengl32/make_opengl_norm, dlls/opengl32/make_opengl_spec, dlls/opengl32/opengl32.spec, dlls/opengl32/opengl_ext.c, dlls/opengl32/opengl_ext.h, dlls/opengl32/opengl_norm.c, dlls/opengl32/wgl.c, dlls/opengl32/wgl.h, graphics/enhmetafiledrv/init.c, graphics/painting.c, Make.rules.in, configure, configure.in:
476         Lionel Ulmer <lionel.ulmer@free.fr>
477         Added support for OpenGL.
479         * dlls/shell32/shlfolder.c:
480         Eric Pouech <Eric.Pouech@wanadoo.fr>
481         Fixed absolute path to pidl generation.
483 2000-05-11  Alexandre Julliard  <julliard@winehq.com>
485         * dlls/shell32/shlfolder.c:
486         Alexandre Julliard <julliard@codeweavers.com> (for Corel)
487         Fixed buffer overflow.
489         * dlls/imagehlp/access.c, dlls/imagehlp/integrity.c, dlls/imagehlp/symbol.c, dlls/shell32/brsfolder.c, dlls/shell32/shellord.c, dlls/tapi32/line.c, dlls/tapi32/phone.c, windows/driver.c:
490         Patrik Stridvall <ps@leissner.se>
491         Fixed some debug messages.
493         * dlls/richedit/richedit.c, include/richedit.h, dlls/comctl32/listview.c:
494         Patrik Stridvall <ps@leissner.se>
495         Fixed issues found by winapi_check.
497         * tools/winapi_check/modules.dat, tools/winapi_check/win16/ole2disp.api, tools/winapi_check/win32/advapi32.api, tools/winapi_check/win32/crtdll.api, tools/winapi_check/win32/imagehlp.api, tools/winapi_check/win32/kernel32.api, tools/winapi_check/win32/ntdll.api, tools/winapi_check/win32/oleaut32.api, tools/winapi_check/win32/riched32.api, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_function.pm, tools/winapi_check/winapi_local.pm, tools/winapi_check/winapi_options.pm, tools/winapi_check/winapi_parser.pm:
498         Patrik Stridvall <ps@leissner.se>
499         - Check for missing modules in modules.dat.
500         - New options --debug-messages for debug message checking (turned off
501           by default)
502         - Do not discard the argument name (use in debug message checking)
503         - Improved parsing
504         - Minor bug fixes
506         * graphics/x11drv/dib.c:
507         Marcus Meissner <Marcus.Meissner@caldera.de>
508         Fixed asm() constraints.
510         * debugger/dbg.y, debugger/debugger.h, debugger/info.c, debugger/intvar.h, debugger/stabs.c, debugger/stack.c, debugger/types.c, debugger/winedbg.c:
511         Eric Pouech <Eric.Pouech@wanadoo.fr>
512         Fixed %p in printf (now using wsprintf which doesn't support it).
513         Added ThreadId and ProcessId internal vars.
514         Allow at startup to pick up a process to debug.
516         * dlls/winmm/wineoss/audio.c:
517         Eric Pouech <Eric.Pouech@wanadoo.fr>
518         Fixed division by zero.
520         * dlls/comctl32/trackbar.c:
521         Eric Pouech <Eric.Pouech@wanadoo.fr>
522         Fixed some quirks (range is 32 bit, page up/dn mismatch on HZ trackbars).
524         * windows/scroll.c: Ove Kaaven <ovek@arcticnet.no>
525         Scroll off-screen controls when scroll rectangle is NULL.
527         * dlls/comctl32/tab.c, include/tab.h:
528         Ken Thomases <ken@codeweavers.com>
529         Implemented tab control style TCS_HOTTRACK (tabs are highlighted on
530         mouse-over).
532         * dlls/comctl32/imagelist.c:
533         Aric Stewart <aric@codeweavers.com>
534         Remove the background from the new image when it is being replaced
535         with a ReplaceImage.
537         * loader/ne/module.c, loader/ne/segment.c, loader/task.c:
538         Bernd Herd <info@herdsoft.com>
539         Make sure hInstance is a proper global handle and not a selector
540         value.
542         * dlls/commdlg/printdlg.c: Jean-Claude Batista
543         PrintDialog now creates a DC when receiving a PD_RETURNDC flag.
545         * dlls/comctl32/treeview.c:
546         Aric Stewart <aric@codeweavers.com>
547         Clean up the drawing code after a label update. There were problems if
548         the new label is shorter that the old label fragments of the old label
549         were left drawn.
551         * windows/win.c: Guy Albertelli <galberte@neo.lrun.com>
552         Clear menu handle after destroying menu.
554         * controls/menu.c:
555         Guy Albertelli <galberte@neo.lrun.com>
556         Revalidate menu handle in mt.hTopMenu after DispatchMessage.
558         * windows/dialog.c: Bernd Herd <info@herdsoft.com>
559         Pass CTLDATA as SEGPTR for 16-bit programs.
561         * dlls/version/ver16.c:
562         Alexander Frink <Alexander.Frink@Uni-Mainz.DE>
563         Prevent possible NULL pointer access.
565 2000-05-10  Alexandre Julliard  <julliard@winehq.com>
567         * controls/menu.c: Aric Stewart <aric@codeweavers.com>
568         - Wine was passing the wrong hwnd as the owner when processing owner
569           drawn menubars.
570         - When doing MENU_CalcItemSize for the menu bar we were not properly
571           padding the returned rect.
573         * dlls/comctl32/treeview.c:
574         Aric Stewart <aric@codeweavers.com>
575         Allow the user to cancel label editing with esc and confirm with return.
577         * dlls/comctl32/tab.c:
578         Ken Thomases <ken@codeweavers.com>
579         Restore accidentally undone changes.
581         * dlls/comctl32/treeview.c:
582         Aric Stewart <aric@codeweavers.com>
583         - Wine was not properly reporting back the edited label to the
584           application in a treeview when the label is a callback.
585         - Because windows applications assume they get a new edit control
586           every time they often subclass that edit box willy-nilly and do not
587           clean up. So it is necessary to actually give them a new edit control
588           each time.
590         * dlls/comctl32/toolbar.c:
591         Aric Stewart <aric@codeweavers.com>
592         - Cleaned up some of the drawing code, specifically dealing with
593           avoiding trying to draw invalid bitmaps.
594         - Avoid directly calling drawing functions instead invalidating rects
595           and relying on WM_PAINT.
596         - For the dropdown event check the button style as opposed to the
597           toolbar style.
599         * dlls/dsound/dsound_main.c:
600         Eric Pouech <Eric.Pouech@wanadoo.fr>
601         Make internal buffers size multiple of 4.
603         * windows/mdi.c:
604         Guy L. Albertelli <galberte@neo.lrun.com>
605         Verify the menu handle is non-zero prior to use.
607         * controls/menu.c: Ken Thomases <ken@codeweavers.com>
608         Fixed to display popup-menu arrow on owner-drawn popup menus.
609         Fixed positioning of submenus relative to parent menus.
611         * windows/x11drv/event.c, dlls/comctl32/animate.c, dlls/winmm/time.c, graphics/vga.c, misc/system.c, scheduler/services.c, windows/timer.c:
612         Specify the service thread timers in ms instead of us.
614         * relay32/builtin32.c, relay32/relay386.c, tools/build.c, include/builtin32.h, include/winnt.h, misc/main.c:
615         Reserve space for the PE header at the start of the .so file.
616         Store the export table inside the data section so that sections can be
617         properly aligned.
618         Build the relay function table directly in the .spec.c file.
619         Moved relay debugging functions to relay386.c.
621         * dlls/comctl32/pager.c, dlls/comctl32/progress.c, dlls/comctl32/rebar.c, dlls/comctl32/status.c, dlls/comctl32/tab.c, dlls/comctl32/tooltips.c, dlls/comctl32/trackbar.c, dlls/comctl32/updown.c, dlls/comctl32/animate.c, dlls/comctl32/comboex.c, dlls/comctl32/header.c, dlls/comctl32/hotkey.c, dlls/comctl32/ipaddress.c, dlls/comctl32/listview.c, dlls/comctl32/monthcal.c:
622         Gerard Patel <g.patel@wanadoo.fr>
623         Protect against use of comctl32 private control memory after it has
624         been freed.
626         * dlls/comctl32/status.c:
627         Aric Stewart <aric@codeweavers.com>
628         Some programs switch their status bar back and forth from simple mode
629         while running. This fix corrects drawing and text setting problems that
630         result from this behavior.
632 2000-05-09  Alexandre Julliard  <julliard@winehq.com>
634         * memory/heap.c:
635         Alexandre Julliard <julliard@codeweavers.com> (for Corel)
636         Fixed HeapAlloc(HEAP_ZERO_MEMORY) to clear the whole allocated block.
637         Various optimizations.
639         * dlls/winmm/wineoss/audio.c:
640         Eric Pouech <Eric.Pouech@wanadoo.fr>
641         Changed WAVEHDR notification heuristic.
642         Added preliminary support for loops in WAVEHDRs.
643         Fixed issues when mixing open and getCaps calls.
645         * tools/wrc/CHANGES, tools/wrc/Makefile.in, tools/wrc/README.wrc, tools/wrc/dumpres.c, tools/wrc/genres.c, tools/wrc/newstruc.c, tools/wrc/parser.h, tools/wrc/parser.l, tools/wrc/parser.y, tools/wrc/readres.c, tools/wrc/wrc.c, tools/wrc/wrc.h, tools/wrc/wrc.man, tools/wrc/wrctypes.h, tools/wrc/writeres.c:
646         Bertho Stultiens <bertho@akhphd.au.dk>
647         - Bugfix: Corrected a SEGV in the rawdata handling. Mistakingly took the
648           address of a pointer instead of its value. This probably slipped in
649           during the merge of my tree into the winetree.
650           Lesson learned: always double check.
651         - Verified most resources so that win16 compile also generates correct
652           output for reversed endian.
653         - Implemented byte-ordering for resources. All resources can be forced
654           to be little-, big- or native endian with command-line option -B.
655         - Reading resources from .res-files are only accepted in native byte-
656           ordering so that no additional semantic analysis is required.
657         - Resource directory is still written in native-only format, including
658           the strings.
659         - Wrc is now installed through the makefile with 'make install' and also
660           uninstalled with 'make uninstall'.
661         - Wrote a man-page for better reference. The manpage also gets installed
662           and uninstalled.
663         - Cleaned up the namespace a bit by more agressive use of static.
665         * dlls/comctl32/tab.c, include/tab.h:
666         Aric Stewart <aric@codeweavers.com>
667         Added the ability to use multiline tab controls to wine.
669         * dlls/ddraw/dsurface/main.c, dlls/ddraw/dsurface/x11.c:
670         Marcus Meissner <marcus@jet.franken.de>
671         Number of surface Lock/Unlocks must NOT match, so do NOT use it for
672         reference counting.
674         * tools/wineinstall: Ove Kaaven <ovek@arcticnet.no>
675         Update for new Wine features; use ttydrv instead of x11drv when
676         running regapi, and set correct winedbg path in the registry.
678         * scheduler/pthread.c: Ove Kaaven <ovek@arcticnet.no>
679         Fixed jump_alias for non-PIC, and disabled it for PIC, since it
680         doesn't work for PIC right now. This fixes current crashing sigaction
681         calls.
683         * debugger/memory.c:
684         Eric Pouech <Eric.Pouech@wanadoo.fr>
685         Fixed x /s command.
687         * dlls/advapi32/registry.c:
688         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
689         Added some reg temp file clutter check (more than 100 temp files in
690         ~/.wine).
692 2000-05-07  Alexandre Julliard  <julliard@winehq.com>
694         * graphics/x11drv/dib.c:
695         Marcus Meissner <marcus@jet.franken.de>
696         SetImageBits_8: added ->15 conversion in optimized assembler.
698         * dlls/richedit/Makefile.in, dlls/richedit/ansi_gen.h, dlls/richedit/ansi_sym.h, dlls/richedit/charlist.c, dlls/richedit/charlist.h, dlls/richedit/reader.c, dlls/richedit/riched32.h, dlls/richedit/riched32.spec, dlls/richedit/riched32_main.c, dlls/richedit/richedit.c, dlls/richedit/rtf.h, dlls/richedit/rtf2text.h, dlls/richedit/stdcharnames.h, dlls/richedit/text-writer.c, dlls/richedit/text_map.h, include/richedit.h:
699         Jean-Claude Batista
700         Wraps some RichEdit control functionality on an Edit control. It uses
701         a free implementation of an RTF parser written by Paul DuBois
702         http://www.primate.wisc.edu/software/RTF/ which I modified a bit to
703         work with the control.
705         * windows/winproc.c:
706         Do not send WM_SIZING to 16-bit windows.
708         * dlls/gdi/gdi_main.c, dlls/user/user_main.c:
709         Cleaned up local heap initialisation.
711         * dlls/commdlg/cdlg32.c, dlls/ole32/ole2.c, include/winbase.h, include/wine/winbase16.h, loader/pe_image.c, relay32/builtin32.c, windows/driver.c:
712         Moved Load/FreeLibrary16 definition to winbase16.h.
714         * dlls/Makefile.in, dlls/ole32/Makefile.in, dlls/ole32/ole2nls.c, dlls/ole32/ole2nls.spec, if1632/Makefile.in, ole/ole2nls.c:
715         Dimitrie O. Paun <dimi@cs.toronto.edu>
716         Separate OLE2NLS out of KERNEL.
718         * tools/winapi_check/modules.dat, tools/winapi_check/modules.pm, tools/winapi_check/winapi_check:
719         Patrik Stridvall <ps@leissner.se>
720         - Check for missing modules in modules.dat.
721         - Minor bug fixes
723         * graphics/x11drv/dib.c:
724         Jean-Claude Batista (Macadamian/Corel)
725         Top-down images have a negative biHeight, the scanlines of theses
726         images were inverted in X11DRV_DIB_GetImageBits_xx. To prevent this I
727         simply changed the sign of lines, the scanlines were correctly handled
728         afterwards
730         * debugger/stabs.c:
731         Marcus Meissner <marcus@jet.franken.de>
732         Old versions of glibc might not have STN_UNDEF defined.
734         * files/file.c: Gerard Patel <g.patel@wanadoo.fr>
735         Revert the test for Virtual_HandleFault in ReadFile/WriteFile.
737         * dlls/comctl32/status.c:
738         Gerard Patel <g.patel@wanadoo.fr>
739         Set the itemID member of the DRAWITEMSTRUCT to the number of the
740         status part painted.
742         * windows/mdi.c: Gerard Patel <g.patel@wanadoo.fr>
743         Always calls SetMenu in MDISetMenu.
745         * dlls/tapi32/line.c:
746         Dimitrie O. Paun <dimi@cs.toronto.edu>
747         Small debug channel cleanup.
749         * controls/listbox.c: Chris Morgan <cmorgan@wpi.edu>
750         Fixed scrolling bug.
752         * dlls/comctl32/listview.c, include/listview.h:
753         Chris Morgan <cmorgan@wpi.edu>
754         Implemented ListView_SetHoverTime(), ListView_GetHoverTime(), initial
755         support for the LVS_EX_TRACKSELECT flag.  Added code to delete items
756         in LISTVIEW_SetItemCount().
758 2000-05-05  Alexandre Julliard  <julliard@winehq.com>
760         * include/winuser.h, windows/nonclient.c:
761         Aric Stewart <aric@codeweavers.com>
762         Added WM_SIZING message support.
764         * graphics/path.c: Rob Farnum <robf@twinux.com>
765         Removed warnings from freeing path in DeleteDC.
767         * dlls/comctl32/header.c:
768         Aric Stewart <aric@codeweavers.com>
769         Fixed a bug with the processing of HitTest.
771         * controls/edit.c: Susan Farley <susan@codeweavers.com>
772         Handle ^C, ^V and ^X in an edit control properly.
774         * misc/registry.c:
775         Huw D M Davies <h.davies1@physics.ox.ac.uk>
776         Strip the $$$PROTO.HIV bit from win2k SYSTEM and SOFTWARE hives.
778         * dlls/comctl32/treeview.c:
779         Huw D M Davies <h.davies1@physics.ox.ac.uk>
780         Fixed DC leak.
782         * loader/pe_resource.c:
783         Stephane Lussier <stephane@macadamian.com>
784         If we do not find a resource for both (primary lang|sub lang), we try
785         just (primary lang) before using the default.
787         * dlls/comctl32/tooltips.c:
788         Sheri Steeves <sheri@macadamian.com>
789         Worked around some tooltips hide problems by checking the current tooltip.
791         * documentation/distributors:
792         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
793         Added a configuration hint for the CD-ROM "unhide" option.
795         * ole/ole2nls.c:
796         Henning Hoffmann (of Macadamian for Corel)
797         Implemented SetLocaleInfo(). It required a change to GetLocaleInfo()
798         as well, because GetLocaleInfo() has to get any values saved by
799         SetLocaleInfo() in the registry.
801         * debugger/break.c, debugger/dbg.y, debugger/debugger.h, debugger/intvar.h, debugger/module.c, debugger/stabs.c, debugger/winedbg.c:
802         Eric Pouech <Eric.Pouech@wanadoo.fr>
803         Fixed some buffer overflows.
804         Made stab parsing more robust (now ignores C++ stabs).
805         Display correct backtrace at first when invoked on unhandled exception.
806         Loads stabs from .so files when those are loaded.
808 2000-05-03  Alexandre Julliard  <julliard@winehq.com>
810         * include/debugdefs.h: Generated again.
812         * include/pe_image.h, loader/pe_image.c:
813         PE_LoadImage: removed version parameter, set last error correctly.
815         * scheduler/process.c, server/process.c, server/trace.c, include/process.h, include/server.h:
816         Store process file name in startup info.
817         Fixed exe_file handling.
819         * dlls/Makefile.in: Fixed typo.
821         * Make.rules.in, configure, configure.in, dlls/Makefile.in, dlls/richedit/.cvsignore, dlls/richedit/Makefile.in, dlls/richedit/riched32.spec, dlls/richedit/riched32_main.c:
822         Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
823         Added stubs for riched32.dll.
825         * dlls/x11drv/x11drv_main.c:
826         Lionel Ulmer <lionel.ulmer@free.fr>
827         Call XOpenIM on the large stack.
829         * include/winsock.h:
830         Bang Jun-Young <bangjy@dreamwiz.com>
831         FreeBSD 3.4 compile fix.
833         * debugger/editline.c, debugger/winedbg.c, graphics/vga.c, include/winbase.h, include/wincon.h, relay32/kernel32.spec, server/console.c, win32/console.c:
834         Fixed COORD structure definition.
835         Fixed GetLargestConsoleWindowSize to not return a structure when
836         called from the Window binary.
838         * server/object.c: Small optimization.
840         * scheduler/thread.c: Fixed default thread stack size.
842         * objects/text.c: Fixed DrawTextW length handling.
844         * dlls/ddraw/dsurface/main.c:
845         Lionel Ulmer <lionel.ulmer@free.fr>
846         Remove the assertion when there is no source surface.
848         * include/oleauto.h:
849         Huw D M Davies <h.davies1@physics.ox.ac.uk>
850         Add DosDateTimeToVariantTime prototype.
852         * dlls/shell32/shlwapi.spec:
853         Huw D M Davies <h.davies1@physics.ox.ac.uk>
854         Map StrChrA to strchr.  Fix StrChrW arg list.
856         * include/winuser.h:
857         Huw D M Davies <h.davies1@physics.ox.ac.uk>
858         Added HWND_MESSAGE.
860         * dlls/ole32/stg_stream.c:
861         Huw D M Davies <h.davies1@physics.ox.ac.uk>
862         Allow ISequentialStream_Write to work if access mode is STGM_READWRITE.
864         * misc/registry.c:
865         Bertho Stultiens <bertho@panter.soci.aau.dk>
866         Mmap does not fail on zero-length files.
868 2000-05-01  Alexandre Julliard  <julliard@winehq.com>
870         * include/global.h, memory/virtual.c:
871         Use exception handling to implement the IsBad* functions.
872         Removed /proc/self/maps parsing as it is not very useful with .so libs.
874         * include/process.h, include/thread.h, miscemu/main.c, scheduler/process.c, scheduler/thread.c:
875         Setup the initial thread %fs from a constructor.
877         * dlls/ddraw/dga.c, dlls/ddraw/dga2.c, dlls/ddraw/x11.c, include/winnt.h:
878         Added DECL_GLOBAL_CONSTRUCTOR macro.
880         * resources/user32.rc, tools/Makefile.in, tools/wrc/.cvsignore, tools/wrc/CHANGES, tools/wrc/Makefile.in, tools/wrc/README.wrc, tools/wrc/newstruc.c, tools/wrc/parser.h, tools/wrc/parser.l, tools/wrc/parser.y, tools/wrc/ppl.l, tools/wrc/ppy.y, tools/wrc/preproc.c, tools/wrc/preproc.h, tools/wrc/utils.c, tools/wrc/utils.h, tools/wrc/wrc.c, tools/wrc/wrc.h, tools/wrc/writeres.c, dlls/commdlg/rsrc.rc, dlls/display/disp.rc, dlls/shell32/shres.rc, programs/clock/Makefile.in, programs/notepad/Makefile.in, programs/progman/Makefile.in, programs/winemine/Makefile.in, programs/winhelp/Makefile.in, dlls/comctl32/rsrc.rc:
881         Bertho Stultiens <bertho@akhphd.au.dk>
882         - Implemented a new preprocessor that is (nearly) ANSI-C compliant. The
883           old parser has been stripped from the old preprocessor-code which
884           cleaned up both resource-scanner and -parser.
885         - Standard defines have been introduced (see README.wrc)
886         - Both preprocessor- and resource-scanner have been optimized slightly
887           so that no backing up is required (one char lookahead is enough).
888         - Filename-scanning has been cleaned up, though not perfect yet.
889         - User-type resources are compatible now.
890         - Line-continuation in strings is corrected so that it does not
891           introduce a newline in the output.
893         * scheduler/thread.c, server/process.c, server/process.h, server/request.c, server/request.h, server/thread.c, server/thread.h, server/trace.c, windows/queue.c, loader/module.c, memory/environ.c, miscemu/main.c, scheduler/process.c, include/process.h, include/server.h, include/thread.h, loader/main.c:
894         Rewrote Unix process launching to allow passing startup information to
895         Winelib apps. Improved handling of execve() failures.
897         * files/file.c: Added ENOEXEC error code.
899         * scheduler/pthread.c: Added atfork support.
901         * configure.in, dlls/ddraw/Makefile.in, dlls/ddraw/ddraw/dga.c, dlls/ddraw/ddraw/dga2.c, dlls/ddraw/dga.c, dlls/ddraw/dga2.c, dlls/ddraw/dga2_private.h, dlls/ddraw/dga_private.h, dlls/ddraw/dpalette/dga.c, dlls/ddraw/dsurface/dga.c, dlls/ddraw/dsurface/dga2.c, configure:
902         Lionel Ulmer <lionel.ulmer@free.fr>
903         Added DGA2 driver to DirectDraw.
905         * dlls/commdlg/cdlg32.c:
906         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
907         COMDLG32_DllEntryPoint,COMDLG32_SetCommDlgExtendedError: delay
908         allocation of Tls for CommDlgExtendedError until it is needed.
910         * debugger/winedbg.c:
911         Eric Pouech <Eric.Pouech@wanadoo.fr>
912         Fixed segv when debugger registry key doesn't exist.
914         * dlls/icmp/icmp_main.c:
915         Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
916         Use <stdlib.h> instead of the deprecated and non-portable <malloc.h>.
918 2000-04-30  Alexandre Julliard  <julliard@winehq.com>
920         * ANNOUNCE, ChangeLog, include/version.h:
921         Release 20000430.
923         * windows/x11drv/wnd.c:
924         Gerard Patel <g.patel@wanadoo.fr>
925         X11DRV_SetFocus: really don't mess with focus for managed windows.
927         * graphics/win16drv/graphics.c, graphics/x11drv/oembitmap.c, graphics/x11drv/text.c, include/heap.h, memory/heap.c, objects/text.c, windows/clipboard.c, windows/input.c, windows/winproc.c:
928         Dimitrie O. Paun <dimi@cs.toronto.edu>
929         Removed HEAP_xalloc.
931         * debugger/break.c, debugger/db_disasm.c, debugger/dbg.y, debugger/debug.l, debugger/debugger.h, debugger/display.c, debugger/editline.c, debugger/expr.c, debugger/hash.c, debugger/info.c, debugger/intvar.h, debugger/memory.c, debugger/registers.c, debugger/source.c, debugger/stabs.c, debugger/stack.c, debugger/types.c, debugger/winedbg.c, debugger/winedbg.spec:
932         Eric Pouech <Eric.Pouech@wanadoo.fr>
933         - Enhanced internal variables framework (including read/save to
934           registry and typing)
935         - Finalized use of Windows' Console I/O interface (instead of Unix std
936           streams)
937         - Now handling registers as internal variables (they are no longer
938           seen as a specific type)
940         * win32/except.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
941         Insure we always try to launch a debugger.
943         * relay32/wowthunk.c:
944         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
945         Use Thread pseudo handle and not Thread Id as argument for the call to
946         GetThreadSelectorEntry.
948 ----------------------------------------------------------------
949 2000-04-30  Alexandre Julliard  <julliard@winehq.com>
951         * windows/x11drv/wnd.c:
952         Gerard Patel <g.patel@wanadoo.fr>
953         X11DRV_SetFocus: really don't mess with focus for managed windows.
955         * graphics/win16drv/graphics.c, graphics/x11drv/oembitmap.c, graphics/x11drv/text.c, include/heap.h, memory/heap.c, objects/text.c, windows/clipboard.c, windows/input.c, windows/winproc.c:
956         Dimitrie O. Paun <dimi@cs.toronto.edu>
957         Removed HEAP_xalloc.
959         * debugger/break.c, debugger/db_disasm.c, debugger/dbg.y, debugger/debug.l, debugger/debugger.h, debugger/display.c, debugger/editline.c, debugger/expr.c, debugger/hash.c, debugger/info.c, debugger/intvar.h, debugger/memory.c, debugger/registers.c, debugger/source.c, debugger/stabs.c, debugger/stack.c, debugger/types.c, debugger/winedbg.c, debugger/winedbg.spec:
960         Eric Pouech <Eric.Pouech@wanadoo.fr>
961         - Enhanced internal variables framework (including read/save to
962           registry and typing)
963         - Finalized use of Windows' Console I/O interface (instead of Unix std
964           streams)
965         - Now handling registers as internal variables (they are no longer
966           seen as a specific type)
968         * win32/except.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
969         Insure we always try to launch a debugger.
971         * relay32/wowthunk.c:
972         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
973         Use Thread pseudo handle and not Thread Id as argument for the call to
974         GetThreadSelectorEntry.
976 2000-04-29  Alexandre Julliard  <julliard@winehq.com>
978         * loader/pe_image.c:
979         Clear the remainder of the page when mapping a section whose size on
980         disk is not a full page multiple.
981         Temporarily commented out the VirtualFree call in PE_UnloadLibrary.
983         * dlls/ddraw/ddraw/x11.c, include/ts_xlib.h, tsx11/X11_calls, tsx11/ts_xlib.c:
984         Lionel Ulmer <lionel.ulmer@free.fr>
985         - added thread-safety protection to XListPixmapFormats
986         - moved pixmap / image format matching ERRs to WARNs
988         * win32/console.c, include/winbase.h:
989         Eric Pouech <Eric.Pouech@wanadoo.fr>
990         Fixed GetLargestConsoleWindowSize prototype.
992         * dlls/wininet/ftp.c:
993         Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
994         FreeBSD compile fix.
996         * graphics/x11drv/dib.c, include/bitmap.h, include/gdi.h, include/x11drv.h, objects/dib.c:
997         Ove Kaaven <ovek@arcticnet.no>
998         Added DIB_CreateDIBSection with extra parameter ovr_pitch, added
999         ovr_pitch to pCreateDIBSection in DC_FUNCS. If ovr_pitch is nonzero,
1000         it is a pitch override (specifies bytes per line), and tells to treat
1001         the offset parameter as an already-mapped virtual memory address (if
1002         the section parameter is zero). Fixed a DIB status init bug in
1003         creating DIB sections from file mappings (if created from mapping, the
1004         DIB is *not* really InSync).
1006         * include/winbase.h, memory/virtual.c:
1007         Ove Kaaven <ovek@arcticnet.no>
1008         Add Wine-internal allocation type MEM_SYSTEM for VirtualAlloc to
1009         register external mappings (like video frame buffers).
1011         * configure.in, include/config.h.in, scheduler/pthread.c, configure:
1012         Eric Pouech <Eric.Pouech@wanadoo.fr>
1013         Enhanced libc's pthread configuration detection.
1015         * dlls/x11drv/x11drv_main.c, graphics/x11drv/bitmap.c, msdos/dosaspi.c, windows/multimon.c:
1016         Eric Pouech <Eric.Pouech@wanadoo.fr>
1017         Fixed a few compilation warnings.
1019         * dlls/commdlg/colordlg.c, dlls/shell32/shellord.c:
1020         Patrik Stridvall <ps@leissner.se>
1021         Fixed some warnings.
1023         * dlls/dplayx/dpclassfactory.c, dlls/shell32/shell32.spec, dlls/urlmon/urlmon.spec, dlls/urlmon/urlmon_main.c, misc/comm.c:
1024         Patrik Stridvall <ps@leissner.se>
1025         Fixed issues reported by winapi_check.
1027         * tools/winapi_check/win32/shell32.api, tools/winapi_check/win32/shlwapi.api, tools/winapi_check/winapi_check, tools/winapi_check/winapi_local.pm, tools/winapi_check/winapi_options.pm, tools/winapi_check/winapi_parser.pm:
1028         Patrik Stridvall <ps@leissner.se>
1029         - API files update
1030         - Minor bug fixes.
1031         - Added new option --cross-call-unicode-ascii for checking illegal
1032           Unicode to ASCII calls.
1034         * configure, configure.in, include/config.h.in:
1035         Lionel Ulmer <lionel.ulmer@free.fr>
1036         Added '--enable-opengl' flag to bypass the thread-safety check.
1038         * files/dos_fs.c, files/profile.c, graphics/painting.c, windows/x11drv/event.c, dlls/lzexpand/lzexpand_main.c:
1039         Dimitrie O. Paun <dimi@cs.toronto.edu>
1040         Removed some HEAP_xalloc calls.
1042         * dlls/winmm/mci.c:
1043         Eric Pouech <Eric.Pouech@wanadoo.fr>
1044         Fixed bug when file doesn't exist in MCI_OPEN handling.
1045         Reduced time spent with crit sect locked.
1047         * tools/build.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
1048         Fixed argv handling for cuiexe winelib programs.
1050         * scheduler/pthread.c: Ove Kaaven <ovek@arcticnet.no>
1051         Made pthread_kill_other_threads_np and pthread_atfork fixmes less
1052         obtrusive.
1054         * windows/winhelp.c: Rein Klazes <rklazes@casema.net>
1055         WinHelp must accept a NULL pointer to the help key string.
1057 2000-04-28  Alexandre Julliard  <julliard@winehq.com>
1059         * dlls/commdlg/finddlg32.c:
1060         Guy L. Albertelli <galberte@neo.lrun.com>
1061         - Correct check for minimum buffer length.
1062         - Correct cases where ShowWindow is done/not done.
1064         * dlls/comctl32/commctrl.c:
1065         Chris Morgan <cmorgan@wpi.edu>, James Abbatiello <abbeyj@wpi.edu>
1066         Implemented TME_QUERY and TME_HOVER flags in _TrackMouseEvent and
1067         TrackMouseEventProc.  Added code to allow addition/cancelation of
1068         tracking flags on existing entries rather than create extra entries.
1069         Fixed timer.  Added check to _TrackMouseEvent to stop timer if the
1070         tracking list is empty.  Fixed TME_CANCEL.  Fixed TME_LEAVE/TME_HOVER
1071         when hwndTrack isn't the current hwnd.
1073         * files/dos_fs.c:
1074         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
1075         DOSFS_DoGetFullPathName: rewrite to return results like OSR2.
1077         * include/module.h, loader/module.c, loader/pe_image.c, memory/virtual.c:
1078         Gavriel State <gavriels@corel.com>, Ulrich Czekalla <ulrichc@corel.com>
1079         Added support for memory mapping of 4k aligned PE binaries.  This can
1080         speed up load times significantly for some applications.
1082         * dlls/shell32/brsfolder.c, dlls/shell32/shellguid.c, dlls/shell32/shellpath.c, dlls/shell32/shlfileop.c, dlls/shell32/shlfolder.c, dlls/shell32/shlmenu.c, dlls/shell32/shlwapi.spec, dlls/shell32/shres.rc, dlls/shell32/shresdef.h, dlls/shell32/shv_bg_cmenu.c, include/shell.h, include/shlobj.h, include/shlwapi.h, include/wine/obj_shellbrowser.h, include/wine/undocshell.h:
1083         Juergen Schmied <juergen.schmied@debitel.net>
1084         Complete cleanup, bugfixes.
1085         New: PathStripPath, PathMakeUniqueName, PathStripToRoot,
1086         PathGetShortPath, PathParseIconLocation, PathRemoveExtension,
1087         PathRemoveArgs, PathAppend, PathBuildRoot, PathCanonicalize,
1088         PathFindNextComponent, PathRemoveFileSpec.
1090         * dlls/shell32/classes.c, include/wine/obj_queryassociations.h:
1091         Juergen Schmied <juergen.schmied@debitel.net>
1092         Stubs for IQueryAssociations.
1094         * dlls/shell32/Makefile.in, dlls/shell32/dialogs.c, dlls/shell32/shellord.c, dlls/shell32/shpolicy.c:
1095         Juergen Schmied <juergen.schmied@debitel.net>
1096         Moved policy related functions to shpolicy.c
1097         Moved dialog related functions to dialogs.c
1099         * dlls/shell32/shell32.spec:
1100         Juergen Schmied <juergen.schmied@debitel.net>
1101         Explicit import user32.dll.
1102         Many corrections, exported some functions by name.
1104         * dlls/shell32/shell.c, dlls/shell32/shellole.c:
1105         Juergen Schmied <juergen.schmied@debitel.net>
1106         Separated 32 bit functions to shellole.c.
1108         * dlls/shell32/pidl.c:
1109         Juergen Schmied <juergen.schmied@debitel.net>
1110         Small fixes.
1112         * dlls/shell32/iconcache.c:
1113         Juergen Schmied <juergen.schmied@debitel.net>
1114         Fixed: extract the icon by resource id.
1116         * dlls/shell32/shlview.c:
1117         Juergen Schmied <juergen.schmied@debitel.net>
1118         Small fixes.
1120         * dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h:
1121         Juergen Schmied <juergen.schmied@debitel.net>
1122         Fixes.
1123         Use GetModuleHandleA instead of LoadLibrary for dlls imported by
1124         the spec file.
1126         * wine.ini: Dmitry Timoshkov <dmitry@sloboda.ru>
1127         Make WineLook=Win95 the default setting.
1129         * dlls/dinput/dinput_main.c:
1130         Lionel Ulmer <lionel.ulmer@free.fr>
1131         Added leaving of critical section on all return cases.
1133         * scheduler/pthread.c: Ove Kaaven <ovek@arcticnet.no>
1134         Removed init_sect. Use Interlocked* functions instead.
1136         * misc/registry.c:
1137         Juergen Schmied <juergen.schmied@debitel.net>
1138         Small fixes, removed asserts.
1140         * libtest/Makefile.in, programs/clock/Makefile.in, programs/cmdlgtst/Makefile.in, programs/notepad/Makefile.in, programs/progman/Makefile.in, programs/view/Makefile.in, programs/winhelp/Makefile.in:
1141         Changed imports of winspool to winspool.drv.
1143         * dlls/Makefile.in, dlls/user/Makefile.in:
1144         Added libkeyboard.so creation.
1146         * dlls/comctl32/header.c, include/header.h:
1147         Martin Fuchs <martin-fuchs@gmx.net>
1148         - Return modified rectangle after layouting header control
1149         - Output text in header control when no other Flag specified
1150         - Delay bounding rectangle calculation for header control items
1152         * dlls/comctl32/toolbar.c:
1153         Chris Morgan <cmorgan@wpi.edu>
1154         Implemented TOOLBAR_MouseLeave to handle WM_MOUSELEAVE messages.
1155         Added TrackMouseEvent calls to TOOLBAR_MouseMove.  Hot buttons now
1156         look/behave almost exactly the same as native windows.
1158         * windows/sysparams.c: Chris Morgan <cmorgan@wpi.edu>
1159         Added default values for SPI_GETMOUSEHOVERHEIGHT, SPI_GETMOUSEHOVERWIDTH and
1160         SPI_GETMOUSEHOVERTIME to SystemParametersInfo16().
1162         * misc/comm.c: Rein Klazes <rklazes@casema.net>
1163         Implement mark and space parity generation. Accept one-and- a-half
1164         stopbits: the most common uarts will generate this automatically when
1165         there are 5 databits.
1167         * scheduler/pthread.c: Ove Kaaven <ovek@arcticnet.no>
1168         Override fork().
1170         * debugger/debugger.h, include/heap.h, memory/heap.c:
1171         Dimitrie O. Paun <dimi@cs.toronto.edu>
1172         Get rid of HEAP_xrealloc.
1174 2000-04-25  Alexandre Julliard  <julliard@winehq.com>
1176         * Make.rules.in, configure, configure.in, dlls/Makefile.in, dlls/ddraw/Makefile.in:
1177         Patrik Stridvall <ps@leissner.se>
1178         Compile fix for --without-x.
1180         * loader/main.c, wine.ini:
1181         Patrik Stridvall <ps@leissner.se>
1182         Added new configuration file option for selecting graphics driver.
1184         * dlls/ttydrv/Makefile.in:
1185         Patrik Stridvall <ps@leissner.se>
1186         Link the TTY driver with the standard libs.
1188         * Make.rules.in, dlls/Makefile.in, dlls/commdlg/Makefile.in, dlls/winspool/.cvsignore, dlls/winspool/Makefile.in:
1189         Eric Pouech <Eric.Pouech@wanadoo.fr>
1190         Fixed winspool(.drv) loading.
1192         * windows/x11drv/clipboard.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/keyboard.c, windows/x11drv/mouse.c, windows/x11drv/wnd.c, graphics/x11drv/bitblt.c, graphics/x11drv/bitmap.c, graphics/x11drv/brush.c, graphics/x11drv/clipping.c, graphics/x11drv/dib.c, graphics/x11drv/graphics.c, graphics/x11drv/init.c, graphics/x11drv/objects.c, graphics/x11drv/oembitmap.c, graphics/x11drv/palette.c, graphics/x11drv/pen.c, graphics/x11drv/text.c, graphics/x11drv/xfont.c, include/ts_xf86dga.h, include/ts_xf86dga2.h, include/ts_xf86vmode.h, include/ts_xlib.h, include/ts_xpm.h, include/ts_xresource.h, include/ts_xshm.h, include/ts_xutil.h, include/x11drv.h, tools/make_X11wrappers, tsx11/ts_xf86dga.c, tsx11/ts_xf86dga2.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:
1193         Patrik Stridvall <ps@leissner.se>
1194         Removed X_DISPLAY_MISSING.
1196         * debugger/types.c, debugger/msc.c:
1197         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
1198         Improved CodeView type information loader.
1200         * dlls/commdlg/colordlg.c:
1201         Gerard Patel <g.patel@wanadoo.fr>
1202         Don't use the template member unless the corresponding flag is set.
1204 2000-04-24  Alexandre Julliard  <julliard@winehq.com>
1206         * LICENSE, WARRANTY:
1207         Switched to the X11 license.
1209         * server/registry.c, if1632/relay.c, misc/ddeml.c:
1210         Patrik Stridvall <ps@leissner.se>
1211         Fixed some warnings.
1213         * dlls/wininet/Makefile.in, dlls/wininet/wininet.spec, dlls/wininet/wininet_main.c, dlls/comctl32/comctl32.spec, dlls/comctl32/commctrl.c, dlls/dinput/dinput.spec, dlls/dinput/dinput_main.c, dlls/dplayx/dpclassfactory.c, dlls/dplayx/dplayx.spec, dlls/shell32/shell32.spec, dlls/shell32/shell32_main.c, dlls/urlmon/Makefile.in, dlls/urlmon/urlmon.spec, dlls/urlmon/urlmon_main.c:
1214         Patrik Stridvall <ps@leissner.se>
1215         Fixed issues found by winapi_check.
1217         * tools/winapi_check/win16/wprocs.api, tools/winapi_check/win32/dinput.api, tools/winapi_check/win32/kernel32.api, tools/winapi_check/win32/urlmon.api, tools/winapi_check/win32/wininet.api, tools/winapi_check/winapi_function.pm, tools/winapi_check/winapi_local.pm, tools/winapi_check/winapi_options.pm, tools/winapi_check/modules.dat, tools/winapi_check/modules.pm, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check:
1218         Patrik Stridvall <ps@leissner.se>
1219         - Updated API files.
1220         - Improved misplaced function checking.
1221         - Fixed minor bugs.
1223         * include/winnt.h: Francois Gouget <fgouget@psn.net>
1224         Include string.h to make winnt.h self-sufficient.
1226         * dlls/comctl32/tooltips.c: Patrick Yang (Corel)
1227         infoPtr sometimes can be NULL.
1229         * dlls/commdlg/cdlg_Ca.rc, dlls/commdlg/cdlg_Cs.rc, dlls/commdlg/cdlg_Da.rc, dlls/commdlg/cdlg_De.rc, dlls/commdlg/cdlg_En.rc, dlls/commdlg/cdlg_Eo.rc, dlls/commdlg/cdlg_Es.rc, dlls/commdlg/cdlg_Fi.rc, dlls/commdlg/cdlg_Fr.rc, dlls/commdlg/cdlg_Hu.rc, dlls/commdlg/cdlg_It.rc, dlls/commdlg/cdlg_Ja.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_Sk.rc, dlls/commdlg/cdlg_Sv.rc, dlls/commdlg/cdlg_Wa.rc, dlls/commdlg/colordlg.c, include/commdlg.h:
1230         Gerard Patel <g.patel@wanadoo.fr>
1231         32 bits message processing for color dialog.
1233         * dlls/comctl32/toolbar.c, dlls/comctl32/commctrl.c:
1234         Martin Fuchs <martin-fuchs@gmx.net>
1235         Fixed toolbar bitmap size handling.
1237         * configure.in, configure:
1238         Rein Klazes <rklazes@casema.net>
1239         Correct test for linux 2.2 joystick API, which returned true in every
1240         case.
1242         * dlls/version/install.c, graphics/x11drv/bitmap.c, include/xmalloc.h, misc/Makefile.in, misc/xmalloc.c:
1243         Dimitrie O. Paun <dimi@cs.toronto.edu>
1244         Removed the last xmalloc calls.
1246         * programs/winver/Makefile.in, relay32/builtin32.c, programs/cmdlgtst/Makefile.in, programs/control/Makefile.in, programs/notepad/Makefile.in, programs/osversioncheck/Makefile.in, programs/progman/Makefile.in, programs/regapi/Makefile.in, programs/regtest/Makefile.in, programs/view/Makefile.in, programs/wcmd/Makefile.in, programs/winemine/Makefile.in, programs/winhelp/Makefile.in, dlls/commdlg/comdlg32.spec, dlls/shell32/shellord.c, dlls/x11drv/Makefile.in, if1632/builtin.c, include/module.h, libtest/Makefile.in, libtest/hello3res.rc, programs/avitools/Makefile.in, programs/clock/Makefile.in, configure.in, debugger/Makefile.in, dlls/Makedll.rules.in, dlls/Makefile.in, wine.ini, .cvsignore, Make.rules.in, Makefile.in, configure:
1247         Implemented on-demand loading of builtin dlls using dlopen().
1249 2000-04-23  Alexandre Julliard  <julliard@winehq.com>
1251         * Makefile.in, dlls/x11drv/Makefile.in:
1252         Build wineclipsrv as part of the x11drv dll.
1254         * dlls/commdlg/Makefile.in, dlls/commdlg/cdlg.h, dlls/commdlg/cdlg32.c, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/printdlg.c, dlls/shell32/Makefile.in, dlls/shell32/shlview.c:
1255         Removed a few inter-dll dependencies.
1257         * windows/painting.c: Rein Klazes <rklazes@casema.net>
1258         Make RDW_ValidateParent() modify the update region of all parents, not
1259         just the direct parent.
1261         * relay32/snoop.c:
1262         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
1263         SNOOP_PrintArg: replaced IsBad* functions by exception handler.
1265         * configure, configure.in:
1266         Patrik Stridvall <ps@leissner.se>
1267         Added --without-curses compile option.
1269         * scheduler/pthread.c: Ove Kaaven <ovek@arcticnet.no>
1270         Added some more pthread overrides.
1272         * winedefault.reg: Ove Kaaven <ovek@arcticnet.no>
1273         Fixed debugger registry key location.
1275         * include/ddeml.h: Francois Gouget <fgouget@psn.net>
1276         Use DECLARE_HANDLE to declare handles.
1278         * include/windef.h: Francois Gouget <fgouget@psn.net>
1279         DECLARE_HANDLE should not be undef'ed after use.
1281         * controls/edit.c: Ove Kaaven <ovek@arcticnet.no>
1282         Fix edit control's WM_GETTEXT behaviour.
1284         * misc/comm.c: Gerard Patel <g.patel@wanadoo.fr>
1285         Do not initialize dcb in BuildCommDCB[AndTimeouts].
1287         * include/casemap.h, tools/unimap.pl:
1288         Dmitry Timoshkov <dmitry@sloboda.ru>
1289         Adapted unimap.pl script and generated by it casemap.h to the Unicode
1290         Standard, Version 3.0.
1292         * windows/dialog.c: Gerard Patel <g.patel@wanadoo.fr>
1293         Check if dialog is visible before setting the focus.
1295         * windows/defwnd.c:
1296         Dmitry Timoshkov <dmitry@sloboda.ru>
1297         Removed the longstanding hack in response to WM_ACTIVATE message.
1299         * include/winuser.h:
1300         Martin Fuchs <martin-fuchs@gmx.net>
1301         Fixed GetNumberFormat declaration.
1303         * dlls/comctl32/toolbar.c:
1304         Chris Morgan <cmorgan@wpi.edu>
1305         James Abbatiello <abbeyj@wpi.edu>
1306         Redraw toolbar button inside TOOLBAR_EnableButton() only if the state
1307         of the button changes.  Stops flickering in toolbars caused by
1308         excessive redrawing.
1310         * dlls/wininet/internet.c, dlls/wininet/wininet.spec:
1311         Gerard Patel <g.patel@wanadoo.fr>
1312         Stub for InternetGetConnectedState.
1314         * include/winbase.h: Francois Gouget <fgouget@psn.net>
1315         Fixed GetProcessHeap() for the STRICT mode.
1317         * dlls/ddraw/main.c:
1318         Marcus Meissner <marcus@jet.franken.de>
1319         Also check for empty GUID in DirectDrawCreate.
1321 2000-04-19  Alexandre Julliard  <julliard@winehq.com>
1323         * dlls/version/version.spec, dlls/winmm/joystick/joystick.spec, dlls/winmm/mcianim/mcianim.spec, dlls/winmm/mciavi/mciavi.spec, dlls/winmm/mcicda/mcicda.spec, dlls/winmm/mciseq/mciseq.spec, dlls/winmm/mciwave/mciwave.spec, dlls/winmm/midimap/midimap.spec, dlls/winmm/wavemap/msacm.spec, dlls/winmm/wineoss/wineoss.spec, dlls/avifil32/avifil32.spec, dlls/commdlg/comdlg32.spec, dlls/ddraw/ddraw.spec, dlls/dplayx/dplayx.spec, dlls/msvideo/msvfw32.spec, dlls/oleaut32/oleaut32.spec, dlls/olecli/olecli32.spec, dlls/shell32/shell32.spec, dlls/urlmon/urlmon.spec:
1324         Added some missing import directives.
1326         * dlls/oleaut32/Makefile.in, dlls/shell32/Makefile.in, dlls/comctl32/Makefile.in, dlls/commdlg/Makefile.in:
1327         Removed winmm from import list.
1329         * dlls/comctl32/animate.c, include/animate.h:
1330         Use GetProcAddress for mmio* functions to avoid importing winmm.dll.
1332         * programs/wcmd/builtins.c, programs/wcmd/wcmd.spec:
1333         Fixed resource loading.
1335         * tools/cvdump/cvcrunch.c, tools/cvdump/cvdump.c, tools/cvdump/cvinclude.h, tools/cvdump/cvload.c:
1336         John R. Sheets <jsheets@codeweavers.com>
1337         Minor cleanups, plus fixed a couple bugs in .DBG parsing code.
1338         Added dump for MISC section.
1340         * winedefault.reg:
1341         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
1342         Added DirectPlay registry keys to winedefault.reg.
1344         * dlls/comctl32/treeview.c:
1345         Stephane Lussier <stephane@macadamian.com>
1346         Mousewheel support.
1348 2000-04-18  Alexandre Julliard  <julliard@winehq.com>
1350         * tools/cvdump/cvcrunch.c, tools/cvdump/cvdump.h, tools/fnt2bdf.c, include/imagehlp.h, include/neexe.h, include/pe_image.h, include/peexe.h, include/winnt.h, loader/dos/module.c, loader/elf.c, loader/module.c, loader/ne/module.c, loader/pe_image.c, loader/task.c, relay32/builtin32.c, relay32/snoop.c, debugger/dbgmain.c, debugger/module.c, debugger/msc.c, debugger/types.c, dlls/shell32/iconcache.c, dlls/shell32/shell.c, dlls/version/resource.c:
1351         Moved PE header definitions to winnt.h where they belong.
1353         * windows/x11drv/event.c, controls/combo.c, controls/edit.c, controls/listbox.c, dlls/comctl32/listview.c, include/mouse.h, include/winuser.h, windows/input.c, windows/spy.c:
1354         Stephane Lussier <stephane@macadamian.com>
1355         Implemented Mousewheel support.
1357         * dlls/winsock/async.c:
1358         Rein Klazes <rklazes@casema.net>
1359         Convert service and protocol names to lowercase before calling
1360         getservby{name|port} and getprotoby{name|port}.
1362         * objects/region.c:
1363         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1364         Fix return value for OffsetRgn if x and y are 0.
1366         * graphics/path.c:
1367         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1368         Implement StrokeAndFillPath.
1369         Call DeleteObject when finished with hrgn in PATH_FillPath.
1371         * include/wininet.h:
1372         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1373         Fixed typo.
1375         * graphics/enhmetafiledrv/objects.c:
1376         Sheri Steeves <sheri@macadamian.com>
1377         EMR_SELECTOBJECT records stock objects with their id as the object
1378         handle and the high bit set.
1380         * objects/enhmetafile.c:
1381         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1382         Tidy up of PlayEnhMetaFileRecord - fixes PolyPoly* functions.
1384 2000-04-16  Alexandre Julliard  <julliard@winehq.com>
1386         * server/registry.c:
1387         Removed permission checks in create_key and delete_key. It seems
1388         Windows doesn't check anything.
1390         * loader/resource.c:
1391         Richard Cohen <richard@jubjub.demon.co.uk>
1392         Wrap an exception handler around FindResource.
1394         * programs/regtest/regtest.c:
1395         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
1396         Corrected WinMain.
1397         Added test case for RegCreateKeyEx showing win95 behaviour.
1399         * debugger/dbg.y, debugger/debug.l, debugger/debugger.h, debugger/info.c:
1400         Implemented 'walk process' and 'walk threads' commands using toolhelp
1401         snapshots.
1403         * include/server.h, include/tlhelp32.h, include/toolhelp.h, misc/toolhelp.c, server/process.c, server/process.h, server/request.h, server/snapshot.c, server/thread.c, server/thread.h, server/trace.c:
1404         Implemented thread and (partial) module snapshots, based on the work
1405         of Andreas Mohr <amohr@student.ei.uni-stuttgart.de>.
1407         * server/main.c, server/registry.c, server/request.h, server/trace.c, documentation/wine.conf.man.in, include/server.h, include/shell.h, loader/main.c, misc/registry.c, wine.ini:
1408         Save the registry on server exit without client intervention.
1409         Removed "alt" registry files since we now have symlinks and
1410         WINEPREFIX to replace them.
1412         * include/ts_xlib.h, tsx11/X11_calls, tsx11/ts_xlib.c, windows/x11drv/event.c:
1413         Stephane Lussier <stephane@macadamian.com>
1414         Support switching the keyboard layout with WINE running.
1416         * dlls/crtdll/crtdll_main.c:
1417         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
1418         fgets: Don't swallow \n, treat EOF
1419         feof: Crude implementation
1420         signal: Return error
1422         * winedefault.reg:
1423         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
1424         Add missing backslash in the debugger definition.
1426         * win32/time.c: Rein Klazes <rklazes@casema.net>
1427         SetLocalTime() and SetSystemTime() bugfixes. Added a maximum clock
1428         adjustment of 2 minutes just in case...
1430         * dlls/dsound/dsound_main.c:
1431         Marcus Meissner <marcus@jet.franken.de>
1432         DSOUND_MixerNorm: do not compare unrelated pointers.
1434 2000-04-15  Alexandre Julliard  <julliard@winehq.com>
1436         * loader/module.c:
1437         Rewrote command-line parsing of CreateProcessA to be more compatible.
1439         * programs/winhelp/Makefile.in, programs/winver/Makefile.in, relay32/builtin32.c, scheduler/process.c, scheduler/thread.c, tools/build.c, programs/cmdlgtst/Makefile.in, programs/control/Makefile.in, programs/notepad/Makefile.in, programs/osversioncheck/Makefile.in, programs/osversioncheck/osversioncheck.c, programs/osversioncheck/osversioncheck.spec, programs/progman/Makefile.in, programs/regapi/Makefile.in, programs/regtest/Makefile.in, programs/view/Makefile.in, programs/wcmd/Makefile.in, programs/wcmd/wcmd.spec, programs/wcmd/wcmdmain.c, programs/winemine/Makefile.in, debugger/Makefile.in, include/callback.h, include/main.h, include/module.h, include/thread.h, libtest/Makefile.in, loader/main.c, loader/module.c, loader/pe_image.c, misc/options.c, programs/avitools/Makefile.in, programs/clock/Makefile.in, Make.rules.in:
1440         Improved Winelib apps initialisation code. No longer need to link
1441         winestub.o with Winelib apps.
1443         * include/wine/winbase16.h, relay32/utthunk.c, dlls/dinput/dinput_main.c, dlls/dplayx/dplayx.spec, dlls/icmp/icmp_main.c, dlls/ntdll/om.c, dlls/shell32/shlwapi.spec, dlls/win87em/emulate.c, dlls/wininet/ftp.c, dlls/wininet/internet.c, dlls/winmm/mcianim/mcianim.c, graphics/ttydrv/palette.c, dlls/ddraw/main.c, dlls/ddraw/x11.c:
1444         Patrik Stridvall <ps@leissner.se>
1445         Fixed some issues reported by winapi_check.
1447         * tools/winapi_check/*:
1448         Patrik Stridvall <ps@leissner.se>
1449         - API files update.
1450         - Add new options --all and --none that enable/disables all check
1451           respectively.
1452         - Fixed and improved stub statistics.
1453         - Fixed bug that prevented checking of the first function in the .spec files.
1454         - Partial implementation of a more advanced misplaced function checking.
1455         - Minor fixes.
1457         * dlls/comctl32/toolbar.c:
1458         Martin Fuchs <martin-fuchs@gmx.net>
1459         Implement CCS_NOMOVEY for tool bars.
1461         * tools/wineinstall: Ove Kaaven <ovek@arcticnet.no>
1462         Symlink root's registry to global registry. Minor cleanups.
1464         * ole/ole2nls.c: Owen Wang <owenw@corel.ca>
1465         Added further implementation of WINAPI EnumDateFormats() to support
1466         three more locales: German(standard), French(standard) and French
1467         (canadian). All date formats follow conventions from Windows NT 4.0
1469         * dlls/comctl32/treeview.c:
1470         Serge Ivanov <sergei@corel.ca>
1471         Added proper handling TVIS_OVERLAYMASK flag and allows to display
1472         overlay images. Fixed off by one error with listitem in
1473         TREEVIEW_InsertItemA (uNumItems is 0 based, cChildren is a count).
1475 2000-04-14  Alexandre Julliard  <julliard@winehq.com>
1477         * include/thread.h, scheduler/Makefile.in, scheduler/pthread.c:
1478         Ove Kaaven <ovek@arcticnet.no>
1479         POSIX threads emulation, tricks glibc into being threadsafe.
1481         * scheduler/client.c, server/main.c, server/request.c:
1482         Made server launching somewhat cleaner and faster.
1484         * dlls/ddraw/ddraw/dga.c, dlls/ddraw/dga.c, include/x11drv.h, windows/x11drv/event.c:
1485         Marcus Meissner <Marcus.Meissner@caldera.de>
1486         Detypoed X11DRV_EVENT_SetInputMethod.
1488         * windows/x11drv/keyboard.c:
1489         Stephane Lussier <stephane@macadamian.com>
1490         When dealing with XKB extensions, force the AltGr key mask to use the
1491         group index instead of the modifier.
1493         * include/windef.h:
1494         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1495         Define __fastcall.
1497         * include/commctrl.h:
1498         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1499         Added a few toolbar defines.
1501         * graphics/enhmetafiledrv/graphics.c, graphics/enhmetafiledrv/init.c:
1502         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1503         A few corrections to bounding boxes.
1505         * graphics/x11drv/graphics.c:
1506         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1507         Don't close groups of polylines.
1509         * misc/comm.c: Marcus Meissner <marcus@jet.franken.de>
1510         Do not dereference a ptr we just checked being NULL.
1512         * dlls/ddraw/d3ddevice/main.c, dlls/ddraw/ddraw_private.h, dlls/ddraw/direct3d/main.c, dlls/ddraw/mesa_private.h:
1513         Francois Gouget <fgouget@psn.net>
1514         Changed the placement of WINE_UNUSED to make gcc 2.7.2 happy.
1516         * misc/registry.c: Ove Kaaven <ovek@arcticnet.no>
1517         Follow symlinks when saving registry.
1519         * debugger/Makefile.in:
1520         Added missing winestub dependency.
1522         * include/server.h, scheduler/process.c, server/event.c, server/object.h, server/process.c, server/thread.c, server/trace.c:
1523         Load done event now created by the server.
1525 2000-04-13  Alexandre Julliard  <julliard@winehq.com>
1527         * debugger/.cvsignore, debugger/Makefile.in, debugger/break.c, debugger/db_disasm.c, debugger/dbg.y, debugger/debug.l, debugger/debugger.h, debugger/display.c, debugger/expr.c, debugger/hash.c, debugger/info.c, debugger/intvar.h, debugger/memory.c, debugger/module.c, debugger/msc.c, debugger/registers.c, debugger/source.c, debugger/stabs.c, debugger/stack.c, debugger/types.c, debugger/winedbg.c, debugger/winedbg.spec, include/stackframe.h, Makefile.in:
1528         Eric Pouech <Eric.Pouech@wanadoo.fr>
1529         Made the winedbg an external and WineLib program.
1530         Centralized output handling (preparation for console usage).
1531         Fixed a few debug information reading options (stabs and sym).
1532         Started a framework to hold debugger's internal variables.
1534         * miscemu/main.c, documentation/wine.man.in, include/options.h, misc/main.c, misc/options.c:
1535         Eric Pouech <Eric.Pouech@wanadoo.fr>
1536         Got rid of -debug wine's option (wine now requires an external debugger).
1538         * win32/except.c, winedefault.reg:
1539         Eric Pouech <Eric.Pouech@wanadoo.fr>
1540         Added launching of a debugger when unhandled exception occurs.
1542         * relay32/builtin32.c:
1543         Eric Pouech <Eric.Pouech@wanadoo.fr>
1544         Added a .xcnlnk section to builtin KERNEL32 PE header.
1546         * loader/module.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
1547         Let CreateProcess launch unix executable without a .exe extension.
1548         Fixed arguments passed when creating a unix process.
1550         * dlls/ntdll/signal_i386.c, include/acconfig.h, include/config.h.in, configure, configure.in:
1551         Fixed signal stack handling on Linux when sigaltstack is available.
1552         Added a direct sigaltstack syscall to work-around the glibc bug.
1554         * dlls/ntdll/signal_i386.c, include/global.h, memory/virtual.c:
1555         Implemented guard pages and stack overflow exceptions.
1557         * include/thread.h, scheduler/process.c, scheduler/thread.c:
1558         Cleanup thread stack allocation. Use a single VirtualAlloc for TEB and
1559         the various stacks.
1561         * files/profile.c:
1562         Make sure HKLM\Software\Wine\Wine is a non-volatile key.
1564         * dlls/x11drv/x11drv_main.c, windows/x11drv/keyboard.c:
1565         Stephane Lussier <stephane@macadamian.com>
1566         Fixed AltGr key handling.
1568         * dlls/ddraw/ddraw/dga.c, dlls/ddraw/dga.c, dlls/ddraw/dga_private.h, dlls/ddraw/dpalette/dga.c, dlls/ddraw/dsurface/dga.c:
1569         Marcus Meissner <Marcus.Meissner@caldera.de>
1570         Make DirectDraw compile with DGA2 present.
1572         * files/file.c:
1573         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
1574         FILE_CreateFile()'s read/write-check was broken due to checking of
1575         ERROR_xxx instead of STATUS_xxx.
1577         * objects/enhmetafile.c:
1578         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1579         Fixes and cleans up some of the GetEnhMetaFile* functions.
1580         Fixes scaling of EMFs in playback.  Will probably be right
1581         when World Transforms work properly...
1583         * memory/global.c:
1584         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1585         GlobalReAlloc returns 0 on failure.
1587         * dlls/ntdll/ntdll.spec, dlls/ntdll/om.c:
1588         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
1589         Stub for NtAllocateUuids.
1591         * dlls/comctl32/treeview.c:
1592         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1593         Clear TopRootItem when whole tree is deleted.
1594         Fix off by one lstrcpyn.
1595         Clean up and fix GetNextItem.
1597 2000-04-11  Alexandre Julliard  <julliard@winehq.com>
1599         * documentation/.cvsignore: Ignore all output files.
1601         * dlls/wininet/.cvsignore, dlls/wininet/Makefile.in, dlls/wininet/ftp.c, dlls/wininet/internet.c, dlls/wininet/internet.h, dlls/wininet/utility.c, dlls/wininet/wininet.spec, include/debugdefs.h, include/urlmon.h, include/wininet.h, Make.rules.in, configure, configure.in, dlls/Makefile.in, dlls/urlmon/.cvsignore, dlls/urlmon/Makefile.in, dlls/urlmon/umon.c, dlls/urlmon/urlmon.spec:
1602         Merged urlmon.dll and wininet.dll from the Corel tree (implementation
1603         by Ulrich Czekalla <ulrichc@corel.ca>)
1605         * include/process.h, include/thread.h, include/winbase.h, scheduler/client.c, scheduler/process.c, scheduler/thread.c, windows/queue.c:
1606         Made GetProcessHeap(), GetCurrentProcessId(), GetCurrentThread() and
1607         GetCurrentProcess() inline.
1609         * AUTHORS, include/authors.h:
1610         Marcus Meissner <marcus@jet.franken.de>
1611         Merged in Corel's AUTHORs.
1613         * graphics/x11drv/dib.c:
1614         Marcus Meissner <marcus@jet.franken.de>
1615         Only copy dstwidth*3 bytes in the 24bit case.
1617         * dlls/ddraw/dsurface/x11.c:
1618         Marcus Meissner <marcus@jet.franken.de>
1619         Free private structure in Xlib_DDS_Release.
1621         * windows/message.c: Ulrich Czekalla <ulrichc@corel.ca>
1622         MSG_ProcessKbdMsg can be called from peek, so only process when remove is set.
1624         * dlls/comctl32/treeview.c:
1625         Serge Ivanov <sergei@corel.ca>
1626         TreeView - minor bugfix and optimization:
1627            - GetDC call moved down to avoid possible resource leak.
1628            - Invariant code is moved out of loop.
1630         * dlls/shell32/pidl.c:
1631         Ulrich Czekalla <ulrichc@corel.ca>
1632         _ILGetFileDate should convert the date to local time before generating
1633         the string (_ILGetFileDateTime does not).
1635         * dlls/winmm/mmio.c:
1636         Noomen Hamza <noomen@macadamian.com>
1637         Fixed other bugs within MMIO implementation. Now, it's possible to
1638         copy/cut from PhotoPaint and paste to CorelDraw.
1640 2000-04-10  Alexandre Julliard  <julliard@winehq.com>
1642         * dlls/ddraw/d3ddevice/main.c, dlls/ddraw/d3ddevice/mesa.c:
1643         Marcus Meissner <Marcus.Meissner@caldera.de>
1644         Use d3dexecutebuffer_create only when compiling with MESA.
1646 2000-04-09  Alexandre Julliard  <julliard@winehq.com>
1648         * graphics/x11drv/bitmap.c, graphics/x11drv/palette.c, graphics/ttydrv/palette.c:
1649         Dimitrie O. Paun <dimi@cs.toronto.edu>
1650         Replaced xmalloc calls with malloc/HeapAlloc calls.
1652         * console/generic.c, console/ncurses.c, console/xterm.c:
1653         Eric Pouech <Eric.Pouech@wanadoo.fr>
1654         Cosmetics.
1656         * memory/heap.c:
1657         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
1658         Implemented HeapWalk().
1660         * dlls/ddraw/dsurface/x11.c:
1661         Marcus Meissner <marcus@jet.franken.de>
1662         Two left over HeapValidate assertions removed.
1664         * server/debugger.c:
1665         Eric Pouech <Eric.Pouech@wanadoo.fr>
1666         Clear status for sending exception event.
1668         * tools/genpatch: Eric Pouech <Eric.Pouech@wanadoo.fr>
1669         Added ability to put new-lines in changelog entry.
1670         Added -p to locate destination directory.
1672         * dlls/comctl32/listview.c:
1673         Richard Cohen <richard@jubjub.demon.co.uk>
1674         GetItem was returning the item instead of subitem info.
1676         * programs/winemine/main.c:
1677         Dave Pickles <davep@cyw.uklinux.net>
1678         Registry key used in LoadBoard() was not the same as the one used in
1679         SaveBoard(). Also fixed a typo in the position saving code.
1681         * configure, configure.in:
1682         Create directories that don't contain a Makefile.
1684         * tools/wrc/Makefile.in, dlls/ttydrv/Makefile.in, dlls/winmm/Makefile.in, dlls/x11drv/Makefile.in, documentation/Makefile.in, include/Makefile.in, ole/Makefile.in, programs/Makefile.in, programs/winhelp/Makefile.in, tools/Makefile.in, Make.rules.in, Makefile.in, debugger/Makefile.in, dlls/Makefile.in, dlls/ddraw/Makefile.in:
1685         Improved support for Makefiles that need to recurse in subdirectories.
1687         * dlls/ddraw/dpalette/dga.c, dlls/ddraw/dpalette/main.c, dlls/ddraw/dpalette/x11.c, dlls/ddraw/dsurface/dga.c, dlls/ddraw/dsurface/main.c, dlls/ddraw/dsurface/x11.c, configure.in, dlls/ddraw/.cvsignore, dlls/ddraw/Makefile.in, dlls/ddraw/convert.c, dlls/ddraw/d3d_private.h, dlls/ddraw/d3dcommon.c, dlls/ddraw/d3ddevice/main.c, dlls/ddraw/d3ddevice/mesa.c, dlls/ddraw/d3ddevices.c, dlls/ddraw/d3dexecutebuffer.c, dlls/ddraw/d3dlight.c, dlls/ddraw/d3dmaterial.c, dlls/ddraw/d3dtexture.c, dlls/ddraw/dclipper/main.c, dlls/ddraw/ddraw.spec, dlls/ddraw/ddraw/dga.c, dlls/ddraw/ddraw/main.c, dlls/ddraw/ddraw/x11.c, dlls/ddraw/ddraw_main.c, dlls/ddraw/ddraw_private.h, dlls/ddraw/dga.c, dlls/ddraw/dga_private.h, dlls/ddraw/direct3d/main.c, dlls/ddraw/direct3d/mesa.c, dlls/ddraw/helper.c, dlls/ddraw/main.c, dlls/ddraw/mesa.c, dlls/ddraw/mesa_private.h, dlls/ddraw/x11.c, dlls/ddraw/x11_private.h, configure:
1688         Marcus Meissner <marcus@jet.franken.de>
1689         Restructured DirectDraw. Split into X11 and DGA driver, and multiple
1690         files/dirs for easier maintenance. Cleaned up structs and include
1691         files. Reindented the code. Started the same for Direct3D.  Driver
1692         inclusion now done by using configure/Makefile/ELF constructor tricks.
1694 2000-04-08  Alexandre Julliard  <julliard@winehq.com>
1696         * windows/x11drv/event.c, files/profile.c, graphics/x11drv/xfont.c, include/cursoricon.h, include/message.h, loader/ne/module.c, memory/heap.c, scheduler/sysdeps.c, scheduler/syslevel.c, windows/cursoricon.c, windows/timer.c, dlls/shell32/changenotify.c, dlls/shell32/iconcache.c, dlls/user/user_main.c, dlls/x11drv/x11drv_main.c:
1697         Removed a number of global handle allocations and critical section
1698         initializations.
1700         * server/process.c, scheduler/process.c:
1701         Temporary hack to share handles between processes sharing the same
1702         address space.
1704         * include/winbase.h, scheduler/critsection.c:
1705         Added lazy initialization of critical sections, based on a patch by
1706         Andrew Lewycky.
1708         * dlls/comctl32/tab.c: Yuxi Zhang <yuxi@corel.ca>
1709         Stephen Mereu
1710         TabCtrl leftmostVisible is not updated properly. It caused the QP
1711         application bar on the bottom fail to bring back the items when there
1712         is no need to scrolling. Also fixed a bug that when an item is inserted,
1713         setItemBounds should be called first, then it's time to invalidate.
1715         * relay32/kernel32.spec, win32/newfns.c:
1716         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
1717         Added PeekNamedPipe stub.
1719         * graphics/x11drv/init.c:
1720         Gerard Patel <g.patel@wanadoo.fr>
1721         Fixed pixmap leak with the 1x1 bitmap in memory DCs.
1723         * tools/wineinstall: Ove Kaaven <ovek@arcticnet.no>
1724         wineinstall now properly configures no-windows installs, and should now
1725         be easier to adapt for binary packages too.
1727         * documentation/samples/system.ini:
1728         Ove Kaaven <ovek@arcticnet.no>
1729         Default system.ini (from documentation/status/multimedia).
1731 2000-04-06  Alexandre Julliard  <julliard@winehq.com>
1733         * server/debugger.c, server/thread.c, server/thread.h:
1734         Do not send a debug event for a thread until the previous event for
1735         the same thread has been continued.
1737         * misc/registry.c, wine.ini:
1738         Moved SaveOnlyUpdatedKeys to wine.ini.
1739         Use get_config_dir() instead of hardcoding ~/.wine
1740         Simplified loading and saving routines.
1742         * files/profile.c, include/options.h, include/server.h, scheduler/client.c, server/request.c:
1743         Added support for WINEPREFIX environment variable.
1745         * windows/winpos.c, loader/ne/module.c, memory/selector.c, misc/lstr.c, misc/network.c, msdos/int21.c, objects/font.c, win32/console.c, win32/except.c, windows/dialog.c, windows/hook.c, windows/mdi.c, windows/message.c, dlls/win32s/w32sys.c, dlls/win87em/emulate.c, dlls/winmm/mmio.c, dlls/winmm/mmsystem.c, dlls/winmm/mmsystem.spec, graphics/painting.c, graphics/psdrv/driver.c, graphics/win16drv/font.c, loader/module.c, dlls/advapi32/advapi32.spec, dlls/advapi32/service.c, dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c, dlls/gdi/gdi.spec, dlls/msacm/msacm_main.c, dlls/ole32/storage32.c, dlls/oleaut32/stubs.c, dlls/olepro32/olepro32.spec, dlls/shell32/shell.c, dlls/shell32/shell32.spec, dlls/shell32/shellpath.c, dlls/shell32/shlwapi.spec:
1746         Patrik Stridvall <ps@leissner.se>
1747         Fixed some issues reported by winapi_check.
1749         * include/winuser.h, ole/ole2nls.c, relay32/kernel32.spec:
1750         Owen Wang <owenw@corel.ca>
1751         Implemented API EnumTimeFormatsA(). It supports now all different
1752         English locales, as well as German(standard), French(standard) and
1753         French(Canadian).  All time formats follow conventions in Windows NT 4.0
1755         Haithem Hmida (of Macadamian for Corel)
1756         Implemented GetCurrencyFormatA() API:
1757         - GetCurrencyFormatA() calls GetNumberFormatA() to format the number
1758           (as a positive one), then formats the number depending on
1759           NegativeOrder/PositiveOrder fields.
1760         - GetNumberFormatA() has been slightly modified.
1762         * objects/text.c:
1763         Junichi Kuchinishi <jkuchi@mahoroba.ne.jp>
1764         Added conversion from DBCS lpDx to WCHAR lpDx.
1766         * tools/winapi_check/win32/advapi32.api, tools/winapi_check/win32/shell32.api, tools/winapi_check/win32/shlwapi.api, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_options.pm, tools/winapi_check/winapi_parser.pm:
1767         Patrik Stridvall <ps@leissner.se>
1768         - Implemented stub statistics. Turned off by default. (Requested by Francois
1769         Gouget).
1770         - Implemented missing prototype checking. Turned off by default (Requested
1771         by Dimitry Timoshkov).
1772         - Implemented .spec file name sanity checking. Turned off by default.
1773         - Implemented documentation width checking. Turned off by default.
1774         - Minor bug fixes.
1776         * dlls/ole32/compobj.c:
1777         Andrew Lewycky <andrewl@corel.ca>
1778         Fix StringFromGUI2 return value as per documentation.
1780         * dlls/dsound/dsound_main.c:
1781         Marcus Meissner <Marcus.Meissner@caldera.de>
1782         Make audiodevice blocking directly after the non-blocking open, since
1783         we use the write(2) also for synchronization.
1785         * dlls/winsock/async.c, dlls/winsock/socket.c:
1786         Rein Klazes <rklazes@casema.net>
1787         Corrected error handling for ws_getprotobyname/number.
1788         Made the Async error returns the same as the normal functions.
1790         * files/dos_fs.c:
1791         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
1792         GetShortPathName: always erase characters at the end of the new
1793         string, and return only single backslashes.
1795 2000-04-04  Alexandre Julliard  <julliard@winehq.com>
1797         * files/dos_fs.c, files/drive.c, files/file.c, include/drive.h, include/file.h, include/options.h, misc/main.c, misc/options.c, misc/registry.c, documentation/wine.conf.man.in, documentation/wine.man.in:
1798         Added a per-drive FailReadOnly flag, and removed the global
1799         --failreadonly option.
1801         * dlls/x11drv/x11drv_main.c, files/file.c, scheduler/client.c:
1802         Fixed file descriptor leaks.
1804         * misc/registry.c:
1805         Call PROFILE_GetWineIniBool before starting to fill the request
1806         buffer. Made new registry format the default.
1808         * server/ptrace.c:
1809         Increment suspend count before attempting attach in suspend_for_ptrace.
1811         * server/file.c, server/mapping.c, server/mutex.c, server/process.c, server/registry.c, server/request.h, server/semaphore.c, server/timer.c, server/trace.c, tools/make_requests, server/atom.c, server/console.c, server/event.c:
1812         Made request tracing more robust against bogus lengths.
1814         * documentation/Makefile.in, documentation/wine.conf.man.in, documentation/wine.man.in:
1815         Peter Ganten <peter@ganten.org>
1816         Adapted the manual pages to the new long options, updated the
1817         -debugmsg channels and added a small hack to get the @sysconfdir@
1818         stuff in the manual pages right.
1820         * dlls/winmm/mmio.c:
1821         Noomen Hamza <noomen@macadamian.com>
1822         Fixed two small bugs within MMIO_InstallIOProc and MMIO_Destroy.
1824         * programs/winemine/main.c, programs/winemine/main.h:
1825         Joshua Thielen <fozey@netzero.com>
1826         Added DestroyBoard function to delete bitmap handles.
1827         Moved SelectObject outside of DrawMine.
1828         Selected old object's back into hMemDC.
1830         * msdos/int21.c: Ian Schmidt <ischmidt@cfl.rr.com>
1831         Implemented FAT32 function 7302 (Get Extended DPB).
1833         * win32/device.c: Ian Schmidt <ischmidt@cfl.rr.com>
1834         Implemented DeviceIoControl VWIN32_DIOC_DOS_DRIVEINFO, needed by
1835         Internet Explorer.
1837         * programs/regapi/regapi.c:
1838         Gavriel State <gavriels@corel.ca>
1839         This patch adds the ability for regapi to call the DllRegisterServer or
1840         DllUnregisterServer for a list of DLLs.
1842         * dlls/ole32/ole2.c: Gavriel State <gavriels@corel.ca>
1843         OleRegGetUserType did return an unterminated ASCII string instead of an
1844         OLESTR (wide characters).
1846         * misc/main.c, ole/nls/ena.nls, ole/nls/enb.nls, ole/nls/enc.nls, ole/nls/eng.nls, ole/nls/eni.nls, ole/nls/enj.nls, ole/nls/enl.nls, ole/nls/ens.nls, ole/nls/ent.nls, ole/nls/enu.nls, ole/nls/enz.nls, ole/nls/irl.nls, ole/ole2nls.c:
1847         Michael Abd-El-Malek (Corel)
1848         Changed irl.nls to eni.nls. Reviewed and fixed a lot of the NLS files
1849         to be more compatible to Windows.
1850         Added en_GB (used by Corel Linux 1.0,1.1) as alias for en_UK.
1852         Jeff Tranter <jefft@corel.ca>
1853         The measurement unit for Canadian English should be metric.
1854         LANG_SUB_ENTRY did always return the first language due to missing {}.
1856 2000-03-30  Alexandre Julliard  <julliard@winehq.com>
1858         * documentation/distributors:
1859         Marcus Meissner <marcus@jet.franken.de>
1860         Updated documentation/distributors in regards to shared libraries and
1861         some more windows specific dirs.
1863         * programs/winemine/README, programs/winemine/main.c, programs/winemine/main.h:
1864         Peter Hunnisett <hunnise@nortelnetworks.com>
1865         - Fix painting bug with middle button down when dragging mouse
1866         - Speed up drawing and hence overall speed
1867         - Fix compiler warnings
1868         - Added some optional debugging information
1869         - Added a new known bug to the list
1871         * misc/comm.c: Rein Klazes <rklazes@casema.net>
1872         Added CTS, DSR and RingIndicator states to Window's semi-documented
1873         modem line status register.
1875         * include/wingdi.h, objects/enhmetafile.c:
1876         Huw D M Davies <h.davies1@physics.ox.ac.uk>
1877         Delete objects after use in EnumEnhMetaFile.
1878         Make PlayEnhMetaFile call EnumEnhMetaFile.
1879         Move EnumEnhMetaFile prototype to wingdi.h.
1881         * dlls/dsound/dsound_main.c, dlls/winmm/wineoss/audio.c:
1882         Marcus Meissner <Marcus.Meissner@caldera.de>
1883         open() the OSS sounddevice non-blocking in case another process has it
1884         open already.
1886         * scheduler/process.c:
1887         Commented out exit() call on ExitProcess for now.
1889         * server/context_i386.c, server/debugger.c, server/main.c, server/object.h, server/process.c, server/thread.c, server/thread.h:
1890         Set thread start address to 0 on events generated by
1891         DebugActiveProcess.
1892         Return a correct address in the simulated exception event.
1894         * dlls/ttydrv/ttydrv_main.c, graphics/ttydrv/dc.c, graphics/ttydrv/graphics.c, graphics/ttydrv/text.c, include/ttydrv.h, windows/ttydrv/wnd.c:
1895         Fixed ttydrv compile when using curses. Cleaned up a few #ifdefs.
1897 2000-03-28  Alexandre Julliard  <julliard@winehq.com>
1899         * dlls/dsound/dsound_main.c, dlls/winaspi/winaspi16.c, graphics/path.c, programs/winhelp/macro.yacc.y:
1900         Niels Kristian Bech Jensen <nkbj@image.dk>
1901         - Fix some compiler warnings.
1902         - Remove superfluous #include statement.
1904         * include/wine/winnet16.h, misc/network.c:
1905         Ron Gage <rongage@att.net>
1906         Fixed bug reported by winapi_check.
1908         * */*.c:
1909         Patrik Stridvall <ps@leissner.se>
1910         Added/fixed some documentation reported by winapi_check.
1912         * graphics/x11drv/palette.c, objects/palette.c:
1913         Fixed memory allocations.
1915         * dlls/crtdll/crtdll.spec, dlls/crtdll/crtdll_main.c, dlls/user/user32.spec, include/winuser.h, windows/input.c:
1916         Patrik Stridvall <ps@leissner.se>
1917         - Added/fixed some documentation reported by winapi_check
1918         - Renamed MapVirtualKeyEx32A to MapVirtualKeyExA
1919         - Renamed CRTDLL__dllonexit to CRTDLL___dllinit
1921         * dlls/ole32/ifs.c, dlls/ttydrv/ttydrv_main.c, misc/printdrv.c:
1922         Patrik Stridvall <ps@leissner.se>
1923         Fixed some warnings.
1925         * tools/winapi_check/win32/kernel32.api, tools/winapi_check/winapi_check, tools/winapi_check/winapi_options.pm:
1926         Patrik Stridvall <ps@leissner.se>
1927         - Updated the API files.
1928         - Minor bug fixes
1930         * dlls/comctl32/animate.c:
1931         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
1932         Do a LoadLibraryA of WINMM upon ANIMATE_Create and a FreeLibrary upon
1933         ANIMATE_Destroy.
1935         * tools/wrc/parser.l: Patrik Stridvall <ps@leissner.se>
1936         Minor fix in wrc to support the Solaris preprocessor.
1938         * debugger/msc.c: Patrik Stridvall <ps@leissner.se>
1939         Fixed some ANSI C violations.
1941         * documentation/no-windows:
1942         Ove Kaaven <ovek@arcticnet.no>
1943         Add start menu directories.
1945         * scheduler/sysdeps.c, scheduler/thread.c:
1946         Put CLONE_FILES back in, it is still breaking too many things.
1948         * objects/bitmap.c, graphics/ttydrv/bitmap.c, graphics/x11drv/bitmap.c, graphics/x11drv/brush.c, graphics/x11drv/dib.c, graphics/x11drv/init.c, graphics/x11drv/oembitmap.c, include/bitmap.h, include/x11drv.h:
1949         Merged DDBitmap and physBitmap into the generic bitmap structure
1950         (suggested by Andrew Lewycky).
1952         * files/dos_fs.c:
1953         Ignore trailing spaces in DOSFS_ToDosFCBFormat.
1955         * dlls/winsock/socket.c:
1956         Fixed small bug in WSOCK32_accept
1958 2000-03-26  Alexandre Julliard  <julliard@winehq.com>
1960         * include/version.h, ANNOUNCE, ChangeLog:
1961         Release 20000326.
1963 ----------------------------------------------------------------
1964 2000-03-26  Alexandre Julliard  <julliard@winehq.com>
1966         * files/dos_fs.c: Stefan Leichter <sle@camline.com>
1967         DOSFS_ToDosFCBFormat: fail if extension longer than 3 characters.
1969         * tools/cvdump/.cvsignore, tools/cvdump/Makefile.in, tools/cvdump/cvcrunch.c, tools/cvdump/cvdump.c, tools/cvdump/cvdump.h, tools/cvdump/cvinclude.h, tools/cvdump/cvload.c, Makefile.in, configure, configure.in:
1970         John R. Sheets <jsheets@codeweavers.com>
1971         Added cvdump tool to dump CodeView symbol information.
1973         * dlls/winsock/socket.c, include/server.h, server/sock.c, server/trace.c:
1974         Ove Kaaven <ovek@arcticnet.no>
1975         Handle POLLHUP better (delay FD_CLOSE notification until all data has
1976         been read). Made WSAEnumNetworkEvents atomic. Convert socket event
1977         error codes properly. Made accept()-ed sockets inherit the listening
1978         socket's WSAAsyncSelect().
1980         * dlls/dsound/dsound_main.c:
1981         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
1982         Fixed debug formatting.
1984         * dlls/advapi32/registry.c: Fixed error checking in registry saving.
1986         * misc/cdrom.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
1987         Use strerror in debug output.
1989         * dlls/shell32/changenotify.c:
1990         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
1991         SHChangeNotify[A|W]: free only items we allocated.
1993         * loader/resource.c, objects/enhmetafile.c, objects/font.c, objects/text.c, win32/console.c:
1994         Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
1995         Fixes for i18n.
1997         * debugger/stabs.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
1998         Now read .so list from debuggee's address space.
2000         * include/windowsx.h: Francois Gouget <fgouget@psn.net>
2001         Added missing macros.
2003         * include/winnt.h, include/winreg.h, server/registry.c:
2004         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
2005         Moved some registry definitions to winnt.h.
2007         * programs/winhelp/winhelp.spec, programs/cmdlgtst/cmdlgtst.spec, programs/notepad/notepad.spec, programs/progman/progman.spec:
2008         Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
2009         Added import of comdlg32.dll in spec file.
2011         * windows/winpos.c: Gerard Patel <g.patel@wanadoo.fr>
2012         Activate a hidden window only when explicitely asked by the
2013         application.
2015         * debugger/Makefile.in, debugger/break.c, debugger/dbg.y, debugger/debugger.h, debugger/hash.c, debugger/info.c, debugger/module.c, debugger/msc.c, debugger/stabs.c, debugger/winedbg.c:
2016         Eric Pouech <Eric.Pouech@wanadoo.fr>
2017         improved exception handling
2018         merged all module handling code in new module.c file
2019         reenabled 'walk module' and 'info module' commands
2020         added ability to drive break on thread startup
2022         * dlls/oleaut32/oleaut.c, dlls/oleaut32/oleaut32.spec:
2023         Marcus Meissner <marcus@jet.franken.de>
2024         Stubs for DllRegisterServer/DllUnregisterServer.
2026         * dlls/winaspi/winaspi32.c: Marcus Meissner <marcus@jet.franken.de>
2027         Fixed return value for SC_GET_DEV_TYPE.
2029 2000-03-25  Alexandre Julliard  <julliard@winehq.com>
2031         * server/registry.c, server/trace.c, tools/build.c, windows/cursoricon.c, windows/dce.c, windows/msgbox.c, windows/nonclient.c, windows/rect.c, windows/timer.c, windows/user.c, windows/winpos.c, windows/winproc.c, loader/pe_image.c, loader/resource.c, memory/heap.c, memory/local.c, misc/version.c, msdos/int21.c, objects/enhmetafile.c, objects/region.c, programs/winhelp/hlpfile.c, programs/winhelp/macro.c, programs/winhelp/winhelp.c, dlls/winmm/wineoss/audio.c, files/dos_fs.c, files/drive.c, files/file.c, files/profile.c, graphics/enhmetafiledrv/graphics.c, graphics/enhmetafiledrv/init.c, graphics/metafiledrv/init.c, graphics/x11drv/graphics.c, graphics/x11drv/xfont.c, include/windef.h, dlls/comctl32/comctl32undoc.c, dlls/comctl32/trackbar.c, dlls/comctl32/updown.c, dlls/commdlg/colordlg.c, dlls/crtdll/crtdll_main.c, dlls/ole32/hglobalstream.c, dlls/ole32/memlockbytes.c, dlls/ole32/stg_stream.c, dlls/ole32/storage32.c, dlls/winmm/lolvldrv.c, dlls/winmm/mciwave/mciwave.c, dlls/winmm/mmio.c, dlls/winmm/mmsystem.c, dlls/winmm/time.c, controls/edit.c, controls/menu.c, controls/scroll.c:
2032         Francois Gouget <fgouget@psn.net>
2033         Use min/max instead of MIN/MAX.
2035         * server/sock.c: Ove Kaaven <ovehk@ping.uio.no>
2036         Handle socket POLLERR/POLLHUP conditions properly.
2037         Clear error field for OOB notifications.
2039         * controls/listbox.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
2040         Send the correct ODA_ code when deselecting an item.
2042         * windows/user.c, include/process.h, include/server.h, include/thread.h, loader/ne/module.c, loader/task.c, scheduler/process.c, scheduler/sysdeps.c, scheduler/thread.c, server/process.c, server/thread.c, server/trace.c:
2043         Fixed a couple of file descriptor leaks.
2044         Always call USER signal proc in the right context.
2045         Cleaned up THREAD_Create.
2047         * include/Makefile.in:
2048         Do not erase local files on uninstall if install dir does not exist.
2050         * windows/multimon.c, windows/sysparams.c, windows/ttydrv/Makefile.in, windows/ttydrv/desktop.c, windows/ttydrv/init.c, windows/ttydrv/monitor.c, windows/ttydrv/wnd.c, windows/user.c, windows/win.c, windows/x11drv/Makefile.in, windows/x11drv/init.c, windows/x11drv/monitor.c, controls/desktop.c, dlls/ttydrv/ttydrv_main.c, dlls/x11drv/x11drv_main.c, graphics/ttydrv/dc.c, include/desktop.h, include/monitor.h, include/ttydrv.h, include/user.h, include/x11drv.h, misc/main.c, windows/dce.c:
2051         Store monitor size and depth in the generic structure.
2052         Merged monitor driver into USER driver.
2054         * windows/ttydrv/Makefile.in, windows/ttydrv/main.c, windows/x11drv/Makefile.in, windows/x11drv/desktop.c, windows/x11drv/main.c, windows/x11drv/monitor.c, windows/x11drv/mouse.c, windows/x11drv/wnd.c, dlls/ddraw/ddraw_main.c, dlls/x11drv/x11drv_main.c, graphics/x11drv/bitmap.c, graphics/x11drv/brush.c, graphics/x11drv/dib.c, graphics/x11drv/graphics.c, graphics/x11drv/init.c, graphics/x11drv/oembitmap.c, graphics/x11drv/palette.c, include/x11drv.h:
2055         A few simplifications and optimizations in the x11 driver.
2057         * Make.rules.in, Makefile.in, dlls/ddraw/Makefile.in, dlls/ttydrv/Makefile.in, dlls/x11drv/Makefile.in:
2058         Link ttydrv and x11drv objects into their respective dll.
2060         * dlls/user/Makefile.in: Added missing keyboard.spec.
2062 2000-03-24  Alexandre Julliard  <julliard@winehq.com>
2064         * windows/msgbox.c, misc/comm.c, misc/printdrv.c, win32/except.c:
2065         Moved FatalAppExit functions to win32/except.c.
2066         Added a few uses of Callout instead of referencing USER functions
2067         directly.
2069         * windows/cursoricon.c, include/bitmap.h, objects/bitmap.c:
2070         Moved LoadImage and related functions to cursoricon.c.
2072         * dlls/gdi/.cvsignore, dlls/gdi/Makefile.in, dlls/gdi/gdi.spec, dlls/gdi/thunk.c, dlls/user/.cvsignore, dlls/user/Makefile.in, dlls/user/keyboard.spec, dlls/user/thunk.c, dlls/user/user.spec, if1632/.cvsignore, if1632/Makefile.in, if1632/keyboard.spec, if1632/thunk.c, include/callback.h, objects/linedda.c, windows/win.c:
2073         Moved gdi/user thunking functions into their respective dlls.
2074         Moved keyboard.spec into user dll.
2076         * configure, configure.in: Lionel Ulmer <lionel.ulmer@free.fr>
2077         Disable OpenGL support if the latter is thread safe.
2079         * debugger/dbg.y, debugger/memory.c, dlls/crtdll/wcstring.c, dlls/ole32/clipboard.c, dlls/ole32/storage32.h, graphics/win16drv/init.c, graphics/x11drv/dib.c, scheduler/sysdeps.c:
2080         Patrik Stridvall <ps@leissner.se>
2081         Fixed some warnings.
2083         * dlls/dinput/dinput_main.c, graphics/dispdib.c, include/animate.h, include/button.h, include/crtdll.h, include/dinput.h, include/dispdib.h, include/enhmetafile.h, include/imagelist.h, include/metafile.h, include/region.h, include/sqltypes.h, include/wine/icmpapi.h, include/wine/obj_commdlgbrowser.h, include/wine/obj_contextmenu.h, include/wine/obj_dockingwindowframe.h, include/wine/obj_property.h, include/wine/obj_shellextinit.h, include/wine/windef16.h, include/wine/wingdi16.h, include/winpos.h:
2084         Patrik Stridvall <ps@leissner.se>
2085         Made the include files self sufficient.
2087         * dlls/win32s/w32skernel.c, dlls/winmm/joystick.c, dlls/winmm/mmsystem.c, dlls/winmm/wineoss/audio.c, dlls/winsock/socket.c, dlls/winsock/wsock32.spec, misc/ddeml.c, dlls/oleaut32/oleaut.c, dlls/oleaut32/safearray.c, dlls/oleaut32/variant.c, dlls/olepro32/olepro32stubs.c, dlls/shell32/changenotify.c, dlls/shell32/iconcache.c, dlls/shell32/shell.c, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/systray.c, dlls/tapi32/assisted.c, dlls/tapi32/line.c, dlls/tapi32/phone.c, dlls/version/install.c, dlls/dplayx/dpclassfactory.c, dlls/dsound/dsound_main.c, dlls/icmp/icmp_main.c, dlls/mpr/mpr_main.c, dlls/msvideo/msvideo_main.c, dlls/ntdll/nt.c, dlls/ntdll/rtl.c, dlls/ntdll/sec.c, dlls/ntdll/time.c, dlls/odbc32/proxyodbc.c, dlls/ole32/compositemoniker.c, dlls/avifil32/avifile.c, dlls/comctl32/comctl32undoc.c, dlls/comctl32/draglist.c, dlls/comctl32/flatsb.c, dlls/commdlg/finddlg32.c, dlls/ddraw/ddraw_main.c:
2088         Patrik Stridvall <ps@leissner.se>
2089         Added/fixed some documentation reported by winapi_check.
2091         * relay32/kernel32.spec, scheduler/critsection.c, win32/newfns.c, windows/painting.c, dlls/crtdll/crtdll.spec, dlls/ntdll/ntdll.spec, graphics/painting.c, include/ddeml.h, include/wingdi.h:
2092         Patrik Stridvall <ps@leissner.se>
2093         Fixed some issues reported by winapi_check.
2095         * include/winnt.h, ole/ole2nls.c, dlls/ntdll/signal_i386.c, dlls/ole32/storage32.c, dlls/shell32/shlview.c:
2096         Patrik Stridvall <ps@leissner.se>
2097         Fixed some ANSI C violations.
2099         * programs/cmdlgtst/cmdlgtst.c, programs/notepad/Da.rc, programs/notepad/De.rc, programs/notepad/dialog.c, programs/regapi/regapi.c, programs/regtest/regtest.c, programs/view/view.c, programs/wcmd/directory.c, programs/wcmd/wcmdmain.c, programs/avitools/aviplay.c:
2100         Patrik Stridvall <ps@leissner.se>
2101         Fixed ANSI C related compile problems.
2103         * tools/winapi_check/win32/gdi32.api, tools/winapi_check/win32/kernel32.api, tools/winapi_check/win32/ole32.api, tools/winapi_check/win32/oleaut32.api, tools/winapi_check/win32/user32.api, tools/winapi_check/win32/winmm.api, tools/winapi_check/win16/ddeml.api, tools/winapi_check/winapi_check, tools/winapi_check/winapi_function.pm, tools/winapi_check/winapi_options.pm, tools/winapi_check/winapi_parser.pm:
2104         Patrik Stridvall <ps@leissner.se>
2105         - Updated API files
2106         - Don't check the *.spec.c files
2107         - Better parsing of strings
2108         - Better documentation checking
2109         - Minor bug fixes
2111         * dlls/dinput/dinput_main.c: Lionel Ulmer <lionel.ulmer@free.fr>
2112         - added some debug code and cleaned-up the mouse warping code
2113         - be ready once mouse will be reported relatively
2115         * windows/mdi.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
2116         Fixed copying of the MDI 'Windows' menu items if the items are not of
2117         type MFT_STRING.
2119         * controls/menu.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
2120         Set the correct value for the cch element of MENUITEMINFO in
2121         GetMenuItemInfo.
2123         * dlls/gdi/gdi32.spec: Huw D M Davies <h.davies1@physics.ox.ac.uk>
2124         Fix spec file entries for EnumFontFamiliesEx*.
2126         * tools/bug_report.pl: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2127         Further code simplifications and interface (consistency) improvements.
2128         Fix selection of the Wine binary which was broken by a recent change.
2130         * windows/sysparams.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
2131         Added proper termination upon failure.
2133         * debugger/types.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
2134         Fixed basic type evaluation.
2136         * server/registry.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
2137         Ensure that non-NULL terminated stings are saved correctly.
2139         * windows/input.c: Rein Klazes <rklazes@casema.net>
2140         Correct the NotifyCode in the WM_COMMAND message sent by
2141         KBD_translate_accelerator().
2143         * dlls/winaspi/winaspi32.c: Marcus Meissner <marcus@jet.franken.de>
2144         Slightly better REQUEST SENSE dumping, fixed GET_DEV_TYPE returns,
2145         work around EXEC SCSI commands which do not set the host<->target data
2146         flags, ignore errors on DVD REPORT KEY/DVD SEND KEY.
2148         * server/context_i386.c: Peter Hunnisett <hunnise@nortelnetworks.com>
2149         Changed PTRACE_PEEKUSER to PTRACE_PEEKUSR and PTRACE_POKEUSER to
2150         PTRACE_POKEUSR for libc5(?) compile.
2152         * controls/combo.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
2153         Stop a WM_SETTEXT message (and friends) to a combo sending CBN_EDIT*
2154         messages to the parent.
2156         * include/winbase.h, memory/heap.c: Francois Gouget <fgouget@psn.net>
2157         Added (correct) prototype for HeapWalk.
2159         * dlls/ole32/ifs.c, include/wine/obj_base.h:
2160         Francois Gouget <fgouget@psn.net>
2161         - The ICOM_CMETHODxxx cause problems because the 'const' changes the
2162           signature. There's no such thing on Windows anyway (it's a shame) so
2163           just remove them altogether.
2164         - HeapMinimize returns a void, not a 'void*'
2166 2000-03-20  Alexandre Julliard  <julliard@winehq.com>
2168         * windows/ttydrv/event.c, windows/ttydrv/init.c, windows/ttydrv/keyboard.c, windows/ttydrv/main.c, windows/x11drv/desktop.c, windows/x11drv/init.c, windows/x11drv/keyboard.c, windows/x11drv/main.c, loader/main.c, misc/main.c, objects/gdiobj.c, windows/event.c, windows/keyboard.c, windows/multimon.c, windows/ttydrv/desktop.c, windows/win.c, controls/desktop.c, dlls/dinput/dinput_main.c, dlls/display/display_main.c, dlls/mouse/mouse_main.c, dlls/ttydrv/ttydrv.spec, dlls/ttydrv/ttydrv_main.c, dlls/x11drv/x11drv.spec, dlls/x11drv/x11drv_main.c, graphics/ttydrv/init.c, graphics/x11drv/init.c, include/desktop.h, include/keyboard.h, include/message.h, include/monitor.h, include/mouse.h, include/ttydrv.h, include/user.h, include/x11drv.h:
2169         Moved graphics initialisation to the x11drv/ttydrv dll init code.
2170         Merged event, keyboard and mouse drivers into USER driver.
2172 2000-03-19  Alexandre Julliard  <julliard@winehq.com>
2174         * ole/ole2nls.c: Andrew Lewycky <andrewl@corel.com>
2175         Improved CompareStringA performance.
2177         * library/winestub.c: Added missing debugtools.h include.
2179         * programs/winhelp/hlpfile.c, programs/winhelp/macro.c, programs/winhelp/macro.lex.l, programs/winhelp/winhelp.c, programs/clock/language.c, programs/clock/main.h, programs/cmdlgtst/cmdlgtst.c, programs/notepad/dialog.c, programs/notepad/main.c, programs/notepad/search.c, programs/progman/dialog.c, programs/progman/group.c, programs/progman/main.c, programs/progman/program.c, programs/view/init.c, programs/view/view.c:
2180         Niels Kristian Bech Jensen <nkbj@image.dk>
2181         Fixed some compiler errors and warnings.
2183         * ole/ole2nls.c: Steven Elliott <elliotsl@mindspring.com>
2184         Temporarily implemented the LCMAP_SORTKEY flag in the LCMapStringW()
2185         function pending a more complete implementation of locales.
2187         * loader/module.c:
2188         Hack: always try builtin module before elf or elfdll to avoid loading
2189         a builtin dll .so file in the wrong mode.
2191         * graphics/x11drv/xfont.c, objects/font.c:
2192         Moved font resource functions out of the X11 driver.
2194         * tools/makedep.c:
2195         Added support for source files stored in subdirectories.
2197         * graphics/enhmetafiledrv/init.c, graphics/metafiledrv/init.c, graphics/psdrv/init.c, graphics/ttydrv/init.c, graphics/win16drv/init.c, graphics/x11drv/graphics.c, graphics/x11drv/init.c, include/gdi.h, include/x11drv.h, objects/dc.c:
2198         Added GetDCOrgEx in graphics device interface and removed X11 code
2199         from dc.c.
2201         * dlls/winmm/mmio.c, dlls/winmm/mmsystem.spec, dlls/winmm/winemm.h, dlls/winmm/winmm.spec, include/mmsystem.h:
2202         Eric Pouech <Eric.Pouech@wanadoo.fr>
2203         Fixed segmented/linear buffers manipulation.
2204         Better IO buffering.
2205         Added some missing prototypes.
2207         * dlls/comctl32/treeview.c, dlls/shell32/brsfolder.c:
2208         Francois Gouget <fgouget@psn.net>
2209         Explicitly use the TVN_xxxA version of the macros.
2211         * include/commctrl.h: Francois Gouget <fgouget@psn.net>
2212         - Added the TVN_xxxA macros
2213         - Added missing TBNOTIFY macros and types
2214         - Added SNDMSG
2216         * include/winuser.h: Francois Gouget <fgouget@psn.net>
2217         Added WM_APP.
2219         * scheduler/client.c, scheduler/critsection.c, windows/clipboard.c, windows/ttydrv/clipboard.c, windows/ttydrv/keyboard.c, graphics/x11drv/graphics.c, graphics/x11drv/palette.c, include/x11drv.h, library/winestub.c, loader/ne/segment.c, memory/virtual.c, misc/main.c, misc/printdrv.c, misc/registry.c, misc/xmalloc.c, objects/palette.c, graphics/win16drv/init.c, graphics/x11drv/bitblt.c, graphics/x11drv/brush.c, graphics/x11drv/dib.c:
2220         Dimitrie O. Paun <dimi@cs.toronto.edu>
2221         Removed most calls to xmalloc/xrealloc.
2223         * include/windef.h: Francois Gouget <fgouget@psn.net>
2224         - Added missing definition for GLOBALHANDLE and LOCALHANDLE
2225         - Fixed the prototype of WNDENUMPROC
2227         * include/ddeml.h: Francois Gouget <fgouget@psn.net>
2228         Added some missing defines.
2230         * windows/dialog.c: Andrew Lewycky <andrewl@corel.com>
2231         Propagate IsDialogMessage to the parent if the dialog has the
2232         DS_CONTROL flag.
2234         * memory/string.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
2235         Added an exception frame for lstrcpy16.
2237         * loader/main.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
2238         Now attaching imported DLLs of a winelib executable.
2240         * include/wine/obj_inplace.h: Marcus Meissner <marcus@jet.franken.de>
2241         IOleItemContainer has OLEGUID(0x11c), not 0x11a.
2243         * dlls/ole32/compobj.c: Marcus Meissner <marcus@jet.franken.de>
2244         Fixed memory corruption with CoTaskMemRealloc.
2246         * tools/genpatch: Steven Elliott <elliotsl@mindspring.com>
2247         Made various changes to tools/genpatch including suggestions from Ove
2248         Kaaven (Place added files last in the patch.  Add a switch that
2249         specifies modified files.)
2251         * include/tchar.h, include/winnt.h: Francois Gouget <fgouget@psn.net>
2252         Moved the definition of PTSTR and LPTSTR from tchar.h to winnt.h.
2254         * include/windows.h: Francois Gouget <fgouget@psn.net>
2255         Should include 'winspool.h'.
2257         * tools/wrc/parser.h, tools/wrc/parser.l:
2258         Francois Gouget <fgouget@psn.net>
2259         - An extern statement finishes with the first closing '}' or the first
2260           outer ';'
2261         - Handle '#error', '#line' and '#pragma' even when in the 'pp_strips',
2262           'pp_stripe', 'pp_stripp' or 'pp_false' contexts (just like '#if' and
2263           co).  But still don't issue an error if '#error' is found when in the
2264           'pp_false' state.
2266         * tools/wrc/parser.y: Francois Gouget <fgouget@psn.net>
2267         Make the first comma in the control's definition optional.
2269         * dlls/ole32/datacache.c: Andrew Lewycky <andrewl@corel.com>
2270         Support loading any presentation aspect.
2272         * dlls/winaspi/aspi.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2273         Avoid a link error from another DLL on FreeBSD.
2275         * dlls/winmm/joystick.c, dlls/winmm/joystick/joystick.c:
2276         Eric Pouech <Eric.Pouech@wanadoo.fr>
2277         Fixed joystick ID/deviceID/driver handle/instance ID mixup.
2279         * graphics/x11drv/dib.c: Andrew Lewycky <andrewl@corel.com>
2280         Delete the shm segment as soon as wine and X have attached it.
2282         * dlls/winsock/socket.c: Lars Heete <hel@admin.de>
2283         Corrected handling of proto==NULL in WINSOCK_getservbyname and
2284         WINSOCK_getservbyport.
2286         * windows/event.c, include/main.h, loader/main.c, misc/main.c, miscemu/main.c, objects/gdiobj.c, relay32/.cvsignore, relay32/Makefile.in, relay32/gdi32.spec, relay32/user32.spec, configure.in, dlls/Makefile.in, dlls/gdi/.cvsignore, dlls/gdi/Makefile.in, dlls/gdi/gdi.spec, dlls/gdi/gdi32.spec, dlls/gdi/gdi_main.c, dlls/ttydrv/.cvsignore, dlls/ttydrv/Makefile.in, dlls/ttydrv/ttydrv.spec, dlls/ttydrv/ttydrv_main.c, dlls/user/.cvsignore, dlls/user/Makefile.in, dlls/user/user.spec, dlls/user/user32.spec, dlls/user/user_main.c, dlls/x11drv/.cvsignore, dlls/x11drv/Makefile.in, dlls/x11drv/x11drv.spec, dlls/x11drv/x11drv_main.c, if1632/.cvsignore, if1632/Makefile.in, if1632/gdi.spec, if1632/user.spec, Make.rules.in, configure:
2287         Created separate dlls for user,gdi,ttydrv,x11drv.
2288         Fixed Winelib argc handling (thanks to Eric Pouech).
2290 2000-03-18  Alexandre Julliard  <julliard@winehq.com>
2292         * graphics/psdrv/escape.c, include/dinput.h, include/keyboard.h, include/ttydrv.h, include/tweak.h, include/user.h, include/x11drv.h, loader/main.c, misc/tweak.c, ole/ole2nls.c, scheduler/synchro.c, windows/ttydrv/init.c, windows/ttydrv/keyboard.c, windows/ttydrv/main.c, windows/x11drv/init.c, windows/x11drv/main.c:
2293         Misc small cleanups.
2295         * windows/spy.c, windows/sysparams.c, graphics/x11drv/bitblt.c, loader/dos/dosvm.c, misc/Makefile.in, misc/main.c, misc/spy.c, objects/Makefile.in, objects/clipping.c, objects/cursoricon.c, objects/region.c, objects/text.c, windows/Makefile.in, windows/cursoricon.c, windows/message.c:
2296         Avoid calling the *Rect USER functions from inside GDI.
2297         Moved a few USER functions to a more appropriate location.
2299         * loader/main.c, misc/Makefile.in, misc/main.c, misc/options.c, misc/registry.c, misc/version.c, miscemu/main.c, windows/x11drv/main.c, windows/x11drv/monitor.c, dlls/ddraw/ddraw_main.c, documentation/wine.man.in, graphics/x11drv/bitblt.c, graphics/x11drv/palette.c, include/main.h, include/options.h, include/shell.h, wine.ini:
2300         Moved command-line option handling out of the X11 driver.
2301         Added support for "--" prefix on options.
2302         Replaced a few X11 command-line options by wine.conf parameters.
2304 2000-03-17  Alexandre Julliard  <julliard@winehq.com>
2306         * graphics/Makefile.in, 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, graphics/vga.c, relay32/Makefile.in, relay32/ddraw.spec, relay32/dinput.spec, windows/Makefile.in, windows/dinput.c, Make.rules.in, configure, configure.in, dlls/Makefile.in, dlls/ddraw/.cvsignore, dlls/ddraw/Makefile.in, dlls/ddraw/d3d_private.h, dlls/ddraw/d3dcommon.c, dlls/ddraw/d3ddevices.c, dlls/ddraw/d3dexecutebuffer.c, dlls/ddraw/d3dlight.c, dlls/ddraw/d3dmaterial.c, dlls/ddraw/d3dtexture.c, dlls/ddraw/d3dviewport.c, dlls/ddraw/ddraw.spec, dlls/ddraw/ddraw_main.c, dlls/ddraw/ddraw_private.h, dlls/dinput/.cvsignore, dlls/dinput/Makefile.in, dlls/dinput/dinput.spec, dlls/dinput/dinput_main.c:
2307         Made ddraw and dinput separate dlls.
2309         * server/process.c, server/process.h, server/ptrace.c, server/request.c, server/request.h, server/thread.c, server/thread.h, server/trace.c, include/server.h, include/thread.h, include/winbase.h, include/windef.h, loader/module.c, scheduler/client.c, scheduler/process.c, scheduler/sysdeps.c, scheduler/thread.c:
2310         Have threads and processes exit more cleanly whenever possible.
2312         * relay32/builtin32.c:
2313         Include space for resources in the module header instead of doing a
2314         separate allocation.
2316         * Make.rules.in, Makefile.in, dlls/Makefile.in, dlls/mpr/.cvsignore, dlls/mpr/Makefile.in, misc/network.c:
2317         Made MPR a separate dll.
2319         * dlls/ole32/stg_bigblockfile.c, dlls/ole32/storage32.h:
2320         Andrew Lewycky <andrewl@corel.com>
2321         Rewrite the BIGBLOCKFILE implementation for better performance.
2323         * tools/bug_report.pl: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2324         Further simplify the code and remove some redundant code.
2325         Make the user interface more consistent and appealing.
2327         * dlls/ole32/defaulthandler.c: Andrew Lewycky <andrewl@corel.com>
2328         Avoid a refcount leak in QueryInterface when delegating.
2329         And a couple of minor bugs.
2331 2000-03-15  Alexandre Julliard  <julliard@winehq.com>
2333         * debugger/info.c, debugger/memory.c, debugger/msc.c, debugger/source.c, debugger/stabs.c, debugger/stack.c, debugger/types.c, debugger/winedbg.c, debugger/break.c, debugger/db_disasm.c, debugger/dbg.y, debugger/dbgmain.c, debugger/debug.l, debugger/debugger.h, debugger/display.c, debugger/expr.c, debugger/hash.c:
2334         Eric Pouech <Eric.Pouech@wanadoo.fr>
2335         Introduced DBG_VALUE struct to manipulate debugger/debuggee address space.
2336         Added watch (hardware assisted debugging) and whatis (type of expr) commands.
2337         Fixed some issues in local vars handling (stabs parsing & registers optimization).
2339         * graphics/x11drv/graphics.c, graphics/x11drv/text.c:
2340         Karl Lessard <karll@corel.ca>
2341         Update DIB sections in text output and for graphics primitives.
2343         * windows/dce.c, windows/x11drv/event.c:
2344         Michael Abd-El-Malek (on behalf of Corel)
2345         When we were switching to another desktop, the popup windows lost
2346         their WS_VISIBLE flag.
2348         * server/context_i386.c:
2349         Avoid SIGSTOP/SIGCONT race when ptrace is disabled.
2350         Fixed context flags handling (thanks to Eric Pouech).
2352         * server/process.c, server/ptrace.c, server/thread.c, server/thread.h:
2353         Avoid SIGSTOP/SIGCONT race when ptrace is disabled.
2355         * server/debugger.c: Fixed bug in generate_startup_debug_events().
2357         * programs/Makefile.in, programs/winemine/.cvsignore, programs/winemine/Makefile.in, programs/winemine/README, programs/winemine/dialog.c, programs/winemine/dialog.h, programs/winemine/main.c, programs/winemine/main.h, programs/winemine/resource.h, programs/winemine/rsrc.rc, programs/winemine/winemine.spec, configure, configure.in:
2358         Joshua Thielen <fozey@netzero.com>
2359         Added winemine app.
2361         * tools/bug_report.pl: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2362         Improved the visual appearence of the user interface. Made the code
2363         somewhat simpler.
2365 2000-03-12  Alexandre Julliard  <julliard@winehq.com>
2367         * dlls/crtdll/crtdll_main.c, dlls/crtdll/crtdll.spec:
2368         Waldek Hebisch <hebisch@math.uni.wroc.pl>
2369         Implemented _read and _lseek.
2371         * dlls/winsock/socket.c: Rein Klazes <rklazes@casema.net>
2372         Correct conversion of level parameter if WINSOCK_setsockopt is called
2373         for option WS_SO_DONTLINGER.
2375         * objects/gdiobj.c: Rein Klazes <rklazes@casema.net>
2376         Correct rounding of the result in MulDiv16().
2378         * dlls/winaspi/aspi.c, dlls/winaspi/winescsi.h:
2379         Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2380         Fixed FreeBSD compilation.
2382         * dlls/dplayx/Makefile.in, dlls/dplayx/dplay.c, dlls/dplayx/dplobby.c, dlls/dplayx/name_server.c, dlls/dplayx/name_server.h, documentation/status/directplay:
2383         Peter Hunnisett <hunnise@nortelnetworks.com>
2384         - Make registry usage a little more correct and modern
2385         - Create home for all dplay name server functionality
2386         - Add the framework for EnumSessions
2387         - Documentation update
2389         * dlls/advapi32/security.c, dlls/avifil32/avifile.c, include/debugdefs.h:
2390         Dimitrie Paun <dimi@bigfoot.com>
2391         Cleaned up debug channels a bit.
2393         * graphics/ddraw.c: Marcus Meissner <Marcus.Meissner@caldera.de>
2394         Implemented stretched blts for depth 24 (unoptimized).
2396 2000-03-10  Alexandre Julliard  <julliard@winehq.com>
2398         * debugger/winedbg.c: Fixed OUTPUT_DEBUG_STRING pointer handling.
2400         * include/process.h, memory/virtual.c, scheduler/process.c:
2401         Removed PROCESS_IsCurrent().
2403         * include/server.h, scheduler/debugger.c, server/context_i386.c, server/debugger.c, server/file.c, server/main.c, server/object.h, server/process.c, server/request.c, server/request.h, server/thread.c, server/thread.h, server/trace.c, tools/make_requests, win32/except.c, dlls/ntdll/exception.c:
2404         Added specific routines for OUTPUT_DEBUG_STRING and EXCEPTION debug events.
2405         Generate a breakpoint event on process attach.
2406         Misc cleanups in request handling.
2408 2000-03-09  Alexandre Julliard  <julliard@winehq.com>
2410         * debugger/break.c, debugger/dbg.y, debugger/debug.l, debugger/debugger.h:
2411         Eric Pouech <Eric.Pouech@wanadoo.fr>
2412         Now relying on exception codes to know when debugger is entered for a
2413         single step trap.
2415         * debugger/winedbg.c, miscemu/main.c:
2416         Eric Pouech <Eric.Pouech@wanadoo.fr>
2417         Added proc to start debugging process from its command line (by launching it).
2419         * debugger/expr.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
2420         Cleanup.
2422         * graphics/psdrv/afm.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
2423         Add Black as a valid font weight.
2424         Cope with afm files that do not contain {Family|Full}Name entries.
2426         * dlls/winaspi/winaspi32.c: David Elliott <dfe@netnitco.net>
2427         - Got rid of PROFILE functions.
2428         - Use functionality of aspi.c.
2429         - Automagically read /proc/scsi/scsi (part of aspi.c which is already
2430           in tree).
2432         * graphics/x11drv/dib.c: Jim Aston <jima@corel.ca>
2433         Handle 24 bit DIBs <-> 24 bit deep/24 bits per pixel XImages.
2435         * programs/view/globals.h: Mike Castle <dalgoda@ix.netcom.net>
2436         Added resource.h include.
2438         * windows/rect.c: Marcus Meissner <marcus@jet.franken.de>
2439         IsRectEmpty also returns true for negative width/heights (verified
2440         against Windows), found by Brad Oliver <bradman@pobox.com>.
2442         * dlls/oleaut32/variant.c: Lawson Whitney <lawson_whitney@juno.com>
2443         Take type from referenced variant for VT_BYREF && VT_VARIANT.
2445         * relay32/builtin32.c, scheduler/client.c, scheduler/debugger.c, scheduler/process.c, server/debugger.c, server/object.h, server/process.c, server/process.h, server/ptrace.c, server/request.c, server/request.h, server/thread.c, server/trace.c, include/elfdll.h, include/module.h, include/pe_image.h, include/process.h, include/server.h, loader/elf.c, loader/elfdll.c, loader/module.c, loader/pe_image.c:
2446         Store the list of loaded dlls in the server, and generate debug events
2447         internally.
2449 2000-03-08  Alexandre Julliard  <julliard@winehq.com>
2451         * server/thread.c, server/trace.c, tools/make_requests, include/server.h, scheduler/client.c:
2452         Added server protocol version check.
2454         * include/aspi.h, include/winaspi.h, include/wnaspi32.h, msdos/Makefile.in, msdos/dosaspi.c, Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/winaspi/.cvsignore, dlls/winaspi/Makefile.in, dlls/winaspi/aspi.c, dlls/winaspi/winaspi16.c, dlls/winaspi/winaspi32.c, dlls/winaspi/winescsi.h, dlls/winaspi/wnaspi32.spec:
2455         David Elliott <dfe@netnitco.net>
2456         - Slightly reworked include files (less messy, more straightforward).
2457         - Moved DOS ASPI functionality to msdos/dosaspi.c.
2458         - Got rid using PROFILE to get SCSI info from wine.conf.
2459         - Read scsi info from /proc/scsi/scsi.
2460         - Added setting of a reasonable timeout when opening a SCSI device (5
2461           minutes, defined in winescsi.h).
2462         - ExecScsiCommand now ALWAYS posts, even on error (which is the correct
2463           behavior).
2465         * dlls/commdlg/cdlg_Sk.rc, dlls/commdlg/rsrc.rc, dlls/shell32/shell32_Sk.rc, dlls/shell32/shres.rc, documentation/wine.man.in, include/options.h, misc/main.c, resources/sysres_Sk.rc, resources/user32.rc:
2466         Simen Zamecnik <simen@nextra.sk>
2467         Added Slovak language support.
2469         * dlls/shell32/shell32_Ja.rc, dlls/shell32/shres.rc, include/options.h, misc/main.c, resources/.cvsignore, resources/sysres_Ja.rc, resources/user32.rc, dlls/commdlg/cdlg_Ja.rc, dlls/commdlg/rsrc.rc:
2470         Junichi Kuchinishi <jkuchi@mahoroba.ne.jp>
2471         Added some Japanese resources.
2473         * dlls/ole32/Makefile.in, dlls/ole32/clipboard.c, dlls/ole32/datacache.c, dlls/ole32/ole2impl.c, dlls/ole32/ole2stubs.c, dlls/ole32/olestd.h, dlls/ole32/storage32.c, include/ole2.h, include/winerror.h:
2474         Abey George <abey@macadamian.com>
2475         Implemented OLE clipboard functionality for Embed Source format.
2476         It helps you cut and paste data with Embed Source format between
2477         applications.  It also implements OleCreateFromData and
2478         OleQueryCreateFromData and fixes some bugs in datacache.c.
2480         * loader/module.c: Ulrich Czekalla <ulrichc@corel.ca>
2481         wm->modname might be invalid at the end of FreeLibrary.
2483         * loader/ne/module.c, misc/debugstr.c, misc/error.c, windows/defdlg.c, windows/defwnd.c, windows/dialog.c, windows/focus.c, windows/input.c, windows/user.c, windows/x11drv/event.c, windows/x11drv/keyboard.c, controls/edit.c, controls/menu.c, debugger/stack.c, dlls/comctl32/commctrl.c, dlls/winsock/async.c, dlls/winsock/socket.c, include/dce.h, include/menu.h, include/message.h, include/nonclient.h, include/queue.h, include/stackframe.h, include/struct32.h, include/thread.h, include/win.h, include/winbase.h, include/wine/winuser16.h, include/winpos.h, loader/module.c, controls/button.c:
2484         Patrik Stridvall <ps@leissner.se>
2485         Removed a lot of unnecessary includes and fixed the compile errors.
2487         * dlls/ole32/moniker.c, dlls/ole32/storage32.c, include/ole2.h, include/shell.h, memory/global.c, misc/registry.c, misc/wsprintf.c, server/registry.c, server/request.c:
2488         Patrik Stridvall <ps@leissner.se>
2489         Fixed some warnings.
2491         * dlls/oleaut32/variant.c: Lawson Whitney <lawson_whitney@juno.com>
2492         Corrected value for DAYS_IN_ONE_YEAR.
2494         * dlls/crtdll/crtdll_main.c:
2495         Alexandre Julliard <julliard@codeweavers.com> (for Corel)
2496         Cleaned up CRTDLL__unlink.
2498         * controls/static.c: Ulrich Czekalla <ulrichc@corel.ca>
2499         The static control only needs to invalidate its rect when we SetText.
2501         * include/winuser.h, misc/spy.c:
2502         Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
2503         Added a few messages for IME.
2505         * debugger/Makefile.in, debugger/break.c, debugger/db_disasm.c, debugger/dbg.y, debugger/debug.l, debugger/debugger.h, debugger/display.c, debugger/expr.c, debugger/hash.c, debugger/info.c, debugger/memory.c, debugger/registers.c, debugger/source.c, debugger/stabs.c, debugger/stack.c, debugger/types.c, debugger/winedbg.c, include/debugdefs.h, include/debugger.h, miscemu/main.c:
2506         Eric Pouech <Eric.Pouech@wanadoo.fr>
2507         No longer directly accessing debuggee memory.
2508         Execution context (mode, steps...) are now linked to a thread.
2509         Removed some X11 crst hacks.
2510         Rewrote info/walk commands.
2511         Removed direct debugger invocation code (and moved the rest to the new
2512         winedbg.c file).
2514         * scheduler/debugger.c, scheduler/process.c, server/process.c, server/trace.c, win32/except.c, win32/newfns.c, include/ntddk.h, include/server.h, include/winbase.h, loader/module.c, dlls/ntdll/exception.c:
2515         Removed PDB32_DEBUGGED flag and send all debug events unconditionally.
2516         Implemented IsDebuggerPresent().
2518         * server/debugger.c, server/object.h, server/process.c, server/process.h, server/thread.c, server/thread.h, server/trace.c, include/process.h, include/server.h, scheduler/client.c, scheduler/debugger.c, scheduler/process.c, scheduler/thread.c:
2519         Generate CREATE_PROCESS/THREAD debug events internally in the server.
2521 2000-03-07  Alexandre Julliard  <julliard@winehq.com>
2523         * scheduler/critsection.c, scheduler/thread.c, win32/Makefile.in, win32/thread.c, include/thread.h, include/winbase.h:
2524         Better implementation of inline functions SetLastError and
2525         GetCurrentThreadId.  Added asm inlines for Interlocked* functions.
2527         * dlls/ntdll/signal_i386.c, include/ntddk.h, dlls/ntdll/exception.c, dlls/ntdll/ntdll.spec:
2528         Added DbgBreakPoint. Fixed exception record contents on SIGTRAP.
2530         * loader/ne/module.c, loader/ne/segment.c:
2531         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
2532         Fixed second instance DGROUP loading.
2534         * include/winuser.h, misc/main.c:
2535         Huw D M Davies <h.davies1@physics.ox.ac.uk>
2536         Implement SPI_GETICONMETRICS.
2537         Change WARN -> FIXME for unimplemented SPI_s and set appropriate error.
2539         * memory/global.c: Marcus Meissner <marcus@jet.franken.de>
2540         Actual write the cached struct in GlobalMemoryStatus.
2542         * documentation/fonts, graphics/x11drv/xfont.c:
2543         Rein Klazes <rklazes@casema.net>
2544         Include in the AddFontResourceA/W fixme message a pointer to the fonts
2545         document. In this document tell the user how to find the needed tools.
2547         * dlls/winsock/socket.c: Rein Klazes <rklazes@casema.net>
2548         Add a message and fix error code if __ws_getservbyname() and
2549         __ws_getservbyport() cannot find the requested service.
2550         Fix WINSOCK_setsockopt() when called with optval pointing to 16 bit int.
2552         * dlls/winmm/mmio.c: Ulrich Czekalla <ulrichc@corel.ca>
2553         Check for existence if MMIO_EXIST is passed to MMIO_Open.
2555         * dlls/ole32/filemoniker.c: Jeff Tranter <jefft@corel.ca>
2556         The pathname was stored in a string of size 100, which was not always
2557         large enough. It should be set to MAX_PATH (255).
2559         * loader/task.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
2560         Several fixes to MakeProcInstance.
2562 2000-03-05  Alexandre Julliard  <julliard@winehq.com>
2564         * dlls/winmm/Makefile.in, dlls/winsock/Makefile.in, dlls/ole32/Makefile.in, dlls/oleaut32/Makefile.in, dlls/olecli/Makefile.in, dlls/olesvr/Makefile.in, dlls/rasapi32/Makefile.in, dlls/shell32/Makefile.in, dlls/version/Makefile.in, dlls/win32s/Makefile.in, dlls/Makefile.in, dlls/avifil32/Makefile.in, dlls/commdlg/Makefile.in, dlls/dplayx/Makefile.in, dlls/lzexpand/Makefile.in, dlls/msvideo/Makefile.in, dlls/Makedll.rules.in:
2565         Added support for creating extra symlinks for .so files that contain
2566         multiple dlls.
2568 2000-03-04  Alexandre Julliard  <julliard@winehq.com>
2570         * */Makefile.in, Make.rules.in, Makefile.in, configure, configure.in, dlls/.cvsignore, dlls/Makedll.rules.in:
2571         Moved dll-specific make rules to a separate Makedll.rules file.
2573         * misc/registry.c: Fixed error checking in registry saving.
2575         * dlls/winsock/socket.c: Ove Kaaven <ovek@arcticnet.no>
2576         WSACleanup should set last error to WSANOTINITIALISED if failing
2577         because Winsock was not initialized...
2579         * dlls/ole32/compobj.c, include/ole.h, include/wine/obj_base.h:
2580         Marcus Meissner <marcus@jet.franken.de>
2581         CoLoadLibrary gets UNICODE, not ASCII strings. (spotted by Lawson
2582         Whitney), removed the dllName component of the openDlls.  Added some
2583         debugstr_guid().
2585         * dlls/ntdll/nt.c: Dan Scott <dan.scott@home.com>
2586         Fixed typos in _alldiv() and _allmul().
2588         * configure.in, configure: Marcus Meissner <marcus@jet.franken.de>
2589         Added message for missing xpm devel libs for debian/corel.
2591         * dlls/ole32/ole2.c: Pierre Mageau <pierre@macadamian.com>
2592         OleRegGetUserType did query wrong registry key.
2594         * memory/global.c: Marcus Meissner <marcus@jet.franken.de>
2595         Some applications call GlobalMemoryStatus() very often. Cache the
2596         results of the call for 1 second (spotted by Corel).
2598         * windows/x11drv/event.c: Marcus Meissner <marcus@jet.franken.de>
2599         GetClipboardData16 might return an invalid global handle (spotted by
2600         Corel).
2602         * objects/enhmetafile.c: Lilia Roumiantseva
2603         cbCountSizeOfEnhMetafile callback function instead of increasing a
2604         contents of the pointer to the size increased the pointer itself.
2606         * documentation/psdriver: Huw D M Davies <h.davies1@physics.ox.ac.uk>
2607         Fix docs to reflect change to .winerc processing.
2609         * tools/wineinstall: Ove Kaaven <ovek@arcticnet.no>
2610         Fixed a couple of config.cache problems.
2612         * dlls/comctl32/trackbar.c: Vahid Pourlotfali
2613         Trackbar contol did not have proper position value in case of
2614         SB_THUMBTRACK notification message: it was always sending 0.
2616         Jim Aston <jima@corel.ca>
2617         Made the slider control a rect.  It had been trying to draw a notched
2618         slider, but the result didn't look right.
2620         * dlls/winsock/socket.c: Rein Klazes <rklazes@casema.net>
2621         Made WINSOCK_setsockopt handle option SO_DONTLINGER correctly.
2623         * objects/cursoricon.c: Serge Ivanov <sergei@corel.ca>
2624         CURSORICON_IconToCursor: inconsistent Lock/Unlock
2626         * files/profile.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
2627         PROFILE_GetString: only accept NULL for keyname to return the list of
2628         keys as Win95 does.
2630         * graphics/x11drv/dib.c: Joerg Mayer <jmayer@telesun2.telemation.de>
2631         Fix a sign bug where memcpy was called with negative length.
2633 2000-02-29  Alexandre Julliard  <julliard@winehq.com>
2635         * files/profile.c: Make profile key a global handle.
2637         * dlls/win32s/.cvsignore, dlls/win32s/Makefile.in, dlls/win32s/w32skernel.c, dlls/win32s/w32skrnl.c, Make.rules.in, dlls/Makefile.in:
2638         Renamed libwin32s to use the proper dll name (libw32skrnl).
2640         * windows/x11drv/keyboard.c, windows/x11drv/wnd.c, dlls/comctl32/monthcal.c, dlls/comctl32/toolbar.c, dlls/imm32/imm.c, dlls/msacm32/driver.c, dlls/msvideo/msvideo_main.c, dlls/shell32/iconcache.c, msdos/int21.c, windows/x11drv/clipboard.c:
2641         Niels Kristian Bech Jensen <nkbj@image.dk>
2642         Removed superfluous #include statements for header files included twice.
2644         * dlls/comctl32/updown.c: Serge Ivanov <sergei@corel.ca>
2645         Make updown control work. UpDown control always sends WM_*SCROLL
2646         message and uses SB_THUMBPOSITION code (not SB_LINE[UP|DOWN]).
2648         * dlls/comctl32/header.c: Pascal Lessard <pascal@macadamian.com>
2649         Implemented the behavior of sending WM_CONTEXTMENU when receiving a
2650         WM_RBUTTONUP.
2652         * dlls/ole32/storage32.c: Murali Pattathe
2654         This is the patch for the OleConvertOLESTREAMToIStorage wine API.
2655         This API calls another function called OLECONVERT_LoadOLE10 which
2656         basically read the OLE stream from the file through the callback
2657         function (this is passed by the application).
2659         The reading format was wrong. Still I am not very sure this is 100 %
2660         correct format. I did some reverse engineering and found the format. I
2661         have tried with different OLE object and its worked in paradox. I
2662         haven't tested with any other apps.
2664         * dlls/oleaut32/Makefile.in, dlls/oleaut32/oleaut32.spec, dlls/oleaut32/stubs.c, dlls/olepro32/olepro32.spec, dlls/olepro32/olepro32stubs.c:
2665         Patrik Stridvall <ps@leissner.se>
2666         Moved some stubs and added forwards in order to make both winapi_check
2667         and checklink happy.
2669         * tools/winapi_check/*:
2670         Patrik Stridvall <ps@leissner.se>
2671         Moved the rest of the API specification from the global file to the
2672         local files.
2674 2000-02-27  Alexandre Julliard  <julliard@winehq.com>
2676         * ANNOUNCE, ChangeLog, include/version.h: Release 20000227.
2678 ----------------------------------------------------------------
2679 2000-02-27  Alexandre Julliard  <julliard@winehq.com>
2681         * win32/init.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
2682         GetComputerNameA(): added parameter check like Win95 does.
2684         * tools/build.c: Patrik Stridvall <ps@leissner.se>
2685         - Fixed some Solaris specific assembler problems
2686         - Fixed some missing .type @function (helps debugging with dbx)
2687         - Fixed code needing __attribute__((constructor))__ for non-GCC ELF compilers
2688         - Fixed use of zero width arrays (ANSI C violation)
2689         - @GOTOFF on Solaris doesn't work - use @GOT and redirection instead
2691         * memory/selector.c, include/selectors.h:
2692         Patrik Stridvall <ps@leissner.se>
2693         Fixed some Solaris specific assembler problems.
2695         * dlls/ole32/ole32.spec, dlls/shell32/shlwapi.spec:
2696         Patrik Stridvall <ps@leissner.se>
2697         Fixed some issues found by winapi_check.
2699         * tools/winapi_check/win32/ntdll.api, tools/winapi_check/win32/ole32.api, tools/winapi_check/win32/oleaut32.api:
2700         Patrik Stridvall <ps@leissner.se>
2701         Updated winapi_check.
2703         * tools/genpatch: Steven Elliott <elliotsl@mindspring.com>
2704         Added utility that generates patches for submission to
2705         wine-patches@winehq.com.
2707         * dlls/oleaut32/Makefile.in, dlls/oleaut32/oleaut32.spec:
2708         oleaut32 should not import functions from olepro32.
2710         * dlls/comctl32/listview.c, include/listview.h:
2711         Pierre Mageau <pierre@macadamian.com>
2712         Don't display the context menu on a double click.
2714         Ulrich Czekalla <ulrichc@corel.ca>
2715         Set the font on the edit label control to that used by the listview
2716         control. It also uses text metrics to set a more reasonable initial
2717         edit control size.
2719         Pierre Mageau <pierre@macadamian.com>
2720         Handle M_SETREDRAW in ListView.
2721         Fix to EnsureVisible to handle small and large icon correctly.
2722         Add edit label functionnality to the listview and the file open dialog.
2724         Ulrich Czekalla <ulrichc@corel.ca>
2725         RelaseDC in CreateEditLabel.
2727         Pierre Mageau <pierre@macadamian.com>
2728         Add functionnality to create new folder in the open dialog.
2729         Add support for right click menu in common file dialog.
2730         LISTVIEW_EndEditlabel is now handling NONLPSTR_TEXTCALLBACK listview items.
2732         Serge Ivanov <sergei@corel.ca>
2733         LISTVIEW_GetColumnA fix (do not copy string, pass pointers).
2735         Luc Tourangeau <luc@macadamian.com>
2736         Preventing a divide by zero when handling LVW_ENSUREVISIBLE message.
2738         Don Kelly
2739         -Implemented the sorting on insert of items into a ListView control
2740          with either LVS_SORTASCENDING or LVS_SORTDESCENDING set.
2741         -(helping evil applications): sometimes not so well structured apps
2742          (PFPI90, in this case) will not fully initialize structs.  In the case
2743          of the LVM_GETITEM message the app may have only initialized the mask
2744          and iItem members of the struct.  Added processing of the LVIF_PARAM
2745          mask in the case that iSubItem was set but is invalid/uninitialized.
2747         Pierre Mageau <pierre@macadamian.com>
2748         Fix for handling correctly the cancelling mode of the Edit label.
2749         Fix width calculation of the edit label.
2751         Pascal Lessard <pascal@macadamian.com>
2752         Implemented the behavior of sending WM_CONTEXTMENU when receiving a
2753         WM_RBUTTONUP.
2755         Ulrich Czekalla <ulrichc@corel.ca>
2756         Fixed a painting problem with listview when the view changes and an
2757         edit label is active.
2759         Ulrich Czekalla <ulrichc@corel.ca>
2760         Fixed a notification problem with listview. On creation if the user
2761         specifies an item with focus and/or selection we should send the
2762         proper notification. Insert was preventing LISTVIEW_SetItem from
2763         seeing the changes and sending the notification.
2765         Make the draw item rectangle consistent with the selection
2766         rectangle. This allows us to click on the folders and icons in the
2767         file open dialog box and the item actually gets selected.
2769         * files/drive.c: Petr Tomasek <tomasek@etf.cuni.cz>
2770         - Write serial numbers to the device (FAT)
2771         - DRIVE_ReadSuperblock: better checking for the FAT fs.
2773         * files/dos_fs.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
2774         GetFullPathName fixes.
2776 2000-02-26  Alexandre Julliard  <julliard@winehq.com>
2778         * include/winbase.h, include/winnt.h, memory/string.c, dlls/ntdll/ntdll.spec, dlls/ntdll/rtl.c:
2779         Juergen Schmied <juergen.schmied@debitel.net>
2780         Fixed definition of the RtlMemory functions. Use macros internally and
2781         for Winelib, use real functions for exports from ntdll.
2783         * include/ole2.h: Juergen Schmied <juergen.schmied@debitel.net>
2784         Prototypes OleInitialize, OleUninitialize.
2786         * dlls/commdlg/filedlg95.c:
2787         Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
2788         ArrangeCtrlPositions: fix for user-defined template with no stc32.
2790         * controls/menu.c, include/menu.h, windows/message.c:
2791         Ulrich Czekalla <ulrichc@corel.com>
2792         Send WM_HELP message when F1 is pressed.
2794         * controls/listbox.c: Yuxi Zhang <yuxi@corel.ca>
2795         In the listbox, when the last item is selected and deleted, it still
2796         appeared in the window.
2798         Sheri Steeves <sheri@macadamian.com>
2799         In LISTBOX_UpdateScroll(), if the listbox did not have the WS_SCROLL
2800         style it would just return.  This left the horizontal scroll bar
2801         uninitialized and it was appearing at the bottom of the listbox when
2802         it did not have to.
2804         Serge Ivanov <sergei@corel.com>
2805         LISTBOX_SetColumnWidth adds extra 2 pixels to the passed column width
2806         (it says it is for column margins). Obviously it is wrong, because
2807         margins must be internal.
2809         * dlls/ole32/Makefile.in, dlls/ole32/errorinfo.c, dlls/oleaut32/Makefile.in, dlls/oleaut32/errorinfo.c:
2810         ErrorInfo functions need to be in ole32, not oleaut32.
2812         * dlls/crtdll/wcstring.c: More portable CRTDLL_iswctype.
2814         * 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:
2815         Juergen Schmied <juergen.schmied@debitel.net>
2816         Moved file functions to shlfileop.c
2817         New SHELL_DeleteDirectoryA
2818         Use shell notifications.
2819         Enabled file manipulation functions.
2821         * dlls/shell32/folders.c, dlls/shell32/iconcache.c:
2822         Juergen Schmied <juergen.schmied@debitel.net>
2823         Fix for OpenIcon.
2825         * dlls/shell32/shell32.spec, dlls/shell32/shellpath.c:
2826         Juergen Schmied <juergen.schmied@debitel.net>
2827         Stub PathIsDirectory.
2829         * dlls/shell32/shellord.c:
2830         Juergen Schmied <juergen.schmied@debitel.net>
2831         Fixes for ShellExecuteEx.
2833         * dlls/shell32/shell32_main.h, include/wine/undocshell.h, dlls/shell32/changenotify.c, dlls/shell32/shell32_main.c:
2834         Juergen Schmied <juergen.schmied@debitel.net>
2835         Basic implementation of shell notifications.
2837         * documentation/shell32: Juergen Schmied <juergen.schmied@debitel.net>
2838         Updated.
2840         * include/wine/obj_contextmenu.h, include/wine/obj_extracticon.h, include/wine/obj_shellfolder.h:
2841         Juergen Schmied <juergen.schmied@debitel.net>
2842         Added Winelib types.
2844         * dlls/shell32/shres.rc: Juergen Schmied <juergen.schmied@debitel.net>
2845         Added icon no 4 (open folder).
2847         * dlls/ole32/ole32.spec, dlls/oleaut32/Makefile.in, dlls/oleaut32/errorinfo.c, dlls/oleaut32/oleaut32.spec, include/oleauto.h:
2848         Patrik Stridvall <ps@leissner.se>
2849         Added stubs for {Create,Get,Set}ErrorInfo.
2851         * dlls/ole32/ole2stubs.c: Abey George <abey@macadamian.com>
2852         Return an error instead of a success code in OleCreate stub function.
2854         * dlls/comctl32/tab.c, include/tab.h: Don Kelly
2855         In Windows Property Sheet can have any mix of icon-less tabs and tabs
2856         with icons.  Adds a check to see if the icon we're adding is non-NULL
2857         (otherwise random junk from memory can be rendered) when the application
2858         has specified the PSP_USEICONID flag is set.  Changes to the Tab control
2859         to only render icons for tabs that have the TCIF_IMAGE flag set
2860         (previously, if the flag was set the entire image list of icons was
2861         rendered).
2863         Stephane Lussier <stephane@macadamian.com>
2864         Fixes for some tab control bugs
2866         Henning Hoffmann
2867         Fixed some width problem with OWNERDRAW tab.
2869         Luc Tourangeau <luc@macadamian.com>
2870         TCM_ADJUSTRECT is now returning consistant compare to Windows.
2872         Serge Ivanov <sergei@corel.ca>
2873         Fixed problem with tab selection. When you select tab it becames first
2874         visible tab. Now leftmost visible tab is calculated properly.
2875         - Added code for correct handling of updown control.
2876         - Forced recalculation of tabs' coordinates when:
2877         a) all items are deleted,
2878         b) window style is canged
2880         * include/commctrl.h: Ian Schmidt <ischmidt@cfl.rr.com>
2881         Added necessary defines and structures to compile WineLib apps using
2882         MFC 6.0 headers.
2883         Fixed typo in TCM_SETMINTABWIDTH constant.
2885         * controls/button.c: Bill Jin <billj@corel.ca>
2886         Bitmap buttons were not refreshed correctly.
2888         * dlls/comctl32/propsheet.c: Jim Aston <jima@corel.ca>
2889         This reverts Matts patch.  The messaging needs double checking.
2891         * 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:
2892         Improved the selector get/set functions.
2893         Support ANSI-compatible inline asm (with the help of Patrik Stridvall).
2895         * 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:
2896         Made winmm a separate shared library.
2898         * 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:
2899         Patrik Stridvall <ps@leissner.se>
2900         Fixed ANSI C violations.
2902         * server/context_i386.c: Patrik Stridvall <ps@leissner.se>
2903         Fixed Solaris specific compiler issue.
2905         * files/dos_fs.c, win32/init.c: Patrik Stridvall <ps@leissner.se>
2906         Fixed some debug message crashes.
2908         * include/dinput.h, windows/dinput.c:
2909         Lionel Ulmer <lionel.ulmer@free.fr>
2910         - implement EnumObjects and GetProperty for Mouse and Joystick drivers
2911         - implement SetDataFormat for the Mouse driver
2913         * 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:
2914         Eric Pouech <Eric.Pouech@wanadoo.fr>
2915         Moved hardware related handling to dlls/winmm/joystick driver.
2916         Got rid of joySendMessages() hack (now implementation with a timer).
2918 2000-02-25  Alexandre Julliard  <julliard@winehq.com>
2920         * misc/debugstr.c:
2921         Release unused space in debug strings to avoid too frequent
2922         wrap-arounds in the circular buffer.
2924         * dlls/oleaut32/Makefile.in: Added import of olepro32.
2926         * winedefault.reg: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
2927         Added OLE entries and comments.
2929         * ole/nls/jpn.nls: Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
2930         Japanese support implemented.
2932         * ole/ole2nls.c: Steven Elliott <elliotsl@mindspring.com>
2933         Stubbed out the implementation of LCMAP_SORTKEY in LCMapStringW() in
2934         order to allow Windows 9x Perl to start.
2936         * dlls/winspool/info.c: Ulrich Czekalla <ulrichc@corel.ca>
2937         This patch initializes the return buffer used in GetPrinterDriverA to
2938         zeros. This prevents buffer overruns caused by accessing garbage data.
2939         Some improvements to the NULL check patch.
2941         Gautam Jain
2942         EnumPrinters is not returning the number of printers found in case the
2943         parameter dwLevel is 1.
2945         * dlls/ntdll/reg.c: Dmitry Timoshkov <dmitry@sloboda.ru>
2946         Do not overwrite the valid ObjectAttributes->RootDirectory.
2947         Perform case insensitive comparison for the registry paths.
2949         * include/ntddk.h: Dmitry Timoshkov <dmitry@sloboda.ru>
2950         Added prototypes for registry functions.
2952         * include/winbase.h, include/winnls.h:
2953         Dmitry Timoshkov <dmitry@sloboda.ru>
2954         Move definition of CPINFO structure from winbase.h to winnls.h
2955         Add definition of CPINFOEX structure to winnls.h
2957         * include/crtdll.h: Dmitry Timoshkov <dmitry@sloboda.ru>
2958         Add prototype for CRTDLL_wcstol.
2960         * dlls/comctl32/toolbar.c: Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
2961         Fix for toolbar button size.
2963         * misc/lstr.c: Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
2964         Fixed CharNextA/CharNextExA for DBCS.
2966         * 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:
2967         James Abbatiello <abbeyj@WPI.EDU>
2968         Misc. fixes for compiler warnings.
2970         * dlls/ole32/stg_stream.c, dlls/ole32/storage32.c, dlls/ole32/storage32.h, include/ole2.h, include/wine/obj_base.h, include/winerror.h:
2971         Pierre Mageau <pierre@macadamian.com>
2972         Implementation of OleConvert routines.
2974         Thuy Nguyen <thuy@macadamian.com>
2975         Don't allow to resize stream open in read only mode
2976         Allow write access for stream/storage open with STGM_READWRITE.
2977         StgOpenStorage return values are now more detailed.
2978         Don't rely on STGM_CREATE flag in the Storage constructor.
2979         Preventing to write out of date property.
2981         Owen Wang <owenw@corel.ca>
2982         Allow both positive & negative 32-bit integers as with MFC assumption.
2983         This patch improves the 32bit limit on IStream::*_Seek operations.
2985         John Li <johnl@corel.ca>
2986         When WP opens a linked file, the malloc function in
2987         OLECONVERT_LoadOLE10(...) returns a NULL. This causes a later Wine
2988         crash. The actual problem is the function reading a large data length.
2990         * dlls/version/info.c: Patrik Stridvall <ps@leissner.se>
2991         Made some local functions static.
2993         * dlls/oleaut32/oleaut32.spec, server/context_i386.c:
2994         Patrik Stridvall <ps@leissner.se>
2995         Fixed some issues found by winapi_check.
2997         * tools/winapi_check/*:
2998         Patrik Stridvall <ps@leissner.se>
2999         Moved some of the API specification from the global file to the local
3000         files.
3002         * dlls/mouse/mouse_main.c, include/mouse.h, include/ttydrv.h, include/x11drv.h, windows/ttydrv/mouse.c, windows/x11drv/mouse.c:
3003         James Abbatiello <abbeyj@WPI.EDU>
3004         Better thread safety for WarpPointer hack.
3006         * dlls/advapi32/advapi32.spec, dlls/advapi32/security.c:
3007         Juergen Schmied <juergen.schmied@debitel.net>
3008         Added AddAccessAllowedAce.
3010         * include/commctrl.h: Juergen Schmied <juergen.schmied@debitel.net>
3011         Some more ListView_ macros, winelib fixes.
3013         * objects/cursoricon.c: Juergen Schmied <juergen.schmied@debitel.net>
3014         Fixed allocation of 16x16 icons.
3016         * dlls/commdlg/filedlg95.c:
3017         Juergen Schmied <juergen.schmied@debitel.net>
3018         For unicode: give the selected filename back.
3020         * tools/wineinstall: Ove Kaaven <ovek@arcticnet.no>
3021         Check for Xpm headers and add /usr/local/lib to /etc/ld.so.conf if
3022         necessary.
3024         * windows/painting.c: Serge Ivanov <sergei@corel.ca>
3025         We don't need to call LPtoDP in here as far as PatBlt does it internally.
3027         * dlls/comctl32/propsheet.c: Serge Ivanov <sergei@corel.ca>
3028         In Windows, if PropertySheet can't create some page it just skips it. This
3029         patch adds similar behaviour to Wine. It also adds some NULL checks.
3031         <yuxi@corel.com>
3032         Fix property sheet initialization bugs.
3034         Matthew Robertson
3035         The template was calling GetActiveIndex which was not being set in the
3036         propsheet code, and the call was moved before we call SetActive -
3037         because that's where we query for the Active Index.
3039         Noomen Hamza
3040         Resize property sheet to the largest dialog size.
3042         Don Kelly
3043         In the WM_INITDIALOG handler for the prop sheet, there is a call to
3044         PROPSHEET_IsTooSmall() which, if it returns TRUE, calls
3045         PROPSHEET_AdjustSize().  Contrary to its comment, .._AdjustSize() actually
3046         aligns the sizes of the "largest" prop. sheet dialog template and the tab
3047         control.  The IsTooSmall() call doesn't properly catch this mismatch.
3048         Modified the function to return TRUE if the sizes mismatch and renamed it to
3049         PROPSHEET_SizeMismatch() to reflect its proper use.
3051         * dlls/shell32/shlwapi.spec: Marcus Meissner <marcus@jet.franken.de>
3052         We define PathISURLA, so use it.
3054         * dlls/comctl32/imagelist.c: Serge Ivanov <sergei@corel.ca>
3055         In function IMAGELIST_InternalDrawMask we have to mask out overlay mask in
3056         fStyle. Otherwise comparison fStyle == ILD_NORMAL will not work, which leads
3057         to improper display of overlay images.
3059         * windows/win.c:
3060         Alexandre Julliard <julliard@codeweavers.com> (for Corel)
3061         ATOMs are considered unique, so we don't need to check class
3062         pointers in FindWindow.
3064         * objects/region.c: Serge Ivanov <sergei@corel.com>
3065         Not all region functions updated 'type' field to reflect current
3066         region state.
3068         * programs/cmdlgtst/cmdlgr.rc, programs/cmdlgtst/cmdlgtst.c:
3069         Eric Williams <ewill@ncal.verio.com>
3070         Minor fixups and tweaking, and a dummy hook.
3072         * dlls/commdlg/filedlg.c: Juergen Schmied <juergen.schmied@debitel.net>
3073         Fixed handling of filedlg flags.
3075 2000-02-20  Alexandre Julliard  <julliard@winehq.com>
3077         * scheduler/process.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3078         Added FIXME comment for entry point parameter.
3080         * dlls/ole32/moniker.c, dlls/ole32/ole32.spec:
3081         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3082         - stub for OLE32.MkParseDisplayName
3083         - spelling fixes
3085         * windows/dialog.c, windows/win.c:
3086         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3087         - fixed my slightly incorrect EndDialog patch
3088         - cleaned up win.c
3090         * windows/x11drv/wnd.c, dlls/comctl32/tab.c, windows/winproc.c:
3091         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3092         Spelling fixes.
3094         * dlls/dsound/dsound_main.c: Marcus Meissner <marcus@jet.franken.de>
3095         Made the buffer list in the directsound object thread-safe.
3097         * loader/module.c, loader/ne/module.c:
3098         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3099         It seems to be GetModuleFileName16 that checks exe version on whether
3100         to return long or short paths, not GetModuleFileNameA.
3102         * dlls/commdlg/filedlg.c: Gerard Patel <g.patel@wanadoo.fr>
3103         Avoid too much refreshing when changing the drive in the 16 bits file
3104         dialog.
3106         * files/dos_fs.c: Petr Tomasek <tomasek@etf.cuni.cz>
3107         GetLongPathName rewrite.
3109         * dlls/commdlg/cdlg_En.rc, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/filedlgbrowser.h, dlls/commdlg/filetitle.c:
3110         Corel merge:
3112         Pierre Mageau
3113         Don't update the combo box selection when closing the dialog only when
3114         clicking on OK button.  Adjust file dialog size when help button isn't
3115         present.
3117         Don Kelly.
3118         Fixes problems with open dialog box filters.
3120         Ulrich Czekalla
3121         Prevents the help button from displaying on OpenFile dialogs unless
3122         the proper flag is set in the OPENFILENAME struct.
3124         Yuxi Zhang
3125         Fixed memory leak.
3127         Jean-Claude Batista
3128         Add tooltips to the file Dialog toolbar.
3130         Sylvain Bouchard, Bill Jin
3131         Three new functions
3132         EnumSelectedPidls, GetNumSelected, FILEDLG95_OnOpenUsingView: corrections
3133         Instead of passing in a copy of ofn, passing in the pointer of ofn.
3135         David Golding
3136         A "!" was missing in a check against lpstrInitialDir.
3138         Rick Mutzke
3139         Fixed crash: if dialog has no filetypes appearing in the dropdown list.
3141         Matt Robertson, Ulrich Czekalla
3142         Fixed problems occurring with selection of files inside openfiledlg.
3144         * dlls/commdlg/filedlg.c: Juergen Schmied <juergen.schmied@debitel.net>
3145         - activated use of templates
3146         - moved the creating of new folders to the shellview
3148         * dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h:
3149         Juergen Schmied <juergen.schmied@debitel.net>
3150         Started with shell-clipboard handling (context menu cut&paste,
3151         drag&drop).
3153         * dlls/shell32/dataobject.c:
3154         Juergen Schmied <juergen.schmied@debitel.net>
3155         Removed ItemIDListList, reorganisation, more formats.
3157         * dlls/shell32/shlview.c: Juergen Schmied <juergen.schmied@debitel.net>
3158         - implemented rename, copy and delete file
3159         - "new file" is activating label edit for rename
3160         - implemented IShellView_SelectItem
3162         * dlls/shell32/shres.rc, dlls/shell32/shresdef.h, dlls/shell32/shv_bg_cmenu.c:
3163         Juergen Schmied <juergen.schmied@debitel.net>
3164         Better context menus.
3166         * 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:
3167         Juergen Schmied <juergen.schmied@debitel.net>
3168         - new files related to context menu and drag drop file operations
3169         - render functions for clipboardformats
3171         * dlls/shell32/shell.c, dlls/shell32/shellpath.c: Stephane Lussier
3172         Implemented PathIsURLA and modified ShellExecute16 to be able to load URL
3174         * dlls/shell32/shell32.spec, dlls/shell32/changenotify.c, dlls/shell32/shellord.c, include/shell.h, include/shellapi.h, include/shlobj.h:
3175         Juergen Schmied <juergen.schmied@debitel.net>
3176         Started implementation of shell notifications.
3178         * dlls/shell32/shlfileop.c:
3179         Juergen Schmied <juergen.schmied@debitel.net>
3180         New file (SHFileOperation).
3182         * dlls/shell32/classes.c: Juergen Schmied <juergen.schmied@debitel.net>
3183         Fixes.
3185         * dlls/shell32/shellfolder.h, dlls/shell32/shlfolder.c:
3186         Juergen Schmied <juergen.schmied@debitel.net>
3187         - new internal interface for item manipulation (cut/paste/new folder/delete/rename)
3188         - implemented IPersistFolder2 interface
3190         * dlls/shell32/pidl.c, dlls/shell32/pidl.h:
3191         Juergen Schmied <juergen.schmied@debitel.net>
3192         New aPidl handling functions.
3194         * misc/main.c: Avoid crash on usage message.
3196         * dlls/advapi32/registry.c: Avoid crash on NULL data pointer.
3198         * dlls/ntdll/ntdll.spec, dlls/ntdll/rtl.c:
3199         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3200         Added stub for RtlAssert().
3202         * windows/x11drv/keyboard.c:
3203         Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
3204         Added Japanese jp106 and pc98x1 keyboard layout.
3206         * dlls/winmm/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
3207         Got rid of PROFILE_ functions, now accessing Wine config options
3208         through the registry.
3210         * files/profile.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
3211         While creating the wine config key, make sure that only Wine's subkeys
3212         are volatile.
3214         * graphics/psdrv/driver.c: Marcus Meissner <marcus@jet.franken.de>
3215         Check for NULL ptr in PSDRV_GetDeviceCapabilities.
3217         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
3218         Added a bit magic to CONSOLE_get_input so we don't get single Escapes
3219         from function key escape sequences.
3221 2000-02-19  Alexandre Julliard  <julliard@winehq.com>
3223         * memory/atom.c: Bug fix for native USER.
3225         * loader/loadorder.c, wine.ini:
3226         Hard-coded DllPairs configuration; there is no need for the user to
3227         change it.
3229         * 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:
3230         Store config file contents in the registry so we only have to load it
3231         once per session.
3232         Replaced PROFILE_EnumerateWineIniSection by PROFILE_EnumWineIniString.
3233         Removed a few unnecessary/unused command-line options.
3235 2000-02-18  Alexandre Julliard  <julliard@winehq.com>
3237         * 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:
3238         Store the handle of the process exe file in the server.
3239         Removed PROCESS_Initial().
3241         * dlls/oleaut32/variant.c: Owen Wang <owenw@corel.com>
3242         Set the type of VarBstrFromDate to dwFlags, instead of lcid.
3244         Ulrich Czekalla  <ulrichc@corel.ca>
3245         Fixed the problem with the date being off by one.
3247         Petar Djukic
3248         VariantCopy was ignoring VT_DISPATCH,VT_UNKNOWN, and VT_VARIANT. Same
3249         with VariantClear.
3250         Coerce function doesn't implement coercion for VT_DISPATCH type.
3252         * if1632/gdi.spec, if1632/kernel.spec, if1632/user.spec:
3253         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3254         Added/corrected ordinals of kernel, gdi, user.
3256         * include/win.h, windows/win.c: Noomen Hamza <noomen@macadamian.com>
3257         Popup windows will be hidden when minimizing the main frame.
3259         * dlls/oleaut32/typelib.c, dlls/oleaut32/typelib.h:
3260         Alexandre Julliard <julliard@codeweavers.com> (for Corel)
3261         Changed the loading of typelib files to use a memory mapping instead
3262         of reading the file bit by bit.
3264         * files/drive.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3265         DRIVE_FindDriveRoot() always checked from drive A: to Z: for each
3266         path component even if a match already occurred.
3268         * dlls/oleaut32/ole2disp.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
3269         Fixed prototype for OleTranslateColor.
3271         * files/file.c: Matthew Cline <matt@nightrealms.com>
3272         Added WARN messages on open errors.
3274         * misc/wsprintf.c: Hidenori Takeshima <hidenori@a2.ctktv.ne.jp>
3275         The maximum size of the buffer is 1024 bytes in Win32.
3277 2000-02-16  Alexandre Julliard  <julliard@winehq.com>
3279         * 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:
3280         Moved SystemHeap allocations to the process heap.
3282         * windows/win.c: Gerard Patel <g.patel@wanadoo.fr>
3283         Do not use GlobalFindAtom with atom handles in CreateWindow* functions.
3285         * windows/defwnd.c: Ulrich Czekalla <ulrichc@corel.ca>
3286         Send WM_HELP message when F1 is pressed.
3288         * 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:
3289         Alastair McKinstry <Alastair.McKinstry@digital.com>
3290         Added support for the following celtic languages: Irish Gaelic, Scots
3291         Gaelic, Manx Gaelic, Breton, Welsh, Cornish.
3293 2000-02-14  Alexandre Julliard  <julliard@winehq.com>
3295         * dlls/ole32/clipboard.c, dlls/ole32/compobj.c, dlls/ole32/ole32.spec:
3296         Juergen Schmied <juergen.schmied@debitel.net>
3297         Added stub for CoResumeClassObjects.
3299         * windows/dinput.c: Lionel Ulmer <lionel.ulmer@free.fr>
3300         - added argument printing to stubs
3301         - replaced memcmp by IsEqualGUID
3302         - implemented GetCapabilities for Mouse and Keyboard
3304         * dlls/winsock/socket.c: Ove Kaaven <ovek@arcticnet.no>
3305         ioctlsocket() now returns success if the app sets nonblocking mode for
3306         WSAAsyncSelect()-ed sockets.
3308         * dlls/crtdll/wcstring.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
3309         Fixed FreeBSD compile.
3311         * dlls/winmm/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
3312         - fixed crash on mci channel tracing
3313         - fixed 16 to 32 bit translation for MCI_BREAK and MCI_SYSINFO messages
3315 2000-02-13  Alexandre Julliard  <julliard@winehq.com>
3317         * graphics/x11drv/bitblt.c: James Abbatiello <abbeyj@wpi.edu>
3318         Moved CLIPPING_UpdateGCClipping call outside of the X11 section.
3320         * include/winbase.h, scheduler/process.c, scheduler/thread.c, server/process.c, server/thread.c:
3321         Dave Pickles <davep@nugate.demon.co.uk>
3322         Added definition for STILL_ACTIVE.
3324         * server/request.c, configure, configure.in, include/config.h.in, scheduler/client.c:
3325         Juergen Lock <nox@jelal.kn-bremen.de>
3326         Added configure check for the unix domain sockaddr length.
3328         * misc/cdrom.c: Juergen Lock <nox@jelal.kn-bremen.de>
3329         Fixed CDROM_Audio_Seek for non-linux systems.
3331         * objects/gdiobj.c, include/gdi.h: Matthew Cline <matt@nightrealms.com>
3332         GetObjectA() now rejects GDI handles which are invalid.
3334         * misc/version.c: Juergen Lock <nox@jelal.kn-bremen.de>
3335         VERSION_GetSystemDLLVersion crashed when being called on a .so.
3337         * windows/defwnd.c: Martin Fuchs <martin-fuchs@gmx.net>
3338         Display the system popup menu when clicking with the right mouse
3339         button in the window caption.
3341         * dlls/ole32/clipboard.c: Removed check for class existence.
3343         * 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:
3344         Alexandre Julliard <julliard@codeweavers.com>
3345         Removed superfluous GlobalFindAtom calls.
3347         * misc/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
3348         Reading of ri blocks.
3349         Better error handling.
3351         * windows/mdi.c: Matthew Cline <matt@nightrealms.com>
3352         Check that ci->hWindowMenu is not zero before using it.
3354         * dlls/crtdll/crtdll.spec, dlls/crtdll/wcstring.c, dlls/ntdll/ntdll.spec:
3355         David Howells <David.Howells@nexor.co.uk>
3356         Implemented isw*() wctype.h functions.
3358         * miscemu/main.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3359         Better error messages.
3361         * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
3362         Fixed off-by-one error.
3364         * 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:
3365         Moved global atoms to the server (based on the work of Sergei
3366         Turchanov <turchanov@otvprim.ru>).
3368 2000-02-12  Alexandre Julliard  <julliard@winehq.com>
3370         * include/wingdi.h: Matthew Cline <matt@nightrealms.com>
3371         Added a PTEXTMETRIC[A|W] definition.
3373         * include/windef.h: Matthew Cline <matt@nightrealms.com>
3374         Added typedefs for PSHORT and PUSHORT.
3376         * windows/dialog.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3377         Protect EndDialog() from invalid window handles.
3379         * graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c:
3380         Lionel Ulmer <lionel.ulmer@free.fr>
3381         Replaced fprintfs by proper debug macros and fixed some compilation warnings.
3383 2000-02-10  Alexandre Julliard  <julliard@winehq.com>
3385         * include/ddraw.h: Ian Schmidt <ischmidt@cfl.rr.com>
3386         Added GUIDs, defines, and structures for DirectX7.
3388         * dlls/winmm/winmm_Ru.rc, dlls/winmm/winmm_res.rc:
3389         Oleg Korda <oleg@isp.nsc.ru>
3390         Added Russian translation.
3392         * windows/class.c: Phillip Ezolt <ezolt@perf.zko.dec.com>
3393         Added missing goto in switch statement.
3395         * misc/main.c: Marcus Meissner <marcus@jet.franken.de>
3396         Initialize the NONCLIENTMETRICS with 0 (helps moorhuhn.exe).
3398         * 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:
3399         Optimized debugging API to reduce code size.
3401         * 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:
3402         Removed extra includes from ole.h and wingdi.h.
3404         * */*:
3405         Jeremy White <jwhite@codeweavers.com>
3406         Removed #include of wingdi.h and windef.h from winuser.h (and resolved
3407         the resulting compilation failures).
3409 2000-02-07  Alexandre Julliard  <julliard@winehq.com>
3411         * dlls/ole32/compobj.c: Owen Wang <owenw@corel.ca>
3412         Make CLSIDFromString return a CLSID of zeros instead of crashing when
3413         passed a null pointer.
3415         * dlls/winmm/joystick.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
3416         Fixed unconditional use of JOYDEV.
3418         * include/commdlg.h, include/windowsx.h, include/wingdi.h, include/winuser.h:
3419         Michael Cardenas <michael_cardenas@deneba.com>
3420         Added a bunch of macros needed for compiling Winelib apps.
3422         * include/commctrl.h: Juergen Schmied <juergen.schmied@debitel.net>
3423         Added ListView_EditLabel macros.
3425         * dlls/commdlg/cdlg32.c: Juergen Schmied <juergen.schmied@debitel.net>
3426         Changed import to ordinal.
3428         * include/wine/obj_shellfolder.h:
3429         Juergen Schmied <juergen.schmied@debitel.net>
3430         Added IPersistFolder2 interface.
3432         * 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:
3433         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3434         - implemented serial numbers for audio CDs and data CDs
3435         - big clean up of misc/cdrom.c and dlls/winmm/mcicda/mcicda.c function
3436           naming and such
3437         - split debug channel cdaudio into cdrom and mcicda
3438         - fixed some typos
3440         * dlls/oleaut32/olefont.c, include/olectl.h:
3441         Sean Langley <seanl@corel.ca>
3442         Made OleCreateFontIndirect have the same signature (exactly) as the
3443         header file. Added olepro32 dll stubs.
3445         * 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:
3446         Sean Langley <seanl@corel.ca>
3447         OLEPRO32 stubs.
3449         * windows/clipboard.c: Juergen Schmied <juergen.schmied@debitel.net>
3450         Added CF_HDROP.
3452         * dlls/winmm/joystick.c: Wolfgang Schwotzer <woschwot@gmx.net>
3453         Extended the winmm joystick API calls to support the new Linux
3454         joystick driver.
3456         * server/context_i386.c: Juergen Lock <nox@jelal.kn-bremen.de>
3457         Added context functions for FreeBSD.
3459         * dlls/shell32/systray.c: Sheri Steeves <sheri@macadamian.com>
3460         Fix for the system tray, Icon and popup menu's now work.
3462         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
3463         Use window properties instead of window long, also use them to
3464         determine if we really own a window and can destroy it.
3465         The pixelformat for 256 colors has PALETTE|RGB flags (Tomb Raider 2)
3466         Set paintable flag for application passed cooperative/drawing window.
3467         GetDisplayMode: We might have and do support 2 backbuffers.
3469         * dlls/ole32/moniker.c: Noomen Hamza <noomen@macadamian.com>
3470         Running object table are not using 0 as a valid index anymore.
3472         * controls/static.c: Luc Tourangeau <luc@macadamian.com>
3473         Implementation of Static OwnerDraw.
3475         * dlls/comctl32/imagelist.c: Marcus Meissner <marcus@jet.franken.de>
3476         Height calculation was 1 off in ImageList_Read.
3478 2000-02-03  Alexandre Julliard  <julliard@winehq.com>
3480         * 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:
3481         Removed resource.h.
3483         * 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:
3484         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3485         Added .spec files for all libtest/ and programs/ WineLib apps.
3486         Updated all Makefiles to use .spec files and new resource handling.
3488         * 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:
3489         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3490         Added .spec keyword 'mode' to allow creating built-in EXE modules.
3491         Use built-in EXE modules for WineLib apps (instead of ELF modules).
3492         Removed dummy ELF module creation.
3493         Removed LIBRES handling.
3495         * programs/notepad/main.c:
3496         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3497         Fixed memory overwrite bug.
3499         * include/windef.h, include/wine/windef16.h:
3500         Jeremy White <jwhite@codeweavers.com>
3501         Moved definitions such as BOOL16 and INT16 from windef.h into
3502         wine/windef16.h.
3504         * ole/ole2nls.c: Julio César Gázquez <jgazquez@dld.net>
3505         GetNumberFormatA implementation added.
3507         * win32/console.c: Marcus Meissner <Marcus.Meissner@caldera.de>
3508         Save and restore cursor in WriteConsoleOutputA.
3510         * include/datetime.h, include/monthcal.h, dlls/comctl32/datetime.c, dlls/comctl32/monthcal.c:
3511         Alex Priem <alexp@sci.kun.nl>
3512         - Implementation of WM_SETFORMAT
3513         - Reworked drawing/selection
3514         - Implementation of WM_KEYDOWN
3516         * include/miscemu.h, msdos/int09.c, msdos/int16.c:
3517         Ove Kaaven <ovek@arcticnet.no>
3518         Added INT_Int16ReadChar and made int09 handle special keys.
3520         * graphics/vga.c, include/vga.h: Ove Kaaven <ovek@arcticnet.no>
3521         Added alphanumeric mode to the VGA emulation.
3522         Use service thread for the periodic refresh.
3524         * loader/dos/module.c: Ove Kaaven <ovek@arcticnet.no>
3525         Cleanup VGA refresh when terminating.
3527         * win32/console.c: Ove Kaaven <ovek@arcticnet.no>
3528         Handle backspace correctly.
3530 2000-01-31  Alexandre Julliard  <julliard@winehq.com>
3532         * configure, Make.rules.in, */Makefile.in:
3533         Build most dlls as separate shared libraries.
3535 2000-01-30  Alexandre Julliard  <julliard@winehq.com>
3537         * configure.in, include/config.h.in, server/context_i386.c, configure:
3538         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3539         Added configure check for sys/reg.h.
3541         * dlls/comctl32/imagelist.c, include/imagelist.h:
3542         Marcus Meissner <marcus@jet.franken.de>
3543         Overlay indices are signed shorts (-1 means no overlay)
3544         (ImageList_SetOverlayIndex) should accept -1 as overlayindex.
3545         (ImageList_Read) We can read a NxM bitmap from the stream and have
3546         to convert it into a 1x(M*N) bitmap, set cCurImage,cMaxImage. Added
3547         documentation.
3548         (others) removed some potential operator precendence problems.
3550         * objects/dc.c: Marcus Meissner <marcus@jet.franken.de>
3551         GetDeviceCaps: spot yet unsupported accesses to the DeviceCaps struct.
3553         * 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:
3554         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3555         Moved debugger to libwine to make it available to WineLib apps.
3556         Try to invoke external debugger if internal debugger crashes.
3557         Try to handle early invocation of debugger more gracefully.
3559         * include/main.h, include/process.h, include/task.h, loader/main.c, scheduler/process.c, scheduler/thread.c:
3560         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3561         Mark initial process as 32-bit for WineLib apps.
3562         Use teb->tibflags instead of teb->flags (for Win95 USER32 compatibility).
3563         Removed unused thread event.
3565         * files/profile.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3566         - Windows skips the '\t' and ' ' at the beginning and end of section
3567           key names of .INI files.
3568         - Fixed Get/WritePrivateProfileStructA():
3569           - (re-)translate the binary data into ASCII hex chars
3570           - add checksum / checking of it
3572 ----------------------------------------------------------------
3573 2000-01-30  Alexandre Julliard  <julliard@winehq.com>
3575         * configure.in, include/config.h.in, server/context_i386.c, configure:
3576         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3577         Added configure check for sys/reg.h.
3579         * dlls/comctl32/imagelist.c, include/imagelist.h:
3580         Marcus Meissner <marcus@jet.franken.de>
3581         Overlay indices are signed shorts (-1 means no overlay)
3582         (ImageList_SetOverlayIndex) should accept -1 as overlayindex.
3583         (ImageList_Read) We can read a NxM bitmap from the stream and have
3584         to convert it into a 1x(M*N) bitmap, set cCurImage,cMaxImage. Added
3585         documentation.
3586         (others) removed some potential operator precendence problems.
3588         * objects/dc.c: Marcus Meissner <marcus@jet.franken.de>
3589         GetDeviceCaps: spot yet unsupported accesses to the DeviceCaps struct.
3591         * 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:
3592         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3593         Moved debugger to libwine to make it available to WineLib apps.
3594         Try to invoke external debugger if internal debugger crashes.
3595         Try to handle early invocation of debugger more gracefully.
3597         * include/main.h, include/process.h, include/task.h, loader/main.c, scheduler/process.c, scheduler/thread.c:
3598         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3599         Mark initial process as 32-bit for WineLib apps.
3600         Use teb->tibflags instead of teb->flags (for Win95 USER32 compatibility).
3601         Removed unused thread event.
3603         * files/profile.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3604         - Windows skips the '\t' and ' ' at the beginning and end of section
3605           key names of .INI files.
3606         - Fixed Get/WritePrivateProfileStructA():
3607           - (re-)translate the binary data into ASCII hex chars
3608           - add checksum / checking of it
3610         * files/directory.c, misc/registry.c, documentation/wine.conf.man.in, wine.ini:
3611         Juergen Schmied <juergen.schmied@debitel.net>
3612         - fixes, loading of settings per user
3613         - autodetecting of windows registry version
3615         * 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:
3616         Francois Gouget <fgouget@psn.net>
3617         The COM virtual tables must use the
3618         'ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE' macro to provide padding in C++.
3620         * msdos/int09.c: Ove Kaaven <ovek@arcticnet.no>
3621         Made int9 handler add keystroke to BIOS keyboard buffer.
3623         * loader/dos/dosmod.c, loader/dos/dosmod.h:
3624         Ove Kaaven <ovek@arcticnet.no>
3625         dosmod protocol revision 3, featuring MPROTECT and ENTERIDLE.
3627         * include/wincon.h: Ove Kaaven <ovek@arcticnet.no>
3628         Added a couple of prototypes.
3630         * winedefault.reg: Dmitry Timoshkov <dmitry@sloboda.ru>
3631         Add information about code pages to default registry.
3633         * configure.in, Make.rules.in, configure:
3634         Patrik Stridvall <ps@leissner.se>
3635         - Unixware (Solaris) linker typo fixed
3636         - Solaris (and possibly Unixware) specific linker support for the
3637           GNU:ism --[no-]whole-archive
3638         - Solaris make specific makefile fix
3640         * server/context_i386.c: Patrik Stridvall <ps@leissner.se>
3641         Solaris support for {set,get}_thread_context added.
3643 2000-01-29  Alexandre Julliard  <julliard@winehq.com>
3645         * server/context_i386.c:
3646         Added our own user_regs_struct definition for better compatibility.
3648         * controls/button.c, windows/dialog.c:
3649         Dmitry Timoshkov <dmitry@sloboda.ru>
3650         Correct the behaviour of the accelerator keys in dialogs according to
3651         the Windows' one.
3653         * 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:
3654         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3655         Link only a single .rc file with application.
3657         * 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:
3658         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3659         - add some documentation items
3660         - fix some spelling
3661         - fix some warnings
3663         * 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:
3664         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3665         - support for reading labels and serial nums from device
3666         - "reasonable" misc/cdrom.c device handling
3667         - much improved audio CD support
3668         - serial number overwrite bug fix
3669         - spelling fixes
3671         * Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/setupx/.cvsignore, dlls/setupx/Makefile.in, dlls/setupx/setupx.spec, dlls/setupx/setupx_main.c:
3672         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3673         Added SETUPX dll.
3675         * dlls/ole32/ole2.spec, server/process.c:
3676         Patrik Stridvall <ps@leissner.se>
3677         Fixed minor issues found by winapi_check.
3679         * tools/winapi_check/*:
3680         Patrik Stridvall <ps@leissner.se>
3681         - Minor fixes.
3682         - Moved some of the API specifications from the global file to the
3683           local files.
3685         * include/imagelist.h, dlls/comctl32/imagelist.c:
3686         Marcus Meissner <marcus@jet.franken.de>
3687         Implemented ImageList_Read (not 100% correct in regarding to setting
3688         the bitmap).
3689         Filled out unknown members of ILHEAD.
3690         Started reordering IMAGELIST to make it Windows binary compatible.
3692         * dlls/shell32/iconcache.c: Marcus Meissner <marcus@jet.franken.de>
3693         nIconIndex == -1 should return nr of available icons, not 0.
3695         * Makefile.in: Fixed building of dosmod and wineclipsrv.
3697         * misc/debugstr.c:
3698         Bug fix: added temp structure to cope with debug traces during thread
3699         startup.
3701         * 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:
3702         Removed debugstr.h.
3704         * misc/debugstr.c, scheduler/thread.c, if1632/relay.c, include/debugtools.h, include/thread.h:
3705         Use a per-thread buffer and write(2) for debug traces.
3706         Removed debug_dumpstr.
3708 2000-01-27  Alexandre Julliard  <julliard@winehq.com>
3710         * dlls/ntdll/rtlstr.c: Juergen Schmied <juergen.schmied@debitel.net>
3711         Small fix.
3713         * server/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
3714         Get HCU name from unix user name.
3716         * 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:
3717         Implemented GetThreadSelectorEntry through the server.
3719 2000-01-26  Alexandre Julliard  <julliard@winehq.com>
3721         * dlls/winmm/lolvldrv.c:
3722         Dynamically load version.dll in MMDRV_GetDescription32.
3724         * dlls/ole32/ole2.c:
3725         Use a linked list instead of a DPA for the hook list.
3727         * windows/x11drv/clipboard.c:
3728         Use a linked list instead of a DPA to manage pixmaps.
3730         * dlls/ole32/storage32.c, dlls/ole32/storage32.h, dlls/ole32/stg_stream.c:
3731         Gerard Patel <g.patel@wanadoo.fr>
3732         Returns an error if trying to write to a stream opened for read.
3734         * files/directory.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
3735         Add a newbie warning for slashes in the search Path= of wine.conf.
3737         * graphics/ddraw.c: Ove Kaaven <ovek@arcticnet.no>
3738         Wait for ShmCompletion during Flip.
3740         * configure.in, libtest/Makefile.in, Make.rules.in, Makefile.in, configure:
3741         Made --enable-dll the default.
3742         Use $(MAKE) instead of $(SUBMAKE) for recursive makes.
3743         Cleaned up install targets in main Makefile.
3745         * dlls/ntdll/sync.c: Don't crash when ObjectAttributes is NULL.
3747 2000-01-25  Alexandre Julliard  <julliard@winehq.com>
3749         * 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:
3750         Use argv[0] to locate the server executable.
3752         * memory/heap.c, include/heap.h, include/process.h, include/winnt.h, memory/environ.c, memory/global.c:
3753         Alexandre Julliard <julliard@codeweavers.com>
3754         Share the system heap between different address spaces. Made process
3755         heap per-address space instead of per-process.
3757         * 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:
3758         Alexandre Julliard <julliard@codeweavers.com>
3759         Made the server listen for new clients on a Unix socket in
3760         $HOME/.wine. Newly started wine processes now attach to an existing
3761         server if one is running.
3763         * files/profile.c, include/options.h:
3764         Added PROFILE_GetConfigDir function.
3766 2000-01-24  Alexandre Julliard  <julliard@winehq.com>
3768         * dlls/advapi32/registry.c, dlls/ntdll/reg.c, dlls/ntdll/sync.c, dlls/winsock/socket.c, include/server.h, scheduler/client.c, server/*.c:
3769         Changed the server to return STATUS_* error codes.
3771         * dlls/ntdll/Makefile.in, dlls/ntdll/error.c, dlls/ntdll/rtl.c:
3772         Built a complete translation table for RtlNtStatusToDosError.
3774         * include/winerror.h, include/winnt.h: Added some error codes.
3776         * windows/nonclient.c:
3777         Use GetProcAddress instead of calling ShellAboutA directly.
3779 2000-01-23  Alexandre Julliard  <julliard@winehq.com>
3781         * Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/version/Makefile.in, dlls/version/ver.spec, dlls/version/ver16.c:
3782         Merged dlls/ver into dlls/version.
3784         * 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:
3785         Juergen Schmied <juergen.schmied@debitel.net>
3786         - implementation of RtlReg* (read access), RtlEvent*, RtlSemaphore*,
3787           NtAllocateLocallyUniqueId
3788         - implementation or stubs for NtAccessCheck, NtSetSecurityObject,
3789           RtlClearBits, RtlEqualPrefixSid, RtlFindClearBits,
3790           RtlFormatCurrentUserKeyPath, RtlGetControlSecurityDescriptor,
3791           RtlIdentifierAuthoritySid, RtlImpersonateSelf, RtlInitializeBitMap,
3792           RtlInitializeGenericTable, RtlMakeSelfRelativeSD,
3793           RtlPrefixUnicodeString, RtlSetBits, RtlUnicodeToMultiByteN,
3794           RtlUpcaseUnicodeStringToOemString, RtlUpcaseUnicodeToOemN,
3795           RtlValidSid, RtlxUnicodeStringToOemSize
3796         - corrected most RtlString* functions, added documentation
3797         - more fixes and partial implementations
3799         * misc/main.c, windows/x11drv/event.c, windows/x11drv/main.c, graphics/ddraw.c, include/options.h:
3800         Ove Kaaven <ovek@arcticnet.no>
3801         Added -dxgrab command line option, which confines cursor motion to the
3802         DirectX primary surface.
3804         * dlls/commdlg/filedlg95.c: Marcus Meissner <marcus@jet.franken.de>
3805         Replaced some weird C constructs (char[]="" ) with more compatible ones.
3806         Added another NULL ptr check in _OnOpen.
3808         * 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:
3809         Moved winsock implementation to dlls/winsock.
3811         * dlls/*/.cvsignore:
3812         Marcus Meissner <marcus@jet.franken.de>
3813         Added *.spec.c, *.spec.glue.s, *.glue.c to .cvsignore that need them.
3815         * graphics/x11drv/dib.c: Marcus Meissner <marcus@jet.franken.de>
3816         Corrected arguments to VirtualFree().
3818         * dlls/shell32/pidl.c, dlls/shell32/shlfolder.c, include/wine/winestring.h, memory/string.c:
3819         Dmitry Timoshkov <dmitry@sloboda.ru>
3820         Replaced LocalToWideChar() by lstrcpynAtoW(), WideCharToLocal() by
3821         lstrcpynWtoA().
3823         * windows/winproc.c: Gerard Patel <g.patel@wanadoo.fr>
3824         Map WM_MENUSELECT 32->16 bits for closing menu.
3826         * windows/mdi.c: Gerard Patel <g.patel@wanadoo.fr>
3827         Fix parameters for MDI_RestoreFrameMenu in WM_DESTROY msg.
3829         * dlls/oleaut32/oleaut.c: Marcus Meissner <marcus@jet.franken.de>
3830         Implemented (Register|Get|Revoke)ActiveObject from the docs.
3832         * graphics/ddraw.c, include/x11drv.h, windows/x11drv/event.c:
3833         Ove Kaaven <ovek@arcticnet.no>
3834         Supercharged XShm implementation for DirectDraw.
3836         * debugger/msc.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3837         Bugfix: missing NULL pointer checks.
3839         * loader/pe_image.c:
3840         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
3841         Check for MZ header before trying to decipher the PE header.
3843         * relay32/kernel32.spec:
3844         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
3845         Export GetLongPathName[A|W].
3847         * memory/global.c, memory/heap.c:
3848         Guy Albertelli <galberte@neo.lrun.com>
3849         Fix problems with GlobalHandle and GlobalFree so results match Win98.
3850         Restructure HEAP_ValidateInUseArena, HeapValidate, and add
3851         HEAP_IsRealArena to eliminate *bogus* error messages.
3853         * windows/message.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
3854         Actually print return value of message.
3856         * objects/dib.c: Marcus Meissner <marcus@jet.franken.de>
3857         Corrected arguments in DIB_DeleteDIBSection.
3859         * files/file.c: Marcus Meissner <marcus@jet.franken.de>
3860         Handle \\.\<dosdevice> like <dosdevice> in CreateFile. Tested with
3861         help of James Feeney <james@nurealm.net>.
3863 2000-01-20  Alexandre Julliard  <julliard@winehq.com>
3865         * 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:
3866         Alexandre Julliard <julliard@codeweavers.com>
3867         Added Get/SetThreadContext support through the server.
3869 2000-01-18  Alexandre Julliard  <julliard@winehq.com>
3871         * 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:
3872         Added debugstr_guid function and used it to replace
3873         WINE_StringFromCLSID in all debugging messages.
3875         * dlls/winmm/wineoss/audio.c:
3876         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
3877         Always initialize lpWaveHdr->lpNext to NULL.
3878         Don't fail on strange fragment sizes.
3880 2000-01-17  Alexandre Julliard  <julliard@winehq.com>
3882         * include/winnls.h: Dmitry Timoshkov <dmitry@sloboda.ru>
3883         Add some defines needed for Unicode to Ascii conversions.
3885         * misc/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
3886         Better error handling, less keys held open.
3888         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
3889         EnumDisplayModes must pass lPitch.
3891         * controls/menu.c: Gerard Patel <g.patel@wanadoo.fr>
3892         Validate the menu handles.
3894         * dlls/win87em/emulate.c: Gerard Patel <g.patel@wanadoo.fr>
3895         Rounds to the lowest integer, not the nearest.
3897         * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3898         Fixed race between Win16 parent and child for first rescheduling
3899         of child process. This fixes WinExec returning too early.
3901 2000-01-16  Alexandre Julliard  <julliard@winehq.com>
3903         * configure, configure.in: Eric Pouech <Eric.Pouech@wanadoo.fr>
3904         Use --whole-archive to force linking all of libwine.a. into wine.
3906         * if1632/builtin.c, include/builtin16.h, include/builtin32.h, relay32/builtin32.c, tools/build.c:
3907         Added automatic registration of built-in DLLs.
3909 2000-01-15  Alexandre Julliard  <julliard@winehq.com>
3911         * configure.in, configure: Aaron Hope <edh@mail.brioforge.com>
3912         Fixed IPX detection.
3914         * misc/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
3915         New implementation of the win95 registry loader.
3917         * dlls/advapi32/registry.c:
3918         Juergen Schmied <juergen.schmied@debitel.net>
3919         If there is enough space in the buffer and the type is REG_SZ and the
3920         string is not 0-terminated RegQueryValue and RegEnumValue are appending a 0.
3922         * debugger/hash.c: Gerard Patel <g.patel@wanadoo.fr>
3923         Display the external modules after the internal modules in crash report.
3925         * files/drive.c: Ove Kaaven <ovek@arcticnet.no>
3926         Made SetVolumeLabel report failure on CD-ROM drives.
3928         * documentation/status/directplay:
3929         Peter Hunnisett <hunnise@nortelnetworks.com>
3930         Updated documentation.
3932         * dlls/winmm/lolvldrv.c, dlls/winmm/mci.c, include/driver.h, windows/driver.c:
3933         Eric Pouech <Eric.Pouech@wanadoo.fr>
3934         Replaced Wine specific DRIVER_GetType by a correct implementation of
3935         GetDriverFlag.
3937         * configure, configure.in, include/wine_gl.h:
3938         Lionel Ulmer <lionel.ulmer@free.fr>
3939         - (ugly) fix for the 'Xmd.h' problem
3940         - fix the detection of DGA 2 in configure script
3942         * include/thread.h, scheduler/thread.c:
3943         Juergen Schmied <juergen.schmied@debitel.net>
3944         - added NT fields to TEB
3945         - moved tls-fields and some wine specific fields to a higher offset
3946         - added some documentation
3947         - initialisation of the UnicodeString
3949         * dlls/dsound/dsound_main.c: Todd T. Fries <todd@fries.net>
3950         Add HAVE_SOUNDCARD_H to support OpenBSD.
3952         * include/wingdi.h, objects/enhmetafile.c, relay32/gdi32.spec:
3953         Peter Hunnisett <hunnise@nortelnetworks.com>
3954         - Added some missing EMR record types and updated and fixed others
3955         - Added stubs and headers for CreateColorSpace,DeleteColorSpace and SetColorSpace
3956         - Added header for SetICMMode
3957         - Added ability to play more enhanced metafile records
3959         * graphics/enhmetafiledrv/init.c:
3960         Peter Hunnisett <hunnise@nortelnetworks.com>
3961         Store reference hdc size into enhanced metafile header when creating.
3963         * dlls/ole32/moniker.c, dlls/ole32/ole2stubs.c:
3964         Marcus Meissner <marcus@jet.franken.de>
3965         Implemented OleRun.
3967         * objects/dc.c: Gerard Patel <g.patel@wanadoo.fr>
3968         Removed DeleteObject call left over from previous patch.
3970         * win32/thread.c: Ove Kaaven <ovek@arcticnet.no>
3971         Fixed bad register constraint in InterlockedCompareExchange.
3973         * include/winbase.h: Ove Kaaven <ovek@arcticnet.no>
3974         Added prototypes for the NT synchronization functions
3975         InterlockedCompareExchange and InterlockedExchangeAdd.
3977         * loader/module.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
3978         Don't access 'wm->modname' after the modref has been flushed.
3980         * memory/global.c: Guy Albertelli <galberte@neo.lrun.com>
3981         Added null check in GlobalHandle.
3983 2000-01-12  Alexandre Julliard  <julliard@winehq.com>
3985         * dlls/comctl32/datetime.c, dlls/comctl32/monthcal.c, dlls/oleaut32/parsedt.c, include/monthcal.h:
3986         Removed a dependency between oleaut32 and comctl32.
3988         * include/winnt.h: Juergen Schmied <juergen.schmied@debitel.net>
3989         More STATUS_ codes.
3991         * include/ddraw.h: Steve Langasek <vorlon@dodds.net>
3992         Fixed macro definition of IDirectDrawSurface_Restore.
3993         Added defines for Ddraw's WaitForVerticalDisplay().
3995         * include/dsound.h: Steve Langasek <vorlon@dodds.net>
3996         Fixed typos in macro definitions for IDirectSoundBuffer_GetStatus,
3997         IDirectSoundBuffer_Unlock.
3999         * include/mmsystem.h: Steve Langasek <vorlon@dodds.net>
4000         Missing Winelib declarations for AUXCAPS.
4002         * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4003         Fix (harmless) assembler warnings.
4005         * dlls/dplayx/dplay.c: Peter Hunnisett <hunnise@nortelnetworks.com>
4006         Fix problem with initialization (reported by Andreas Mohr).
4008         * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
4009         InfoPtr checking mixed up WM_DESTROY and WM_CREATE.
4011 ----------------------------------------------------------------
4012 Sun Jan  9 21:42:42 2000  Alexandre Julliard  <julliard@winehq.com>
4014         * dlls/wnaspi32/winaspi32.c: Patrik Stridvall <ps@leissner.se>
4015         Non-Linux compile fix.
4017         * files/dos_fs.c: Francois Gouget <fgouget@psn.net>
4018         DOSFS_DoGetFullPathName would underflow (p would get past the
4019         beginning of buffer) if given the name "//..".
4020         Regrouped the handling of the directory separators.
4021         Directory separators in the returned path are now alway a single "\"
4022         which simplifies the handling of ".." in the name.
4024         * dlls/advapi32/registry.c:
4025         Juergen Schmied <juergen.schmied@debitel.net>
4026         Corrected behaviour of RegOpenKey in case of failure.
4028         * misc/registry.c, server/registry.c, server/trace.c, include/server.h:
4029         Juergen Schmied <juergen.schmied@debitel.net>
4030         - removed copying of HKEY_USERS to HKEY_CURRENT_USER
4031         - HKEY_CURRENT_USER is now subkey of HKEY_USERS
4032         - changed query_key_info_request to return the key name too (NtQueryKey needs this)
4033         - the rootkeys (MACHINE and USER) do have names
4035         * include/gdi.h, objects/dc.c, objects/gdiobj.c:
4036         Gerard Patel <g.patel@wanadoo.fr>
4037         Avoid deleting of the default 1x1 bitmap for memory DCs.
4039         * 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:
4040         Built-in DLLs resources are now specified in spec file.
4041         Removed unnecessary flags in built-in DLLs tables.
4043         * if1632/dummy.c, if1632/gdi.spec, if1632/user.spec, misc/Makefile.in, misc/bidi16.c:
4044         Erez Volk <erez@gmx.net>
4045         Added stubs for some BiDi API functions.
4047         * dlls/winmm/mciwave/mciwave.c:
4048         Bradley Baetz <bbaetz@student.usyd.edu.au>
4049         Fixed race condition between app and wine in WAVE_mciPlay.
4051         * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
4052         Stop menu tracking when clicking on the menu bar where there is no
4053         menu item.
4055         * win32/newfns.c: Erez Volk <erez@gmx.net>
4056         Better error reporting.
4058 Sat Jan  8 22:27:31 2000  Alexandre Julliard  <julliard@winehq.com>
4060         * graphics/x11drv/xfont.c:
4061         Backed out scalable bitmap change (gives ugly results).
4063         * controls/menu.c: Marcus Meissner <marcus@jet.franken.de>
4064         GetMenuString should return itemlength on 0 nMax or NULL str
4065         InsertItem pos=-1, flags = 0 should append item
4066         (thanks to Sander van Leeuwen)
4068         * include/aspi.h, dlls/wnaspi32/winaspi32.c, dlls/wnaspi32/wnaspi32.spec:
4069         David Elliott <dfe@netnitco.net>
4070         Removed malloc/free hack and replaced with HeapAlloc/HeapFree throughout code.
4071         Added critical section around code dealing with global variables.
4072         Added a few comments about how ASPI is supposed to work.
4073         Copy sense info into the correct place (right after the fixed 16-byte CDB).
4074         Now returns target status (many Windows apps won't even look at the
4075         sense are unless they get an error code).
4076         Added SC_ABORT_SRB FIXME.
4077         Added SC_GET_DISK_INFO place holder for clarity.
4078         Updated Linux SG interface structure to include new kernel 2.2
4079         status fields.
4081         * Make.rules.in: Marcus Meissner <marcus@jet.franken.de>
4082         Look for our header files first, then for systems headers.
4084         * dlls/commdlg/filedlg.c: Marcus Meissner <marcus@jet.franken.de>
4085         The new filedialog stuff does not handle template. So do not call if
4086         there are any.
4088         * windows/winpos.c: Rein Klazes <rklazes@casema.net>
4089         Avoid problems during changing the Z-order if the window and the
4090         window to insert after are the same.
4092         * libtest/expand.c, libtest/hello5.c:
4093         Marcus Meissner <Marcus.Meissner@caldera.de>
4094         Removed GUI junk from expand.c, so you can use it in commandline mode.
4095         Fixed hello5.c.
4097         * dlls/imagehlp/imagehlp.spec, dlls/imm32/imm32.spec:
4098         Patrik Stridvall <ps@leissner.se>
4099         Fixed some issues found by winapi_check.
4101         * tools/winapi_check/win32/shell32.api, tools/winapi_check/winapi.pm, tools/winapi_check/winapi_check, tools/winapi_check/winapi_local.pm:
4102         Patrik Stridvall <ps@leissner.se>
4103         - Added support for auto allocated ordinals
4104         - Fixed varargs (16 bit) bug
4105         - Minor fixes
4107         * dlls/version/info.c:
4108         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4109         Fixed alignment problem with VERSION_INFO members.
4111 Wed Jan  5 03:24:52 2000  Alexandre Julliard  <julliard@winehq.com>
4113         * configure, configure.in: Marcus Meissner <marcus@jet.franken.de>
4114         Add $X_EXTRA_LIBS to any X dependend checks or they will fail if some
4115         of the $X_EXTRA_LIBS are required.
4117         * windows/defwnd.c, windows/painting.c:
4118         Patrik Stridvall <ps@leissner.se>
4119         - Made FillRect behave like it does on Windows
4120         - Cleaned up WM_{,ICON}ERASEBACKGROUND default handling
4121         - Added some comments on how Windows behaves
4123         * windows/winhelp.c: Peter Ganten <peter@ganten.org>
4124         Check if winhelp is already running; use winhlp32.exe or winhelp.exe
4125         depending on the emulated version, relase win16lock before calling
4126         WinHelpA.
4128         * AUTHORS, include/authors.h:
4129         Updated authors list from the Changelog. Please let me know if you
4130         have been left out.
4132         * documentation/fonts: Marcus Meissner <marcus@jet.franken.de>
4133         TrueType clarification.
4135         * configure, configure.in, graphics/d3ddevices.c, graphics/d3dtexture.c, include/acconfig.h, include/config.h.in:
4136         Lionel Ulmer <lionel.ulmer@free.fr>
4137         - detect if the OpenGL implementation defines the paletted texture and
4138           color table extensions
4139         - small warning fixes
4140         - fix the double '-lXxf86dga' when having DGA 2.0
4142         * include/winbase.h: Marcus Meissner <marcus@jet.franken.de>
4143         Some comm clean up, much more error messages, only use TIOCOUTQ if
4144         defined [wine-bugs/104], tried implementing SetCommTimeouts.
4146         * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
4147         - When processing WM_PAINT messages, the treeview might sometimes use
4148           the wrong hdc. Fixed.
4149         - Better checking for TREEVIEW_INFO *infoPtr=NULL.
4150           Similar to code in toolbar.c
4151         - Other small fixes (subclassed edit control).
4153         * debugger/msc.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4154         Bugfix: uninitialized pointer caused crashes.
4156         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
4157         Made virus warning a bit more drastic, since some people don't believe us.
4159         * misc/comm.c: Marcus Meissner <marcus@jet.franken.de>
4160         Some comm clean up, much more error messages, only use TIOCOUTQ if
4161         defined [wine-bugs/104], tried implementing SetCommTimeouts.
4163         * files/profile.c: Rein Klazes <rklazes@casema.net>
4164         Implement WritePrivateProfileSectionA().
4166         * dlls/ntdll/rtl.c: Adam Sacarny <magicbox@bestweb.net>
4167         Fix for compilers that don't support 'long long' (From Ove Kaaven).
4169 Tue Jan  4 02:40:22 2000  Alexandre Julliard  <julliard@winehq.com>
4171         * scheduler/thread.c, server/thread.c:
4172         Moved allocation of the socket pair for a new thread to the server.
4174         * server/debugger.c: Made debug events and contexts standard objects.
4175         Use sleep_on to wait on debug events.
4177         * server/request.c, server/request.h, server/thread.c, server/thread.h, server/trace.c:
4178         Made sleep_on usable from all requests.
4180         * dlls/winmm/lolvldrv.c, dlls/winmm/mmsystem.c, include/mmsystem.h:
4181         Eric Pouech <Eric.Pouech@wanadoo.fr>
4182         Added more MIDI messages 16<=>32 mapping.
4183         Fixes some bugs in buffers handling and index for MAPPER.
4185         * include/callback.h, if1632/thunk.c:
4186         Eric Pouech <Eric.Pouech@wanadoo.fr>
4187         Removed the obsoleted CallTimeFuncProc, CallDriverProc,
4188         CallDriverCallback.
4190         * dlls/winmm/.cvsignore, dlls/winmm/Makefile.in, dlls/winmm/time.c:
4191         Eric Pouech <Eric.Pouech@wanadoo.fr>
4192         Put back visible minimum timer resolution to 1 ms.
4193         Decorrelate the service thread resolution from the user required timer
4194         & visible minimum resolutions.
4195         Removed the Callback.TimeFuncProc entry.
4197         * windows/x11drv/monitor.c: Lionel Ulmer <lionel.ulmer@free.fr>
4198         Give +0+0 as a default position for the desktop window.
4200         * dlls/winmm/mmio.c: Bradley Baetz <bbaetz@student.usyd.edu.au>
4201         Convert mmio to allow the use of 32 bit mmio procedures.
4203         * 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:
4204         Juergen Schmied <juergen.schmied@debitel.net>
4205         Small fixes.
4207         * dlls/odbc32/odbc32.spec, misc/registry.c, relay32/kernel32.spec:
4208         Patrik Stridvall <ps@leissner.se>
4209         Fixed some issues found by winapi_check.
4211         * tools/winapi_check/win32/advapi32.api, tools/winapi_check/win32/comctl32.api, tools/winapi_check/win32/odbc32.api, tools/winapi_check/winapi.pm:
4212         Patrik Stridvall <ps@leissner.se>
4213         Updated winapi_check to handle the new additions.
4215         * dlls/comctl32/monthcal.c, include/monthcal.h:
4216         Chris Morgan <cmorgan@wpi.edu>
4217         James Abbatiello <abbeyj@wpi.edu>
4218         Implemented WM_SIZE message support. Optimized drawing to use
4219         precalculated size values rather than recalculating during each call
4220         of MONTHCAL_Refresh.
4222         * relay32/user32.spec, windows/dialog.c:
4223         Juergen Schmied <juergen.schmied@debitel.net>
4224         Corrected parameter count for DialogBoxIndirectParamAorW.
4226         * controls/scroll.c: Rein Klazes <rklazes@casema.net>
4227         Don't show the scrollbar if SetScrollinfo() is called with only the
4228         SIF_DISABLENOSCROLL flag.
4230         * windows/x11drv/keyboard.c: Ove Kaaven <ovek@arcticnet.no>
4231         Added extra US keymap with the infamous phantom key.
4233         * Makefile.in, dlls/winmm/wineoss/Makefile.in:
4234         Eric Pouech <Eric.Pouech@wanadoo.fr>
4235         Use a uniform naming scheme for driver modules.
4237         * include/driver.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
4238         Encapsulated Wine internal data into an ifdef __WINE__.
4240         * windows/Makefile.in, windows/driver.c, windows/.cvsignore:
4241         Eric Pouech <Eric.Pouech@wanadoo.fr>
4242         Moved the 16 bit driver functions callout into the dir.
4244         * dlls/winmm/wavemap/wavemap.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4245         Added support for WODM_BREAKLOOP message.
4247         * dlls/winmm/wineoss/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4248         Removed extraneous ERR message.
4250         * dlls/winmm/mciseq/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4251         Added support for MCI_INFO_COPYRIGHT and MCI_INFO_NAME.
4253         * debugger/hash.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4254         Use case insensitive comparison while searching for new modules.
4256         * dlls/ntdll/ntdll.spec:
4257         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
4258         Added spec entry for _itoa.
4260         * tools/wrc/CHANGES, tools/wrc/wrc.h, tools/wrc/writeres.c:
4261         Bertho Stultiens <bertho@panter.soci.aau.dk>
4262         Generated labels of resource names must be unique throughout the
4263         generated code.
4265         * windows/message.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
4266         "resultp" can be NULL in SendMessageTimeout*().
4268         * dlls/crtdll/crtdll.spec, dlls/crtdll/crtdll_main.c:
4269         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
4270         - prevent mem leak of CRTDLL_acmdln_dll
4271         - better argument parsing
4272         - last xargv entry has to be NULL
4273         - return value is environment pointer instead of NULL
4274         - added a spec entry for bsearch()
4276 Sat Jan  1 22:38:21 2000  Alexandre Julliard  <julliard@winehq.com>
4278         * loader/module.c, scheduler/process.c, windows/message.c, windows/queue.c, windows/user.c, if1632/thunk.c, include/callback.h, include/process.h:
4279         Peter Ganten <peter@ganten.org>
4280         Implemented WaitForInputIdle.
4282         * misc/ddeml.c, windows/win.c:
4283         Fixed potential buffer overflows (spotted by Francois Gouget).
4285         * 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:
4286         Make use of automatic ordinal allocation.
4288         * 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:
4289         Moved poll handling to the generic part of the server objects.
4290         Fixed busy waiting on POLLERR events.
4291         Merged struct client into struct thread.
4293 Mon Dec 27 05:26:01 1999  Alexandre Julliard  <julliard@winehq.com>
4295         * 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:
4296         Cosmetics.
4298         * 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:
4299         Francois Gouget <fgouget@psn.net>
4300         Buffer overflows and strncpy fixes.
4302         * loader/pe_image.c:
4303         PE_FindExportedFunction: use a binary search for function names.
4305 Sun Dec 26 23:12:38 1999  Alexandre Julliard  <julliard@winehq.com>
4307         * dlls/advapi32/advapi32.spec, dlls/odbc32/odbc32.spec:
4308         Fixed/commented out duplicate entry point names.
4310         * relay32/builtin32.c, tools/build-spec.txt, tools/build.c:
4311         Added support for automatic ordinal allocation.
4312         Output list of function names in sorted order.
4313         Added support for nameless (ordinal-only) entry points.
4314         Cleaned up error handling.
4316         * 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:
4317         Huw D M Davies <h.davies1@physics.ox.ac.uk>
4318         Move DCFuncs ExtTextOut and GetTextExtentPoint to Unicode.
4319         Map a few Unicode chars to the first 0xff in psdrv.
4320         Don't expect x11drv to display Unicode chars yet.
4322         * 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:
4323         Francois Gouget <fgouget@psn.net>
4324         Wrapped some strings in a debugstr_* call.
4325         Replaced some calls to debugstr_{a,w} by debugstr_{a,w}n.
4326         Removed redundant 'L's for Unicode strings.
4327         Tried to harmonize the traces a little bit.
4329         * misc/debugstr.c: Francois Gouget <fgouget@psn.net>
4330         debugstr_w now returns something looking like 'L"xxxx"...'
4332         * dlls/commdlg/filedlg95.c: Francois Gouget <fgouget@psn.net>
4333         FILEDLG95_HandleCustomDialogMessages:
4334         - for the three handled messages we must return the required buffer size
4335         - for CDM_GETFILEPATH paths like "dir\file" were handled incorrectly
4336         - fixed multiple potential buffer overflows.
4337         FILEDLG95_OnOpen: fixed a use of strncpy without '\0'.
4338         FILEDLG95_SHELL_NewFolder: the size of lpstrCaption was incorrect
4339         leading to a buffer overflow.
4341 Sat Dec 25 22:58:59 1999  Alexandre Julliard  <julliard@winehq.com>
4343         * objects/enhmetafile.c: Peter Hunnisett <hunnise@nortelnetworks.com>
4344         Added support for playing more record types (still more to come).
4346         * dlls/comctl32/listview.c: Francois Gouget <fgouget@psn.net>
4347         Better support very long strings by avoiding to copy them in a fixed
4348         size buffer (one exception partly remains: callback strings).
4349         Raise the buffer size to 512 characters.
4350         Merge the handling of item 0 and other items together in GetItemA to
4351         reduce code duplication.
4353         * graphics/psdrv/bitmap.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
4354         Fix PSDRV_StretchDIBits for non-integer byte src widths (1 & 4bpp).
4356         * dlls/winmm/wineoss/audio.c: Marcus Meissner <marcus@jet.franken.de>
4357         Cast the unsigned int to signed, or NEAR_MATCH will not work.
4359         * misc/cdrom.c, msdos/int2f.c, include/cdrom.h:
4360         Eric Pouech <Eric.Pouech@wanadoo.fr>
4361         Fixed first/last playable frame referencing.
4363         * include/mmsystem.h, dlls/winmm/mcicda/mcicda.c:
4364         Eric Pouech <Eric.Pouech@wanadoo.fr>
4365         Fixed some bogus values in MCI_STATUS handling (position & length of tracks).
4366         Added support for MCI_INFO on MEDIA_UPC & MEDIA_IDENTITY commands.
4368         * windows/rect.c: Marcus Meissner <marcus@jet.franken.de>
4369         Test pointers passed to copyrect for NULL.
4371         * windows/dialog.c: Dmitry Timoshkov <dmitry@sloboda.ru>
4372         Restore erroneously deleted lines.
4374         * dlls/comctl32/comctl32undoc.c:
4375         Huw D M Davies <h.davies1@physics.ox.ac.uk>
4376         DPA_DeletePtr was resizing the array to a too small size.
4378         * windows/winpos.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
4379         Avoid infinite loop in WINPOS_FindIconPos if the width of the parent
4380         client area is less than the icon spacing.
4382         * documentation/linux-fat-permissions:
4383         Steven Elliott <elliotsl@mindspring.com>
4384         Added a document that describes configuring FAT filesystem permissions
4385         for Wine.
4387         * scheduler/thread.c: Juergen Schmied <juergen.schmied@debitel.net>
4388         NT allocates one page as TEB. Some native NT-dlls are using this.
4390         * graphics/x11drv/xfont.c: Dmitry Timoshkov <dmitry@sloboda.ru>
4391         Don't skip usable X fonts. Add support for koi8 fonts.
4393         * dlls/icmp/icmp_main.c: Francois Gouget <fgouget@psn.net>
4394         Modified IcmpCloseHandle and IcmpSendEchoRequest so that we don't
4395         crash if the handle is INVALID_HANDLE_VALUE.
4397         * include/windef.h: Steven Elliott <elliotsl@mindspring.com>
4398         Changed the "this_is_a_syntax_error" error message to a more specific
4399         error message.
4401 Mon Dec 20 04:14:48 1999  Alexandre Julliard  <julliard@winehq.com>
4403         * 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:
4404         Huw D M Davies <h.davies1@physics.ox.ac.uk>
4405         Move Bezier code out of x11drv into commmon GDI code; if any driver
4406         does not implement PolyBezier[To] the curve is approximated to lines
4407         and drawn with Polyline.
4408         Implement many GDI-Path recording functions (at least the win9x subset).
4409         Implement FlattenPath and FillPath.
4411         * dlls/dplayx/dplayx.spec: Peter Hunnisett <hunnise@nortelnetworks.com>
4412         Fixed ordinal numbering and added new spec stub.
4414         * configure, configure.in: Marcus Meissner <marcus@jet.franken.de>
4415         Readded Xpm autoconf checks.
4417         * ole/ole2nls.c: Rein Klazes <rklazes@casema.net>
4418         EnumSystemLocalesA should look for registry values, not subkeys.
4420         * dlls/wnaspi32/winaspi32.c: Marcus Meissner <marcus@jet.franken.de>
4421         Small fix to get GET_DEVICE_TYPE working (verified by Dan Kegel).
4423         * dlls/comctl32/trackbar.c: Ian Schmidt <ischmidt@cfl.rr.com>
4424         Corrected background color and fixed leaking GDI brush.
4426         * misc/registry.c: Juergen Schmied <juergen.schmied@debitel.net>
4427         NT loader: don't stop loading a hive when an error occurs.
4429         * objects/metafile.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
4430         PlayMetaFile and EnumMetaFile should work if the hdc is a
4431         (enh)metafile DC.
4433         * README: Juergen Lock <nox@jelal.kn-bremen.de>
4434         Updated the FreeBSD notes, the LDT patch finally made it into -current.
4436         * dlls/commdlg/filetitle.c: Francois Gouget <fgouget@psn.net>
4437         If lpTitle==NULL and cbBuf==0 then we must return the required buffer
4438         size.
4440         * dlls/comctl32/comctl32.spec, dlls/comctl32/commctrl.c, include/commctrl.h:
4441         Shaun Morris <shaun@blueneptune.com>
4442         Implemented _TrackMouseEvent for the TME_LEAVE flag.
4444         * graphics/ddraw.c, graphics/ddraw_private.h:
4445         Lionel Ulmer <lionel.ulmer@free.fr>
4446         Adds resolution / depth switching with DGA 2.0.
4448 ----------------------------------------------------------------
4449 Sun Dec 12 21:28:44 1999  Alexandre Julliard  <julliard@winehq.com>
4451         * windows/x11drv/event.c: Lionel Ulmer <lionel.ulmer@free.fr>
4452         Fixed handling of DGA2.0 keyboard events.
4454         * dlls/msacm32/driver.c, dlls/msacm32/internal.c, dlls/msacm32/msacm32_main.c, dlls/msacm32/wineacm.h:
4455         Eric Pouech <Eric.Pouech@wanadoo.fr>
4456         Added the ability to open several streams on the same driver.
4457         Added a few acmMetrics options.
4459         * dlls/oleaut32/ole2disp.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4460         SysStringLen can get a NULL pointer (and shall return 0).
4462         * dlls/winmm/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4463         Now using notification for detecting when a WAVEHDR has been played
4465         * dlls/winmm/mciwave/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4466         Enhanced synchronization between playback thread and stop/close commands
4467         Now using notification for detecting when a WAVEHDR has been played
4469         * controls/combo.c: Dmitry Timoshkov <dmitry@sloboda.ru>
4470         ComboBox should not send bogus messages to edit buddy and to itself.
4472         * files/dos_fs.c: Peter Ganten <peter@ganten.org>
4473         Fixed GetShortPathNameA.
4475         * Makefile.in, configure, configure.in:
4476         Moses DeJong <dejong@cs.umn.edu>
4477         Fixed missing libwine.so symlink during install. Set the runtime
4478         linker path.
4480         * windows/dialog.c: Murali Pattathe
4481         GetNextDlgGroupItem: needs to check the control parent is the main dialog.
4482         GetNextTabItem: make sure this control is visible and not disabled.
4484         * loader/module.c:
4485         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
4486         Fixed cmd line length calculation.
4488         * include/x11drv.h, windows/x11drv/event.c, graphics/ddraw.c:
4489         Lionel Ulmer <lionel.ulmer@free.fr>
4490         - added support of DGA-2.0 events
4491         - fixed the leaving of DGA-2.0 mode
4493         * controls/menu.c, include/menu.h, windows/winproc.c:
4494         Rein Klazes <rklazes@casema.net>
4495         In win32 a WM_MENUSELECT message should contain the position when the
4496         item refers to a submenu, not the submenu's handle as in win16.
4498         * files/tape.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
4499         Fixed arg types of FIXMEs.
4501         * windows/mdi.c: Marcus Meissner <marcus@jet.franken.de>
4502         Check for passed invalid window handle in DefMDIChildProc*.
4504         * dlls/winmm/mmsystem.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
4505         Fix no. of arguments in a WARN statement.
4507         * objects/text.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4508         Allows DrawText(16|A|W) to get a NULL string as parameter.
4510         * scheduler/process.c, dlls/advapi32/service.c, dlls/comctl32/datetime.c, dlls/comctl32/tab.c, dlls/dplayx/dplay.c, graphics/ttydrv/objects.c:
4511         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
4512         Fixed compiler warnings.
4514         * controls/listbox.c, misc/registry.c, misc/version.c:
4515         Marcus Meissner <marcus@jet.franken.de>
4516         Removed 2 useless include winversion.h
4517         Do not make autodetected version fix on first calls if it is Win31.
4519         * dlls/shell32/shell32.spec:
4520         Juergen Schmied <juergen.schmied@debitel.net>
4521         Added StrNCpyA, StrNCpyW.
4523         * windows/winproc.c: Juergen Schmied <juergen.schmied@debitel.net>
4524         Message translation WM_CREATE fixed.
4526 Sat Dec 11 23:56:47 1999  Alexandre Julliard  <julliard@winehq.com>
4528         * 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:
4529         Xiang Li
4530         Implementation of a proxy ODBC32 dll.
4532         * 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:
4533         Kai Morich <kai.morich@bigfoot.de>
4534         Marcus Meissner <marcus@jet.franken.de>
4535         Added systray support.
4536         Swallow the windows systray icons into kpanel systray if KDE/KWM is
4537         running.
4539         * documentation/wine.conf.man.in, misc/registry.c, wine.ini:
4540         Juergen Schmied <juergen.schmied@debitel.net>
4541         Added loader for NT registry files.
4543         * dlls/ntdll/nt.c, include/ntsecapi.h, include/winnt.h, dlls/advapi32/advapi32.spec, dlls/advapi32/security.c:
4544         Juergen Schmied <juergen.schmied@debitel.net>
4545         Stubs for LsaFreeMemory, LsaQueryInformationPolicy, LsaClose.
4546         Small fixes.
4548         * include/wingdi.h, objects/enhmetafile.c, objects/region.c, relay32/gdi32.spec:
4549         Peter Hunnisett <hunnise@nortelnetworks.com>
4550         - Implemented GetEnhMetaFilePaletteEntries
4551         - Added fixme stubs for SetMetaRgn and GetMetaRgn
4552         - Added support for playing several enhanced metafile records
4553         - Added beginnings of implementation for playing the rest of the
4554           enhanced metafile records
4556         * 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:
4557         Patrik Stridvall <ps@leissner.se>
4558         Improved the TTY driver.
4560         * files/file.c: Peter Ganten <peter@ganten.org>
4561         Return an error if lpOverlapped is provided to ReadFile / WriteFile.
4563         * misc/wsprintf.c: Marcus Meissner <marcus@jet.franken.de>
4564         Do not confuse the 0 fill magic of wsprintf with the "0x" hex prefix.
4566         * dlls/winmm/mmsystem.c, dlls/winmm/wavemap/wavemap.c:
4567         Bradley Baetz <bbaetz@student.usyd.edu.au>
4568         The wavemap driver wasn't passing the callback type to the
4569         DriverCallback routine correctly.
4571         * files/tape.c: Added missing WINAPIs.
4573         * windows/syscolor.c: Marcus Meissner <marcus@jet.franken.de>
4574         If we have registry entries, use them. Never mind which version we
4575         autodetected.
4577         * dlls/oleaut32/oleaut32.spec, misc/port.c, tools/bin2res.c:
4578         Patrik Stridvall <ps@leissner.se>
4579         Fixed some issues found by winapi_check.
4581         * 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:
4582         Patrik Stridvall <ps@leissner.se>
4583         Minor fixes and additions.
4585         * loader/ne/resource.c:
4586         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4587         Bugfix: Added missing 'return' statement.
4589         * dlls/commdlg/filedlg95.c:
4590         Juergen Schmied <juergen.schmied@debitel.net>
4591         Small fixes.
4593 Fri Dec 10 03:47:14 1999  Alexandre Julliard  <julliard@winehq.com>
4595         * include/queue.h, windows/dialog.c, windows/message.c, windows/nonclient.c, windows/queue.c, controls/menu.c, include/message.h:
4596         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4597         Perform 16/32A/32W message mapping for posted messages.
4599         * files/Makefile.in, files/tape.c, include/debugdefs.h, relay32/kernel32.spec:
4600         Chris Morgan <cmorgan@wpi.edu>
4601         James Abbatiello <abbeyj@wpi.edu>
4602         Added stubs for the WinNT tape backup functions.
4604         * debugger/msc.c, debugger/source.c:
4605         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4606         Parse CodeView type/symbol info with 32-bit type indices.
4607         Added (partial) support for VC 5/6 .PDB files.
4608         Fixed treatment of source file names containing path.
4610         * server/registry.c: Ulrich Czekalla <ulrichc@corel.ca>
4611         Fixed off-by-one error.
4613         * scheduler/process.c:
4614         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4615         Bugfix: Show main window if CreateProcess was called without the
4616         STARTF_USESHOWWINDOW flag.
4618         * loader/pe_image.c:
4619         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4620         Implemented PE_UnloadLibrary().
4622         * include/dinput.h, windows/dinput.c:
4623         Lionel Ulmer <lionel.ulmer@free.fr>
4624         - do not loose initial auto-repeat status when acquiring the keyboard more
4625           than one time
4626         - support of DirectX 7's DIMOUSESTATE2 structure
4628         * dlls/ntdll/nt.c, dlls/ntdll/ntdll.spec:
4629         Marcus Meissner <Marcus.Meissner@lst.de>
4630         Added NtPowerInformation stub.
4632         * dlls/ole32/bindctx.c: Gerard Patel <g.patel@wanadoo.fr>
4633         Transfer only cbStruct size in BindCtxImpl_S(G)etOptions.
4635 Wed Dec  8 03:56:34 1999  Alexandre Julliard  <julliard@winehq.com>
4637         * 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:
4638         Dimitrie O. Paun <dimi@cs.toronto.edu>
4639         Make use of the DEFAULT_DEBUG_CHANNEL where appropriate.
4640         Use the default version of FIXME, ERR, WARN, TRACE for the default
4641         channel.
4643         * include/module.h, loader/module.c, scheduler/process.c:
4644         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4645         Delay sending debug events until process initialization is complete.
4647         * documentation/status/multimedia: Eric Pouech <Eric.Pouech@wanadoo.fr>
4648         Updated, added chapter on configuration and architecture.
4650         * dlls/winmm/mmio.c: Bradley Baetz <bbaetz@student.usyd.edu.au>
4651         - Fix MMIO_{Open,Rename} to check the filename (of the form
4652           file.ext+ABC) for the correct mmio procedure to use.
4653         - mmioStringToFOURCC now converts to uppercase if asked to, and handles
4654           strings of length < 4.
4656         * controls/edit.c: Dmitry Timoshkov <dmitry@sloboda.ru>
4657         Fix problem with EN_UPDATE notification sent by edit control.
4659 Mon Dec  6 01:20:01 1999  Alexandre Julliard  <julliard@winehq.com>
4661         * 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:
4662         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
4663         Added .rc file support for Win16 NE modules.
4664         Moved display.c and mouse.c to separate dll directories.
4666         * controls/combo.c: Dmitry Timoshkov <dmitry@sloboda.ru>
4667         Allow to deselect all items by sending CB_SETCURSEL(-1) to the combo.
4669 Sun Dec  5 23:54:04 1999  Alexandre Julliard  <julliard@winehq.com>
4671         * 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:
4672         Huw D M Davies <h.davies1@physics.ox.ac.uk>
4673         Fixes several bugs in gdi path handling.
4674         Adds *Path functions to dc funcs table + add EnhMetaFile recording.
4675         Separate out Polylne/PolylineTo and PolyBezier/PolyBezierTo in dc
4676         funcs table to enable proper enhmetafile recording.
4677         The current position update in *To functions is now handled by the
4678         main function and not in the drivers.
4679         Move USER functions from graphics/painting.c -> windows/painting.c
4681         * 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:
4682         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
4683         - the OLE version returned was too low
4684         - renamed OABuildVersion16 to OaBuildVersion16
4685         - spelling fixes
4687         * files/drive.c: Peter Ganten <peter@ganten.org>
4688         Fix GetCurrentDirectoryA and W to return the needed space for the CWD,
4689         if the buffer size is not large enough.
4691         * controls/button.c, windows/dialog.c:
4692         Dmitry Timoshkov <dmitry@sloboda.ru>
4693         Remove hack for keyboard messages in dialogs.
4695         * win32/device.c: Ian Schmidt <ischmidt@cfl.rr.com>
4696         Stubs for VMM GetDemandPageInfo function and VWin32 "Get VMCPD Version".
4697         Implementation for VWin32 Int31/DPMI dispatch call.
4698         Fixed "dangling else" compiler warning.
4700         * dlls/comctl32/listview.c: Francois Gouget <fgouget@psn.net>
4701         Whenever we do an strncpy we should make sure we put a '\0' at the end
4702         of the buffer.
4704         * include/toolhelp.h, misc/toolhelp.c, relay32/kernel32.spec:
4705         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
4706         Added Thread32First/Next stubs.
4708         * include/thread.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
4709         Moved wineserver's buffer & buffer_size at the end of TEB so that IE
4710         doesn't overwrite them.
4712         * dlls/winmm/mciwave/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4713         Fixed mciInfo.
4715         * dlls/winmm/wavemap/wavemap.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4716         Added support for WAVE_FORMAT_QUERY flag in wodOpen.
4718         * dlls/msacm32/stream.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4719         Correctly implement ACM_STREAMOPENF_QUERY flag in acmOpenStream.
4721         * dlls/winmm/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4722         Fixed MCI_OPEN command for types like "CDAUDIO!H:".
4724         * graphics/ddraw_private.h, graphics/ddraw.c:
4725         Marcus Meissner <marcus@jet.franken.de>
4726         Merged _all_ lpClipper into common_surface.
4727         Add NULL ptr check to SetClipper.
4728         Some more debug output.
4730         * include/config.h.in, misc/port.c, configure, configure.in:
4731         Marcus Meissner <marcus@jet.franken.de>
4732         Use the real glibc openpty if present.
4734         * loader/ne/segment.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4735         Added typedef to insure compilation on all gcc&egcs versions.
4737         * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
4738         Fixed _copy_registry().
4740         * 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:
4741         Juergen Schmied <juergen.schmied@debitel.net>
4742         Added some constants for Spanish.
4744         * include/module.h, loader/ne/module.c, loader/ne/segment.c:
4745         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4746         Bugfix: Call DllEntryPoint for *every* process that loads the DLL, not
4747         just for the first one.
4748         Bypass 32->16->32 transition when calling DllEntryPoint of built-in.
4750         * if1632/user.spec, windows/user.c:
4751         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4752         Added USER.DllEntryPoint().
4754         * if1632/thunk.c, include/process.h, loader/task.c, scheduler/process.c, scheduler/thread.c:
4755         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4756         Call 16-bit instead of 32-bit UserSignalProc entry point.
4757         Don't load USER32.DLL unless requested by the program.
4758         Bugfix: Pass the correct thread ID to UserSignalProc.
4760         * loader/pe_image.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4761         Fixed crash when map fails.
4763         * controls/combo.c: Dmitry Timoshkov <dmitry@sloboda.ru>
4764         Show use of undocumented messages.
4766         * 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:
4767         Lionel Ulmer <lionel.ulmer@free.fr>
4768         - removed keyboard auto-repeat when DInput acquires it
4769         - removed some (now) obsolete fixme's
4771         * graphics/ddraw_private.h, graphics/ddraw.c:
4772         Marcus Meissner <marcus@jet.franken.de>
4773         Moved lpClipper into common_directdrawsurface struct
4774         Release old clipper on new set
4776         * dlls/winmm/wineoss/midi.c, include/mmsystem.h:
4777         Eric Pouech <Eric.Pouech@wanadoo.fr>
4778         Fake MIDI_IO_STATUS support in midi in open
4779         Fixed bug in midi in while reading data
4781         * dlls/winmm/wineoss/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4782         Fixed infinite loop for 0-length wavehdrs.
4784         * dlls/winmm/mciwave/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4785         Fixed buggy playback for non PCM files
4786         Added support for from & to indexes for playback
4787         Now using double wavehdr for better output
4788         Cleaned-up internal structs and removed last 16 bit API adherence
4790         * dlls/winmm/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4791         Tried to reduce echo in playSound API (using two wavehdr instead of
4792         one).
4794         * dlls/winmm/lolvldrv.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4795         Added callback mechanisms for MIDI IN.
4797         * dlls/msacm32/stream.c, dlls/msacm32/wineacm.h:
4798         Eric Pouech <Eric.Pouech@wanadoo.fr>
4799         Fixed improper acm streams closing.
4801         * dlls/msacm32/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4802         Debug traces cosmetic fixes.
4804         * DEVELOPERS-HINTS: Eric Pouech <Eric.Pouech@wanadoo.fr>
4805         Fixed some errors (thanks to F Gouget for reporting them).
4806         Added some bits on thunking and resources for DLLs.
4808 Sat Dec  4 04:22:04 1999  Alexandre Julliard  <julliard@winehq.com>
4810         * graphics/ddraw.c, graphics/ddraw_private.h, include/ts_xlib.h, tsx11/X11_calls, tsx11/ts_xlib.c:
4811         Lionel Ulmer <lionel.ulmer@free.fr>
4812         First support of DGA 2.0 for DirectDraw.
4814         * include/winuser.h, relay32/user32.spec, win32/newfns.c:
4815         Erez Volk <erez@gmx.net>
4816         Stubs for Get/SetProcessDefaultLayout.
4818         * files/profile.c, relay32/kernel32.spec:
4819         Marcus Meissner <marcus@jet.franken.de>
4820         Stub for CloseProfileUserMapping.
4822         * windows/dinput.c: Lionel Ulmer <lionel.ulmer@free.fr>
4823         Use DInput's internal mouse event handler to handle the GetDeviceState
4824         function.
4826         * dlls/winmm/mmsystem.c: Peter Ganten <peter@ganten.org>
4827         waveHdr.lpData was eventually HeapFree()ed uninitialized.
4829         * loader/module.c: Sergei Turchanov <turchanov@otvprim.ru>
4830         Fix for GetBinaryType to return SCS_DOS_BINARY if extended signature
4831         is unknown.
4833         * 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:
4834         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
4835         Fixed 32-bit module name handling to conform better to Win9x.
4836         Removed OFSTRUCT passing during process creation sequence.
4837         Bugfix: don't set exe_modref when LOAD_LIBRARY_AS_DATAFILE is set.
4839         * dlls/advapi32/service.c, include/winsvc.h, dlls/advapi32/advapi32.spec:
4840         Michael McCormack <mccormac@aals27.alcatel.com.au>
4841         Added code to some service functions (some untested), fixed
4842         declaration of service main function.
4844         * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.h:
4845         Pierre Mageau
4846         Murali Pattathe
4847         Francois Boisvert
4848         Francis Baudet
4849         Henning Hoffmann
4850         Many fixes.
4852         * dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
4853         Huw D M Davies <h.davies1@physics.ox.ac.uk>
4854         Added stubs for several MRU list functions and documented some others.
4856         * server/file.c: Marcus Meissner <marcus@jet.franken.de>
4857         Flush handle in any access mode.
4859         * dlls/comctl32/header.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
4860         Fixes off by one error in item insertion.
4862         * dlls/winmm/wineoss/audio.c: Marcus Meissner <marcus@jet.franken.de>
4863         Allow 1% deviation from specified sampling rate for some soundcards.
4865         * include/d3d.h: Lionel Ulmer <lionel.ulmer@free.fr>
4866         Suppressed the inclusion of OpenGL headers.
4868         * objects/enhmetafile.c: Peter Hunnisett <hunnise@nortelnetworks.com>
4869         - Added stub for conversion from meta to enhance meta files.
4870         - Implemented GetEnhMetaFileBits for enhanced meta files.
4872         * graphics/ddraw.c, graphics/ddraw_private.h:
4873         Peter Hunnisett <hunnise@nortelnetworks.com>
4874         Improved stubs for the ddraw clipper routines.
4876 Mon Nov 29 02:48:43 1999  Alexandre Julliard  <julliard@winehq.com>
4878         * win32/time.c: Made GetSystemTimeAsFileTime return value more precise.
4880         * server/event.c, server/file.c:
4881         Fixed get_event_obj/get_file_obj to use the process parameter (thanks
4882         to Eric Pouech).
4884         * server/process.h, scheduler/process.c, server/process.c:
4885         Fixed DEBUG_ONLY_THIS_PROCESS again (thanks to Ulrich Weigand).
4887         * 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:
4888         Implemented waitable timers.
4890 Sun Nov 28 21:03:46 1999  Alexandre Julliard  <julliard@winehq.com>
4892         * tools/bin2res.c: Bug fixes.
4894         * dlls/comctl32/comctl32.h, dlls/comctl32/propsheet.c, dlls/comctl32/rsrc.rc, include/prsht.h:
4895         Serge Ivanov
4896         Pierre Mageau
4897         Thy Nguyen
4898         Don Kelly
4899         Noomen Hamza
4900         Lots of bug fixes and new features in property sheets.
4902         * 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:
4903         Niels Kristian Bech Jensen <nkbj@image.dk>
4904         Compiler warnings fixed.
4906         * graphics/x11drv/xfont.c: Bradley Baetz <bbaetz@student.usyd.edu.au>
4907         Give the app back the exact font name it asked for.
4909         * dlls/comctl32/toolbar.c: Dave Pickles <davep@nugate.demon.co.uk>
4910         Prevent a crash if messages are sent to a toolbar window before
4911         WM_NCCREATE or after WM_DESTROY.
4913         * dlls/winmm/winmm_Es.rc: Julio Cesar Gazquez <jgazquez@dld.net>
4914         Updated Spanish MM error string translation.
4916         * dlls/comctl32/comctl32.h, dlls/comctl32/rsrc.rc, dlls/comctl32/treeview.c, include/commctrl.h, include/treeview.h:
4917         Alex Priem <alexp@sci.kun.nl>
4918         - (final?) update of TreeView_* macro's.
4919         - implementation of TVM_SETINSERTMARK & TVM_SETINSERTMARKCOLOR
4920         - fixed some typo's
4921         - custom draw enhancements
4922         - implementation of state images
4923         - implementation of TVS_CHECKBOXES
4925         * dlls/comctl32/toolbar.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
4926         Fixed some visual toolbar bugs.
4928         * README: Juergen Lock <nox@jelal.kn-bremen.de>
4929         Added notes about Wine-related FreeBSD kernel patches.
4931         * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
4932         Use RegQueryInfoKey to count number of printers.
4934         * server/unicode.h: Juergen Lock <nox@jelal.kn-bremen.de>
4935         Don't try to call towupper() when there's no wctype.h.
4937         * controls/combo.c: Dmitry Timoshkov <dmitry@sloboda.ru>
4938         When combobox selection changes, update its edit box accordingly.
4940         * controls/listbox.c: Dmitry Timoshkov <dmitry@sloboda.ru>
4941         Notify parent of listbox if requested.
4943 Thu Nov 25 23:42:54 1999  Alexandre Julliard  <julliard@winehq.com>
4945         * server/ptrace.c: More portability fixes (thanks to Juergen Lock).
4947         * dlls/ntdll/signal_i386.c: Juergen Lock <nox@jelal.kn-bremen.de>
4948         Set/use fs/gs from the sigcontext struct, the corresponding kernel
4949         change now finally has been MFC'd to -stable.
4951         * documentation/fonts: Juergen Lock <nox@jelal.kn-bremen.de>
4952         Mention free Truetype font servers (Xfstt and xfsft).
4954         * winedefault.reg: Juergen Lock <nox@jelal.kn-bremen.de>
4955         Note what to do with the winedefault.reg in the file.
4957         * win32/device.c: Peter Ganten <peter@ganten.org>
4958         Implemented parts of _PageReserve() _PageCommit() _PageDecommit()
4959         _PageChangePermissions() and _PageFree() using the
4960         Virtual*()-Functions (with the great help of Ulrich Weigand).
4962         * memory/atom.c: Juergen Schmied <juergen.schmied@debitel.net>
4963         Removed fixme.
4965         * misc/registry.c: Several bug fixes in save_key().
4967         * dlls/advapi32/registry.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4968         Fixed some bogus error detection for RegEnumValue[AW] and
4969         RegQueryValueEx[AW].
4971         * dlls/dplayx/dplay.c, dlls/dplayx/dplayx_global.c, dlls/dplayx/dplayx_global.h, dlls/dplayx/dplobby.c:
4972         Peter Hunnisett <hunnise@nortelnetworks.com>
4973         - Added global data mutual exclusion
4974         - Removed hack for creating processes suspended now that it's implemented
4975         - Fixed ordinal numbering and added spec stubs
4976         - Fixed EnumConnections callback to fill in all parameters with valid data
4977         - Made direct play allocation/deallocation follow the same pattern as
4978           direct play lobby
4980         * dlls/win87em/emulate.c:
4981         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
4982         Several improvements.
4984         * ole/ole2nls.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
4985         Removed invalid LCMapString fixme for NORM_IGNOREKANATYPE case.
4987         * include/comm.h, misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
4988         Made win16 serial comms less of a CPU hog.
4990         * 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:
4991         Store all object names as Unicode in the server.
4993 Wed Nov 24 19:34:32 1999  Alexandre Julliard  <julliard@winehq.com>
4995         * include/server.h, misc/registry.c, server/registry.c, server/trace.c, wine.ini:
4996         Added wine.conf option for new format registry files.
4997         Added optional periodic saving of the registry.
4999         * misc/registry.c, server/registry.c:
5000         Added support to the server for loading new format (version 2) files.
5002         * misc/registry.c: Bug fixes (thanks to Juergen Schmied).
5004         * include/process.h, include/server.h, scheduler/debugger.c, dlls/ntdll/exception.c:
5005         Added current context to the exception debug event sent to the server.
5007         * server/debugger.c, server/process.c, server/process.h, server/thread.c, server/thread.h:
5008         Fixed handling of debug events on thread/process exit.
5010         * debugger/dbg.y, include/winbase.h, scheduler/critsection.c:
5011         Raise an exception when a critical section wait failed.
5013 Tue Nov 23 23:43:29 1999  Alexandre Julliard  <julliard@winehq.com>
5015         * 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:
5016         Patrik Stridvall <ps@leissner.se>
5017         Improved the stubs.
5019         * dlls/comctl32/imagelist.c, include/imagelist.h:
5020         Eric Kohl <ekohl@abo.rhein-zeitung.de>
5021         - first 'dummy' implementation of ImageList_Read
5023         * include/rebar.h, dlls/comctl32/rebar.c:
5024         Eric Kohl <ekohl@abo.rhein-zeitung.de>
5025         - added version messages
5027         * dlls/comctl32/draglist.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
5028         - implemented LBItemFromPt
5030         * include/commctrl.h, dlls/comctl32/listview.c:
5031         Eric Kohl <ekohl@abo.rhein-zeitung.de>
5032         - implemented simple column order array functionality
5033         - implemented some virtual listview notifications
5035         * dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
5036         Eric Kohl <ekohl@abo.rhein-zeitung.de>
5037         - minor update to mru list functions
5038         - stubs for COMCTL32_411 to COMCTL32_413
5040         * dlls/comctl32/toolbar.c, include/toolbar.h:
5041         Eric Kohl <ekohl@abo.rhein-zeitung.de>
5042         - added version messages and some simple get/set messages.
5043         - added unicode messages
5045         * 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:
5046         Juergen Schmied <juergen.schmied@debitel.net>
5047         - made IShellFolder a aggregable object
5048         - SHCoCreateInstance can create CSIDL_FSFolder now
5049         - browsing into folders on the desktop implemented
5050         - corrected returnvalue of Ico_ExtractIconEx
5051         - fixed SHGetDataFromIDList to return data of simple pidls
5053         * relay32/wsock32.spec, if1632/winsock.spec, include/winsock.h, misc/winsock.c:
5054         Moses DeJong <dejong@cs.umn.edu>
5055         Added implementation for WSARecvEx function. This is a Microsoft
5056         specific extension to the winsock API.
5058         * dlls/mpr/mpr.spec, dlls/mpr/pwcache.c, include/winnetwk.h:
5059         Juergen Schmied <juergen.schmied@debitel.net>
5060         Corrected wrong parameter counts for WNetCachePassword and
5061         WNetEnumCachedPasswords.
5063         * dlls/shell32/shell32.spec, dlls/shell32/shell32_main.c:
5064         Ian Schmidt <ischmidt@cfl.rr.com>
5065         Added stub for DllInstall().
5067         * 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:
5068         Changed to use new server-side registry support.
5070         * 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:
5071         Added registry support to the server.
5073         * tools/make_requests:
5074         Differentiate tracing functions between request and reply.
5075         Added possibility to have dumping functions for specific types.
5077 Sun Nov 21 21:02:06 1999  Alexandre Julliard  <julliard@winehq.com>
5079         * include/server.h, scheduler/client.c:
5080         Added server_call_noerr function that avoids touching the last error.
5082         * include/winerror.h: Added a few registry error codes.
5084         * graphics/x11drv/xfont.c, objects/font.c:
5085         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5086         Removed some unaligned accesses.
5088         * dlls/commdlg/filedlg95.c:
5089         Juergen Schmied <juergen.schmied@debitel.net>
5090         - the fodInfos were used before initialized
5091         - lpTemplateName can be a resource id
5092         - if lpTemplateName is a string don't free the original one
5094         * 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:
5095         Niels Kristian Bech Jensen <nkbj@image.dk>
5096         Removed extra #include statements.
5098         * files/file.c:
5099         Fixed MoveFileExA behavior when target file does not exist.
5101         * dlls/commdlg/cdlg_Pt.rc, programs/winhelp/.cvsignore, programs/winhelp/Makefile.in, programs/winhelp/Pt.rc:
5102         Gustavo Junior Alves <twinfo@bestway.com.br>
5103         Added Portuguese language support.
5105         * dlls/comctl32/monthcal.c, include/monthcal.h:
5106         Chris Morgan <cmorgan@wpi.edu>
5107         James Abbatiello <abbeyj@wpi.edu>
5108         Implemented current day circling.  Fixed many bugs in the month
5109         calender control including control spacing and alignment.  Fixed
5110         defines monthcal.h.  Optimized control drawing and removed many
5111         extranious redraws.  Improved control behavior.  Fixed inconsistent
5112         formatting in both .c and .h files.
5114         * files/profile.c:
5115         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
5116         Flush current profile before using a newly opened one.
5118         * memory/selector.c:
5119         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5120         Bugfix: GetThreadSelectorEntry() sets read-write flag incorrectly.
5122         * include/wine/wingdi16.h, objects/font.c, if1632/gdi.spec:
5123         Huw D M Davies <h.davies1@physics.ox.ac.uk>
5124         Stub for GetFontData16.
5126         * windows/Attic/display.c, if1632/Attic/display.spec:
5127         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
5128         Added some ordinals and GetDriverResourceID().
5130         * server/process.c, server/ptrace.c: Portability fixes.
5132         * scheduler/process.c: Fixed meaning of DEBUG_ONLY_THIS_PROCESS flag.
5134         * tools/bin2res.c: Peter Hunnisett <hunnise@nortelnetworks.com>
5135         Fixed compile error.
5137         * dlls/advapi32/service.c: Peter Schlaile <udbz@rz.uni-karlsruhe.de>
5138         Implemented StartServiceCtrlDispatcherA according to DispatcherW.
5140         * Makefile.in: Make sure we clean dlls/ too.
5142         * dlls/advapi32/service.c:
5143         Michael McCormack <mccormac@aals27.alcatel.com.au>
5144         Implemented OpenSCManagerW, CloseServiceHandle, OpenServiceW, and some
5145         of QueryServiceStatus.
5147         * tools/wrc/parser.y: Eric Pouech <Eric.Pouech@wanadoo.fr>
5148         Added missing ';'.
5150         * tools/wrc/parser.l: Eric Pouech <Eric.Pouech@wanadoo.fr>
5151         Error reporting fix.
5153         * tools/bug_report.pl:
5154         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
5155         Changed default relay line number from 100 to 200.
5157         * dlls/comctl32/toolbar.c, include/commctrl.h:
5158         Eric Pouech <Eric.Pouech@wanadoo.fr>
5159         Added undocumented feature to InsertButtonA.
5160         Added dropdown button support.
5162         * dlls/comctl32/animate.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5163         Fixed play back of uncompressed AVI file.
5164         Fixed exiting conditions.
5166         * graphics/ddraw.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5167         Fixed a crash in IDirectDrawSurface:BltFast.
5169         * dlls/winmm/lolvldrv.c, dlls/winmm/midimap/midimap.c, dlls/winmm/wavemap/wavemap.c:
5170         Eric Pouech <Eric.Pouech@wanadoo.fr>
5171         Fixed forwarding and handling messages directed to the mappers.
5173         * loader/ne/module.c, loader/ne/segment.c, include/module.h:
5174         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5175         Simplified hInstance creation/handling.
5176         Fixes problems with self-loaders creating DGROUP themselves.
5178         * include/wingdi.h, objects/dc.c, relay32/gdi32.spec:
5179         Huw D M Davies <h.davies1@physics.ox.ac.uk>
5180         Add stubs for Get/SetLayout().
5182         * dlls/ole32/ole32.spec, dlls/ole32/storage32.c:
5183         Jim Aston <jima@corel.ca>
5184         Added stub for StgSetTimes.
5186         * dlls/shell32/shlmenu.c:
5187         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
5188         SHFind_InitMenuPopup is supposed to return a pointer.
5190         * dlls/icmp/icmp_main.c:
5191         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5192         u_int[16|32]_t might not be defined.
5194         * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
5195         - fixed crash when adding items with TVI_SORT and wineItem->pszText is
5196           set to LPSTR_TEXTCALLBACK.
5197         - ditto for TREEVIEW_DeleteItem, TREEVIEW_CreateDragImage.
5199 ----------------------------------------------------------------
5200 Mon Nov 15 00:46:30 1999  Alexandre Julliard  <julliard@winehq.com>
5202         * memory/virtual.c: Fixed allocation rounding for MEM_RESERVE.
5204         * server/file.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5205         Fixed hash function.
5207 Sun Nov 14 23:59:01 1999  Alexandre Julliard  <julliard@winehq.com>
5209         * dlls/winmm/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5210         The adwInfo[0] field was no longer used on mmioOpen (may contain file
5211         handle).
5213         * dlls/ole32/ole2stubs.c, dlls/ole32/ole32.spec:
5214         Eric Pouech <Eric.Pouech@wanadoo.fr>
5215         Added stubs for SetErrorInfo, PropVariantClear, PropVariantCopy,
5216         FreePropVariantArray.
5218         * dlls/dsound/dsound_main.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5219         Removed suicide code when playback thread's father dies.
5221         * 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:
5222         Juergen Schmied <juergen.schmied@metronet.de>
5223         - the colums in the shellview are now created depending on the
5224           attributes of the folder object shown
5225         - get all attributes from the shellfolder instead directly from the idlist
5226         - header fields localized (only engl. and german till now)
5227         - small fixes
5229         * dlls/commdlg/cdlg_En.rc, dlls/commdlg/filedlg95.c:
5230         Juergen Schmied <juergen.schmied@metronet.de>
5231         - corrected control positions
5232         - use the icons from comctl32 for the buttons
5234         * relay32/kernel32.spec, relay32/relay386.c, relay32/snoop.c:
5235         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5236         Bugfix: relay/snoop debugging was broken by last patch ...
5238         * server/Makefile.in, server/process.c, server/ptrace.c, server/thread.c, server/thread.h:
5239         Moved ptrace support to ptrace.c. Tried to improve portability.
5241         * server/debugger.c: Bug fixes.
5243         * if1632/relay.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5244         Fixed some unresolved externals on non-Intel archs.
5246         * relay32/snoop.c: Rein Klazes <rklazes@casema.net>
5247         Added missing WINAPI attribute to two forward declarations.
5249         * dlls/icmp/icmp_main.c: Francois Gouget <fgouget@psn.net>
5250         Removed leftover #undefs.
5252         * dlls/winmm/mcicda/mcicda.c:
5253         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
5254         Ignore MCI_OPEN_ELEMENT in CDAUDIO_mciOpen.
5256         * dlls/crtdll/wcstring.c: Marcus Meissner <marcus@jet.franken.de>
5257         Work around glibc bug, that does not handle latin-1 umlauts.
5259 Sat Nov 13 23:54:05 1999  Alexandre Julliard  <julliard@winehq.com>
5261         * 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:
5262         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5263         Adapted to new register function handling.
5265         * tools/build.c, include/stackframe.h, include/winnt.h:
5266         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5267         Modified Win32 register function handling.
5269         * configure, configure.in, dlls/icmp/icmp_main.c, dlls/icmp/ip.h, dlls/icmp/ip_icmp.h, include/config.h.in:
5270         Francois Gouget <fgouget@psn.net>
5271         Use BSD headers for ICMP portability.
5273         * dlls/comctl32/rsrc.rc, dlls/commdlg/cdlg_xx.rc, dlls/shell32/shres.rc:
5274         Juergen Schmied <juergen.schmied@debitel.net>
5275         - inserted markers for the bin2res tool
5276         - reformated hexdump in shres.rc
5278         * documentation/resources, tools/.cvsignore, tools/Makefile.in, tools/bin2res.c:
5279         Juergen Schmied <juergen.schmied@debitel.net>
5280         New tool to convert the binary resources in *.rc files (hexdumps) from
5281         and to a binary.
5283         * 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:
5284         Patrik Stridvall <ps@leissner.se>
5285         Added better missing function emulation.
5287         * 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:
5288         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5289         Made debugger compile and marginally work on non-Intel archs.
5291         * dlls/ntdll/exception.c, include/winnt.h:
5292         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5293         Moved GET_IP macro to winnt.h
5295         * documentation/printing, documentation/psdriver, documentation/psdrv.reg, graphics/psdrv/README:
5296         Huw D M Davies <h.davies1@physics.ox.ac.uk>
5297         Move PostScript driver docs to documentation/ .  Add instructions on
5298         how to use regapi to get information into the registry.  Supply sample
5299         input to regapi.
5301         * dlls/commdlg/cdlg_En.rc, dlls/commdlg/printdlg.c:
5302         Klaas van Gend <klaas@vangend.demon.nl>
5303         Implemented the PrintSetup dialog box for the PrintDlgA.
5305         * dlls/comctl32/propsheet.c: Adrian Thurston <adriant@corel.com>
5306         Added validations for page index before using it.
5308         * dlls/commdlg/filedlg95.c: Adrian Thurston <adriant@corel.com>
5309         - fixed the index of the item chosen in the filter combo box
5310         - added support for the OFN_OVERWRITEPROMPT flag
5311         - fixed positioning of controls in the user-defined templates
5313         * include/server.h, scheduler/process.c, server/process.c, server/request.h, server/trace.c:
5314         Added support for WriteProcessMemory through the server.
5316         * server/mapping.c, server/object.h: Added get_page_size function.
5318 Fri Nov 12 21:39:15 1999  Alexandre Julliard  <julliard@winehq.com>
5320         * server/file.c, server/process.c, server/request.h, server/thread.c, server/thread.h, server/trace.c, include/server.h, scheduler/process.c:
5321         Added support for ReadProcessMemory through the server.
5323         * include/server.h, loader/module.c, scheduler/process.c, server/process.c, server/process.h, server/request.h, server/thread.c, server/trace.c:
5324         Added support for CREATE_SUSPENDED flag in CreateProcess.
5326         * win32/device.c: Ian Schmidt <ischmidt@cfl.rr.com>
5327         Implemented VWin32 VxDCall mechanism and 2 calls.
5329         * dlls/winmm/joystick.c: <jodaman@cegt201.bradley.edu>
5330         Fixed joystick scaling.
5332         * 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:
5333         Gustavo Junior Alves <twinfo@bestway.com.br>
5334         Use constants IDOK and IDCANCEL in .rc files.
5336         * server/thread.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
5337         Portability fix: renamed PTRACE_* into PT_*.
5339         * relay32/kernel32.spec, win32/device.c:
5340         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5341         Allow for buggy apps that call the wrong VxDCall routine.
5343         * dlls/rasapi32/rasapi.c: Gerard Patel <g.patel@wanadoo.fr>
5344         Complete stub for RasEnumEntries by saying we have 0 entries.
5346         * include/debugstr.h, misc/debugstr.c:
5347         Jeremy White <jwhite@codeweavers.com>
5348         Add debugstr_hex_dump to allow display hex dumps of data in any
5349         debugging message.
5351         * server/thread.c:
5352         Added use_ptrace flag to disable ptrace usage. Should eventually be
5353         made into an option.
5355         * 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:
5356         Juergen Schmied <juergen.schmied@debitel.net>
5357         Made the buttons in the filedlg change when selecting a different
5358         view type by the context menu, cleanup.
5360         * dlls/winmm/winmm_Es.rc, dlls/winmm/winmm_res.rc:
5361         Julio Cesar Gazquez <jgazquez@dld.net>
5362         Added Spanish (pure Castillan) MM error string translation.
5364         * dlls/ntdll/Makefile.in, dlls/ntdll/signal_sparc.c:
5365         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5366         Added signal handling for SPARC / Solaris.
5368         * programs/regapi/regapi.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
5369         Comment out explicit call to SHELL_SaveRegistry since winelib programs
5370         now exit properly.  Change several NULLs to '\0's.  Fix some spelling.
5372         * windows/x11drv/event.c: Ove Kaaven <ovek@arcticnet.no>
5373         Fixed XShm completion event leak.
5375         * dlls/winmm/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5376         Fixed recursion count while calling midiStream(Pause|Restart).
5378         * misc/registry.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
5379         Fix save_check_tainted to properly scan the tree so that all tainted
5380         branches get saved.
5382         * dlls/crtdll/crtdll.spec, dlls/crtdll/crtdll_main.c:
5383         Bernd Paysan <bernd.paysan@gmx.de>
5384         Added a stub for setjmp.
5386 Wed Nov 10 20:25:19 1999  Alexandre Julliard  <julliard@winehq.com>
5388         * server/thread.c:
5389         Don't crash when we get a SIGCHLD for a removed thread.
5391         * dlls/icmp/icmp_main.c: Patrik Stridvall <ps@leissner.se>
5392         Solaris compile fixes.
5394         * dlls/ntdll/exception.c, include/winnt.h:
5395         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5396         (Preliminary) CONTEXT structure for SPARC added.
5398         * include/process.h, loader/module.c, scheduler/debugger.c:
5399         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5400         Bugfix: LOAD_DLL_DEBUG_EVENT lpImageName parameter was incorrect.
5402         * memory/virtual.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5403         When decommitting, remap zero pages using MAP_FIXED.
5405         * dlls/ole32/compobj.c: Rein Klazes <rklazes@casema.net>
5406         CoGetClassObject should complain about not being able to do
5407         out-of-process servers *only* if the application doesn't include the
5408         in-process options.
5410         * misc/version.c, controls/edit.c, include/winversion.h:
5411         Rein Klazes <rklazes@casema.net>
5412         Send WM_CTLCOLOREDIT not WM_CTLCOLORSTATIC messages to parent of a
5413         disabled edit control if the application expects a windows version
5414         before WIN95 and NT40.
5416         * include/winbase.h, relay32/kernel32.spec, files/file.c:
5417         Moshe Vainer <moshev@easybase.com>
5418         Stub for GetOverlappedResult.
5420         * 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:
5421         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5422         Determine expected_version of PE buddies from the SubsystemVersion.
5424         * dlls/ntdll/exception.c, include/wine/exception.h, include/winnt.h, win32/except.c:
5425         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
5426         Bugfix: Exception handlers are *not* WINAPI.
5428 Mon Nov  8 05:31:47 1999  Alexandre Julliard  <julliard@winehq.com>
5430         * server/process.c, server/select.c, server/thread.c, server/thread.h:
5431         Preliminary ptrace support.
5433         * memory/virtual.c:
5434         Remap zero-pages when decomitting a page range (based on a patch by
5435         Gerard Patel).
5437         * Makefile.in, scheduler/Makefile.in, scheduler/client.c, server/main.c:
5438         Install the wine server in $(bindir) and exec it from there.
5440 Sun Nov  7 23:59:08 1999  Alexandre Julliard  <julliard@winehq.com>
5442         * server/debugger.c:
5443         Do not free the handles once they have been sent to the client (thanks
5444         to Jeremy White).
5446         * windows/msgbox.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5447         Fixed crash when asked to use strings identified by resource id
5448         instead of pointer.
5450         * windows/dce.c: Jim Aston <jima@corel.ca>
5451         When window class has CS_CLASSDC style we should not remove the DC
5452         when destroying the window.
5454         * dlls/rasapi32/rasapi32.spec, dlls/win32s/w32skrnl.c:
5455         Patrik Stridvall <ps@leissner.se>
5456         Minor fixes.
5458         * 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:
5459         Patrik Stridvall <ps@leissner.se>
5460         Minor fixes and reorganizations.
5462         * dlls/shell32/if_macros.h, include/bit_array.h, include/ntdll.h, include/oleobj.h:
5463         Patrik Stridvall <ps@leissner.se>
5464         Removed obsolete files no longer in use.
5466         * 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:
5467         Ove Kaaven <ovek@arcticnet.no>
5468         DirectX-XShm now waits for the X server to finish the previous frame
5469         before sending another frame down its pipe, avoiding the X server
5470         overload and resulting slowness that used to be.
5472         * 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:
5473         Juergen Schmied <juergen.schmied@debitel.net>
5474         - unified templates for the open and the save dlg
5475         - replaced buttons with a toolbar
5477         * dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, include/wine/obj_shellfolder.h:
5478         Juergen Schmied <juergen.schmied@debitel.net>
5479         - new interface declaration for IShellfolder2
5480         - added this interface to all shell folders
5481         - small fixes to shellview (crash with native comdlg32)
5483         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
5484         Fixed the relocation hack in PE_InitTls. Added some more for the other
5485         pointerfields in the TLS entry. (With testing help from Jussi
5486         Jumppanen <jussij@zeusedit.com>).
5488         * relay32/user32.spec, windows/user.c, include/winuser.h:
5489         Marcus Meissner <marcus@jet.franken.de>
5490         Added ChangeDisplaySettingsExA stub and some flag defines.
5492         * include/console.h: Robert 'Admiral' Coeyman <admiral@corner.net>
5493         Added the hex triplets to the console color definitions.
5495         * 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:
5496         Lionel Ulmer <lionel.ulmer@free.fr>
5497         Added the possibility to have mouse movements reported relative to
5498         Wine's mouse driver.
5500         * 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:
5501         Francois Gouget <fgouget@psn.net>
5502         Added ICMP DLL implementation.
5504         * 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:
5505         Juergen.Schmied@debitel.net
5506         - Bugfix: Styles were evaluated as expressions. The NOT in combination
5507           with style flags was not overwriting the default styles like WS_VISIBLE.
5508           Solved by introducing own rules for parsing styles.
5510         * controls/combo.c: Jim Aston <jima@corel.ca>
5511         Fixed the height of the ComboBox drop list.
5513         * windows/dialog.c: David Grant <davidgra@corel.ca>
5514         Windows sends WM_GETDLGCODE only in response to keyboard messages
5515         (WM_KEYDOWN, WM_CHAR, WM_SYSCHAR).
5517         * include/wine/obj_base.h: Peter Hunnisett <hunnise@nortelnetworks.com>
5518         - Added missing __attribute__ ((com_interface)) for IUnknown with.
5519           ICOM_USE_COM_INTERFACE_ATTRIBUTE
5520         - Small addition to comments surrounding
5521           ICOM_USE_COM_INTERFACE_ATTRIBUTE "option".
5523         * ole/ole2nls.c, if1632/ole2nls.spec:
5524         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
5525         Implementation of RegisterNLSInfoChanged.
5527         * scheduler/critsection.c, windows/queue.c, memory/heap.c:
5528         James Abbatiello <abbeyj@wpi.edu>
5529         Addresses issues with multiple processes accessing non-global critical
5530         sections.
5532         * server/sock.c: Jeremy White <jwhite@codeweavers.com>
5533         Fixed bug in WINSOCK_accept when no event is present.
5535         * dlls/rasapi32/rasapi.c, include/lmcons.h, include/ras.h:
5536         Rein Klazes <rklazes@casema.net>
5537         Added stubs for RasEnumEntriesA and RasGetEntryDialParamsA.
5539         * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/filedlgbrowser.h:
5540         Ulrich Czekalla <ulrichc@corel.ca>
5541         Implementation of custom dialog messages and notifications.
5543         * dlls/comctl32/treeview.c: David Grant <davidgra@corel.ca>
5544         - Proper initialization of cchTextMax field was added for
5545           TVN_GETDISPINFO notification message.
5546         - TVM_SETITEM should update 'mask' field to synchronize it with
5547           current item state.
5549         * graphics/psdrv/ppd.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
5550         If PageSize/InputSlot entry doesn't contain an options translation
5551         string use the option name instead.
5553         * dlls/comctl32/propsheet.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5554         Fixed SetTitleA when string resources were to be loaded.
5556         * dlls/comctl32/listview.c: Pierre Mageau <pierre@macadamian.com>
5557         - Fixed an error for scrolling in Listview (sometimes a column would
5558           not be visible) due to my last checkin.
5559         - Fixed an error for the header control when the Listview is resized with WM_SIZE
5560         - Fixed the scrolling for small and large icon (this broke because of
5561           the use of SB_PAGE in scrollInfo)
5562         - Added a patch made by Noomen Hamza to update the item width when
5563           adding a new item
5565         * server/sock.c: Ove Kaaven <ovek@arcticnet.no>
5566         Handle socket creation errors.
5568         * controls/menu.c: Karl Lessard <karll@corel.com>
5569         When a popupmenu is currently active on the screen, it shouldn't
5570         remove mouse click messages that don't belong to it from the queue.
5572         * windows/x11drv/clipboard.c: Juergen Lock <nox@jelal.kn-bremen.de>
5573         Exec `wineclipsrv' not `wineclipsvr', and don't inherit wine's X
5574         sockets to it (otherwise windows stay around when wine hangs).
5576 Thu Nov  4 02:51:24 1999  Alexandre Julliard  <julliard@winehq.com>
5578         * loader/main.c: Fixed -debugmsg +server.
5580         * scheduler/handle.c:
5581         Added special handling for the stdio handles in CloseHandle.
5583         * server/handle.c:
5584         Made all handles multiple of 4. Fixed semantics for pseudo-handles.
5586         * server/debugger.c:
5587         Free the handles of the event structure in the right process (thanks
5588         to Jeremy White).
5590         * 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:
5591         Peter Hunnisett <hunnise@nortelnetworks.com>
5592         - Added dplayx LibMain for initialization of all dplayx 'global' data
5593         - Added start for global data manipulation
5594         - TODO list updated
5595         - Added some missing header file definitions
5596         - Added the ansi versions of dplay and dplobby
5597         - Fixed invalid macro for IDirectPlay4
5598         - Cleaned up compiler warnings
5599         - More implementation, bug fixes and critical region protection
5601         * windows/x11drv/event.c: Karl Lessard <karll@corel.com>
5602         Never send a WM_CLOSE message  to a popup window.
5604         * windows/x11drv/wnd.c: Karl Lessard <karll@corel.com>
5605         Check if the window is managed before trying to give it focus.
5607         * configure, configure.in: Marcus Meissner <marcus@jet.franken.de>
5608         Enhanced linux joystick api detection slightly.
5610         * windows/x11drv/keyboard.c:
5611         Jaroslaw Piotr Sobieszek <jsobiesz@elka.pw.edu.pl>
5612         Added Polish keyboard support.
5614         * graphics/win16drv/prtdrv.c:
5615         Huw D M Davies <h.davies1@physics.ox.ac.uk>
5616         Add DC_VERSION and DC_TRUETYPE to win16drv DeviceCapabilities.
5618         * graphics/psdrv/ppd.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
5619         Add `Cassette' to PPD -> windows printer-bin mapping.
5621         * memory/string.c: Michael McCormack <mccormac@aals27.alcatel.com.au>
5622         Modified lstrcpynWtoA to put terminating null at end of string, not
5623         end of buffer.
5625         * include/wine/obj_storage.h: Francois Gouget <fgouget@psn.net>
5626         Removed duplicate macro definitions for the IStorage and IStream COM
5627         interfaces.
5629         * windows/defwnd.c: Karl Lessard <karll@corel.com>
5630         Fixed COLOR_MAX definition for new Win32 values.
5632         * objects/gdiobj.c: Ian Schmidt <ischmidt@cfl.rr.com>
5633         Removed unnecessary USER call from GetFontMetrics. Fixes native USER.
5635         * dlls/comctl32/listview.c, include/listview.h:
5636         Ulrich Czekalla <ulrichc@corel.ca>
5637         Set proper item focus on DeleteItem.
5638         Clean up edit label implementation.
5640         * files/drive.c: Peter Schlaile <udbz@rz.uni-karlsruhe.de>
5641         Fixed a long standing (and annoying) typo, that prevented
5642         GetDiskFreeSpaceA from working...
5644         * misc/registry.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5645         Enable safe reading of registry file, even if file is broken.
5647         * win32/newfns.c: Ian Schmidt <ischmidt@cfl.rr.com>
5648         Changed OpenDesktop stub to Win9x behavior for QuickTime 4.
5650 ----------------------------------------------------------------
5651 Sun Oct 31 22:26:35 1999  Alexandre Julliard  <julliard@winehq.com>
5653         * scheduler/client.c: Set close-on-exec flag on server socket.
5655         * DEVELOPERS-HINTS: Eric Pouech <Eric.Pouech@wanadoo.fr>
5656         Added explanation on creating a new DLL.
5658         * misc/version.c: Juergen Schmied <juergen.schmied@debitel.net>
5659         Better version autodetection.
5661         * windows/dialog.c: Ulrich Czekalla <ulrichc@corel.ca>
5662         Implemented support of DS_CONTROL and WS_EX_CONTROLPARENT styles.
5664         * graphics/ddraw.c: Ivan de Saedeleer <Ivands@sympatico.ca>
5665         Fail when LPRECT contains negative values.
5667         * windows/x11drv/event.c: Pierre Mageau <pierre@macadamian.com>
5668         On ConfigureNotify, find the first visible window above the current one.
5670         * debugger/db_disasm.c: Rein Klazes <rklazes@casema.net>
5671         Corrected operand sizes for the "enter" instruction.
5673         * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
5674         PSM_ADDPAGE returns TRUE or FALSE.
5676         * 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:
5677         Eric Pouech <Eric.Pouech@wanadoo.fr>
5678         Made msacm32 really load ACM drivers.
5680         * graphics/painting.c: Jim Aston <jima@corel.ca>
5681         Prevent FillRgn from using a NULL pointer.
5683         * misc/registry.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
5684         Fixed a few problems with RegEnumKey*.
5686         * dlls/commdlg/filedlg95.c: Ulrich Czekalla <ulrichc@corel.ca>
5687         Implementation of user defined templates.
5689         * dlls/ole32/ifs.c: Marcus Meissner <marcus@jet.franken.de>
5690         IMalloc16_Constructor: moved ICOM_VTBL(This) where it belongs.
5692         * controls/static.c: Marcus Meissner <marcus@jet.franken.de>
5693         Do not clear the drawing area for etched static controls.
5694         Replaced our own drawing stuff in etched static controls by DrawEdge.
5696         * dlls/comctl32/listview.c: Pierre Mageau <pierre@macadamian.com>
5697         In report view mode of the listview control, implemented the
5698         horizontal scrollbar functionality.
5700         * windows/mdi.c: Francis Beaudet <francis@macadamian.com>
5701         Fixed a small bug in the behavior of maximized MDI children.
5703         * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
5704         Rewrite of EnumPrinters.
5706         * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
5707         Fill in the hwndFrom field of the NMHDR structure when sending
5708         notifications.
5710         * files/profile.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5711         When reading a profile entry remove trailing quote when there's an
5712         opening one.
5714         * objects/gdiobj.c: Francis Beaudet <francis@macadamian.com>
5715         Return correct height and width for stock fonts in GetObject.
5717         * programs/avitools/aviplay.c: Compile fix.
5719         * programs/wcmd/.cvsignore: Added wmcdrc.h
5721         * dlls/winmm/mmio.c: Ulrich Czekalla <ulrichc@corel.ca>
5722         Added support for the addition and removal of custom I/O preocedures.
5724         * dlls/ole32/compobj.c, dlls/ole32/ole32.spec:
5725         Abey George<abey@macadamian.com>
5726         Implemented ProgIDFromCLSID.
5728         * dlls/comctl32/propsheet.c, dlls/comctl32/rsrc.rc:
5729         Thuy Nguyen <thuy@macadamian.com>
5730         Wizard mode property sheets have a tab control.
5732         * 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:
5733         Eric Pouech <Eric.Pouech@wanadoo.fr>
5734         Added built-in msacm.drv and midimap.drv drivers.
5736         * 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:
5737         Patrik Stridvall <ps@leissner.se>
5738         - Minor fixes and reorganizations.
5739         - Added checks for documentation inconsistencies.
5741         * 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:
5742         Patrik Stridvall <ps@leissner.se>
5743         Added missing configuration #if:s and #includes:s.
5745         * dlls/crtdll/crtdll_main.c, files/dos_fs.c, objects/dcvalues.c, dlls/advapi32/crypt.c:
5746         Patrik Stridvall <ps@leissner.se>
5747         Fixed documentation.
5749         * dlls/winmm/mciwave/Makefile.in: Patrik Stridvall <ps@leissner.se>
5750         Solaris make doesn't like unnecessary \.
5752         * 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:
5753         Francois Gouget <fgouget@psn.net>
5754         Generalized the use of the new ICOM_VFIELD and ICOM_VTBL macros.
5756         * windows/win.c, windows/x11drv/wineclipsrv.c:
5757         Huw D M Davies <h.davies1@physics.ox.ac.uk>
5758         Fixed a couple of compiler warnings.
5760         * dlls/shell32/pidl.c: Pierre Mageau <pierre@macadamian.com>
5761         A crash would occur if the file type in report mode was empty.
5763         * windows/keyboard.c: Lionel Ulmer <lionel.ulmer@free.fr>
5764         Changed the initialisation of the KeyState array.
5766         * misc/lstr.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
5767         Better handling of newlines in FormatMessage*.
5769         * dlls/winmm/wineoss/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5770         Fix (some) bad behavior with buffer underrun.
5772         * dlls/winmm/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
5773         Fixed PlaySound proc for non PCM content.
5775         * dlls/comctl32/treeview.c: Ulrich Czekalla <ulrichc@corel.ca>
5776         - Treeview uses COLOR_WINDOW color instead of clrBk to fill background.
5777         - Treeview: colors returned by TVM_GET**COLOR are mixed up.
5779         * dlls/commdlg/filedlg95.c: Pierre Mageau <pierre@macadamian.com>
5780         Clicking the combo box would cause a crash if it was empty.
5782         * graphics/escape.c, graphics/win16drv/init.c, include/wine/wingdi16.h, misc/printdrv.c:
5783         Huw D M Davies <h.davies1@physics.ox.ac.uk>
5784         It appears that StartDoc sends the STARTDOC escape with the DOCINFO
5785         structure pointed to with the output data parameter.
5787         * graphics/fontengine.c, if1632/gdi.spec:
5788         Huw D M Davies <h.davies1@physics.ox.ac.uk>
5789         Stub for EngineRealizeFontExt (used by the win98 pscript driver).
5791         * dlls/comctl32/tab.c: Noomen Hamza <noomen@macadamian.com>
5792         Selected button within tab control will be painted with the right
5793         color brush.
5795         * dlls/comctl32/propsheet.c: Pierre Mageau <pierre@macadamian.com>
5796         Do not send two PSN_KILLACTIVE messages.
5798         * wine.ini: Marcus Meissner <marcus@jet.franken.de>
5799         ini variables do not like ; comments after them (they are not shell
5800         scripts). Fixed a typo in one of the names.
5802 Mon Oct 25 15:43:36 1999  Alexandre Julliard  <julliard@winehq.com>
5804         * dlls/dplayx/dplay.c, dlls/dplayx/dplobby.c, dlls/ole32/compobj.c, dlls/ole32/ifs.c, include/wine/obj_base.h:
5805         Francois Gouget <fgouget@psn.net>
5806         Added two macros, ICOM_VFIELD and ICOM_VTBL, so that when implementing
5807         a COM interface one never has to name the lpVtbl field explicitly.
5809         * dlls/oleaut32/ole2disp.c:
5810         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
5811         SysAllocStringLen16 needs to handle NULL pointers, too.
5813         * memory/local.c:
5814         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
5815         Bug fix.
5817         * tools/find_debug_channels: Francois Gouget <fgouget@psn.net>
5818         Fixed small typos and slightly outdated comments.
5820         * dlls/shell32/shell32.spec, dlls/shell32/shellord.c:
5821         Ian Schmidt <ischmidt@cfl.rr.com>
5822         Partial implementation of the Shell32 call Win32DeleteFile(), required
5823         by IE5's Explorer.
5825         * 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:
5826         Added dependency on winestub.o
5828 Sun Oct 24 22:13:55 1999  Alexandre Julliard  <julliard@winehq.com>
5830         * 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:
5831         Patrik Stridvall <ps@leissner.se>
5832         - Added missing configuration #if:s and #includes:s.
5833         - Minor configuration related changes.
5835         * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
5836         Made LoadHomeRegistryFiles default to TRUE.
5838         * 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:
5839         Patrik Stridvall <ps@leissner.se>
5840         Made the include files self-sufficient.
5842         * tools/winapi_check/*:
5843         Patrik Stridvall <ps@leissner.se>
5844         - Fixed the long long problem.
5845         - Added configure include consistancy checking.
5846         - Added progress indicator.
5847         - Began splitting up the win16api.dat and win32api.dat files.
5848         - Added various minor checks.
5849         - Minor fixes.
5851         * 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:
5852         Patrik Stridvall <ps@leissner.se>
5853         Added spec file declarations for already implemented functions.
5855         * graphics/path.c, if1632/gdi.spec, objects/clipping.c:
5856         Patrik Stridvall <ps@leissner.se>
5857         Added Win16 variants of existing Win32 functions.
5859         * dlls/ntdll/signal_i386.c: Patrik Stridvall <ps@leissner.se>
5860         Solaris compile fix.
5862         * files/file.c: Gerard Patel <g.patel@wanadoo.fr>
5863         Remove prefixing by a tilde for GetTempFileName 32bits.
5865         * debugger/expr.c: Marcus Meissner <marcus@jet.franken.de>
5866         Added missing include.
5868         * windows/win.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
5869         Warn users to use -the -desktop option together with the native user DLLs.
5871         * loader/resource.c:
5872         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
5873         Return the size of the needed resource when buffer is NULL for LoadString().
5875         * dlls/ole32/clipboard.c, windows/clipboard.c, windows/user.c, windows/x11drv/Makefile.in, windows/x11drv/clipboard.c, windows/x11drv/wineclipsrv.c, wine.ini:
5876         Francis Beaudet <francis@macadamian.com>
5877         Enabled the persistent clipboard server.
5879         * misc/registry.c, wine.ini: Nathaniel <wfilardo@fuse.net>
5880         Improved registry isolation possibilities.
5882         * multimedia/*.c:
5883         Eric Pouech <Eric.Pouech@wanadoo.fr>
5884         Split the multimedia/ directory into dlls/ subdirectories.
5886         * 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:
5887         Gustavo Junior Alves <alves@correionet.com.br>
5888         More Portuguese language support.
5890         * objects/dib.c: Matthew J. Francis <asbel@dial.pipex.com>
5891         Fixed top-down DIB handling in StretchDIBits32().
5893         * include/windowsx.h: Peter Hunnisett <hunnise@nortelnetworks.com>
5894         Added macro definitions for memory allocation.
5896         * graphics/x11drv/xfont.c, include/gdi.h, include/x11font.h, objects/font.c:
5897         Ulrich Czekalla <ulrichc@corel.ca>
5898         Make sure that all calls use the extended structures which are a
5899         superset of the regular structures.
5901         * dlls/comctl32/listview.c: Pierre Mageau <pierre@macadamian.com>
5902         Added the functionality of the thumb track.
5904         * windows/focus.c: Adrian Thurston <adriant@corel.com>
5905         Do not set focus to a disabled window.
5907         * windows/x11drv/keyboard.c: Pierre Mageau <pierre@macadamian.com>
5908         Fixed an entry in the keyboard translation table for Ctrl-Break.
5910         * include/debugdefs.h, scheduler/debugger.c:
5911         Ulrich Czekalla <ulrichc@corel.ca>
5912         New channel 'debugstr' used to print OutputDebugString API calls.
5914         * windows/nonclient.c, windows/x11drv/event.c:
5915         Noomen Hamza <noomen@macadamian.com>
5916         Popup windows will be hidden when we minimize a main frame or shown
5917         when we maximize or restore a minimized main frame.
5919 Sat Oct 23 23:59:47 1999  Alexandre Julliard  <julliard@winehq.com>
5921         * dlls/comctl32/propsheet.c: Ulrich Czekalla <ulrichc@corel.ca>
5922         PropertySheet didn't destroy page dialog's window while removing page.
5924         * dlls/comctl32/listview.c: Pierre Mageau <pierre@macadamian.com>
5925         Update the item width upon a new column in the header control.
5927         * dlls/ntdll/exception.c: Gerard Patel <g.patel@wanadoo.fr>
5928         Reorder parameters to fix position of base reg relative to exception
5929         frame.
5931         * documentation/Makefile.in: Fixed typo.
5933         * include/*.h:
5934         Francois Gouget <fgouget@psn.net>
5935         Define the COM macros even in C++.
5937         * controls/menu.c, windows/mdi.c: Pierre Mageau <pierre@macadamian.com>
5938         Fixed loop with WM_SYSCHAR.
5940         * dlls/comctl32/tooltips.c: Joshua Thielen <thielen@netperson.net>
5941         Fixed tooltips positioning.
5943         * graphics/x11drv/dib.c: Re-applied lost change.
5945         * loader/task.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
5946         Ignore wrong hInstance.
5948         * include/miscemu.h, msdos/int10.c, msdos/interrupts.c:
5949         Robert 'Admiral' Coeyman <admiral@corner.net>
5950         Report non-hercules video. Turned on int 2a.
5952         * include/file.h, include/winbase.h, loader/module.c, files/file.c:
5953         Jim Aston <jima@corel.ca>
5954         Fixed compiling with STRICT.
5956         * dlls/comctl32/propsheet.c: Adrian Thurston <adriant@corel.com>
5957         Proper resource support for dialog title.
5959         * include/dlgs.h: Ulrich Czekalla <ulrichc@corel.ca>
5960         Fixed some wrong defines.
5962         * objects/brush.c: Ulrich Czekalla <ulrichc@corel.ca>
5963         Copy bitmaps properly.
5965         * include/debugger.h, debugger/dbg.y, debugger/hash.c, debugger/msc.c:
5966         Eric Pouech <Eric.Pouech@wanadoo.fr>
5967         Allow loading of modules debug information after first invocation of
5968         debugger.
5970         * dlls/shell32/shellpath.c, dlls/shell32/shlwapi.spec:
5971         Jim Aston <jima@corel.ca>
5972         Added a few stubs.
5974         * include/listview.h, dlls/comctl32/listview.c:
5975         Ulrich Czekalla <ulrichc@corel.ca>
5976         Implementation of edit labels.
5978         * graphics/d3ddevices.c, graphics/d3dtexture.c, graphics/ddraw.c:
5979         Ove Kaaven <ovek@arcticnet.no>
5980         Fixed some anonymous union accesses.
5982         * controls/listbox.c: Abey George <abey@macadamian.com>
5983         Draw the item text from the top of the item rect.
5985         * dlls/comctl32/comctl32undoc.c, dlls/shell32/shlview.c:
5986         Pierre Mageau <pierre@macadamian.com>
5987         Fixed the ascending and descending sort order for the File Dialog.
5989         * dlls/comctl32/propsheet.c: Ulrich Czekalla <ulrichc@corel.ca>
5990         - adds calling application defined callback function once PropertSheet
5991           Dialogbox has been initialized just after creating the tab control
5992         - handle the case when pszCaption specifies a resource instead of a string
5994         * dlls/shell32/pidl.c, dlls/shell32/pidl.h, dlls/shell32/shlfolder.c, dlls/shell32/shv_bg_cmenu.c:
5995         Juergen Schmied <juergen.schmied@metronet.de>
5996         - removed all unnecessary "winapi" from internal _IL* functions
5997         - better parameter checking for shellfolder
5998         - removed dead code from shv_bg_contextmenu
6000         * graphics/ddraw.c, graphics/vga.c, include/ddraw.h:
6001         Jim Aston <jima@corel.ca>
6002         Added another anonymous union using the DUMMYUNIONNAME style.
6004         * dlls/comctl32/listview.c: Ulrich Czekalla <ulrichc@corel.ca>
6005         Properly copy text into user supplied buffer.
6007         * 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:
6008         Ove Kaaven <ovek@arcticnet.no>
6009         Winsock rewrite. Sockets are now proper win32 handles.
6010         Internal structures are now really internal.
6012         * dlls/comctl32/tab.c: Ulrich Czekalla <ulrichc@corel.ca>
6013         Tab control doesn't refresh tab area on TCM_SETCURSEL.
6015         * dlls/shell32/shellord.c, dlls/shell32/shlwapi.spec:
6016         Ulrich Czekalla <ulrichc@corel.ca>
6017         Implemented StrRChrA.
6019         * debugger/dbg.y, debugger/debug.l, debugger/expr.c, include/debugger.h:
6020         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6021         Bugfix: Perform proper process shutdown on 'quit' and error.
6023         * dlls/advapi32/security.c: Gerard Patel <g.patel@wanadoo.fr>
6024         Stub OpenThreadToken & OpenProcessToken for failure in Win9x mode.
6026         * include/winuser.h: Jim Aston <jima@corel.ca>
6027         Fixed a small typo.
6029         * windows/dialog.c: Adrian Thurston <adriant@corel.com>
6030         Protect against wrong return value from WM_INITDIALOG.
6032         * graphics/x11drv/bitmap.c: Francis Beaudet <francis@macadamian.com>
6033         Removed an illegal character.
6035         * dlls/shell32/shell32_main.c: Ian Schmidt <ischmidt@cfl.rr.com>
6036         Now inits the policy cache when shell32 is first instantiated.
6037         Matches Windoze behavior.
6039         * dlls/shell32/Makefile.in, dlls/shell32/shellord.c, dlls/shell32/shpolicy.c, dlls/shell32/shpolicy.h:
6040         Ian Schmidt <ischmidt@cfl.rr.com>
6041         Real implementation of SHRestricted(), clarified SHInitRestricted()'s
6042         role a little, added policy data table.
6044         * dlls/ole32/ifs.c: Marcus Meissner <marcus@jet.franken.de>
6045         Use segmented lpvtbl pointer for IMalloc16 interface, not linear one.
6047         * windows/x11drv/mouse.c: Francis Beaudet <francis@macadamian.com>
6048         Replaced a X call with a TSX call in XDRV_MOUSE_SetCursor().
6050         * dlls/comctl32/rsrc.rc: Ulrich Czekalla <ybicubuk@umail.corel.com>
6051         The property sheet dialog needs flag WS_VISIBLE.
6053         * dlls/commdlg/filedlg95.c: Pierre Mageau <pierre@macadamian.com>
6054         Set the default view button to List in the FileDialog.
6056         * loader/ne/module.c:
6057         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6058         Bugfix: don't use GetModuleHandle16 in LoadModule16/NE_CreateProcess.
6060         * debugger/types.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6061         Fixed potential crash in string variable printing.
6063         * dlls/comctl32/toolbar.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6064         Added WM_GETFONT support.
6066         * include/main.h, loader/main.c, miscemu/main.c, scheduler/process.c:
6067         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6068         Bugfix: don't call ExitProcess() before SYSLEVEL_Init().
6070         * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6071         Fixed some bugs (mmioOpen with 16/32 bit strangeness, mmioAscend &
6072         mmioDescend offset and alignment issues).
6074         * windows/clipboard.c: Ulrich Czekalla <ulrichc@corel.ca>
6075         We are supposed to delete the palette object with the DeleteObject
6076         function.
6078         * dlls/comctl32/listview.c: Noomen Hamza <noomen@macadamian.com>
6079         Listview items will be drawn with the right item dimensions.
6081         * graphics/psdrv/text.c: Luc Tourangeau <luc@macadamian.com>
6082         Some small corrections to the ExtTextOut function.
6084         * dlls/ole32/ole2.c: Francis Beaudet <francis@macadamian.com>
6085         Make sure that the drop effect of a DnD operation is set to
6086         DROPEFFECT_NONE if the user cancelled the operation.
6088         * dlls/comctl32/animate.c, include/animate.h:
6089         Eric Pouech <Eric.Pouech@wanadoo.fr>
6090         First working version.
6092         * multimedia/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6093         Added the mute capability to most control lines.
6095         * windows/win.c: Rein Klazes <rklazes@casema.net>
6096         Use the module handle, if CreateWindowEx is called with
6097         hInstance==NULL.
6099         * include/wine/undocshell.h: Marcus Meissner <marcus@jet.franken.de>
6100         Added missing prototypes for StrRetToBuf(A|W).
6102 Wed Oct 13 16:17:23 1999  Alexandre Julliard  <julliard@winehq.com>
6104         * programs/clock/.cvsignore, programs/notepad/.cvsignore, programs/progman/.cvsignore:
6105         Added Pt.s.
6107         * objects/dib.c: Backed out previous change (breaks with metafiles).
6109         * server/Makefile.in, server/request.h, server/sock.c, server/trace.c, include/server.h, include/winsock.h:
6110         Ove Kaaven <ovek@arcticnet.no>
6111         Added socket interface to wineserver.
6113         * loader/loadorder.c, loader/main.c, miscemu/main.c, wine.ini:
6114         Eric Pouech <Eric.Pouech@wanadoo.fr>
6115         Correct filename for kernel module is KRNL386.EXE.
6117         * dlls/winspool/winspool.spec, dlls/winmm/wineoss/wineoss.spec:
6118         Eric Pouech <Eric.Pouech@wanadoo.fr>
6119         Added missing (and now required) filename directive.
6121         * tools/build.c, include/builtin32.h:
6122         Eric Pouech <Eric.Pouech@wanadoo.fr>
6123         Added filename to 32 bit builtin module descriptors.
6125         * if1632/builtin.c, relay32/builtin32.c:
6126         Eric Pouech <Eric.Pouech@wanadoo.fr>
6127         Fix loading of modules: now search key is module's filename, not
6128         module's name.
6130         * dlls/comctl32/propsheet.c, dlls/comctl32/tab.c:
6131         Pierre Mageau <pierre@macadamian.com>
6132         When an error occurred in a property sheet because of invalid data,
6133         clicking on another tab, would activate the new tab but keep the
6134         original property sheet.
6136         * 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:
6137         Juergen Schmied <juergen.schmied@metronet.de>
6138         - implemented sorting the listview by clicking on the column header
6139         - implemented the context menu entrys for sorting
6140         - some more functions to gather data form pidls
6142         * dlls/commdlg/cdlg.h, dlls/commdlg/cdlg32.c, dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c:
6143         Juergen Schmied <juergen.schmied@metronet.de>
6144         Removed linking by GetProcAddress for StrRetToBuf sinc not all
6145         versions of shlwapi exporting this function.
6147         * loader/module.c: Chris Morgan <cmorgan@wpi.edu>
6148         James Abbatiello <abbeyj@wpi.edu>
6149         Removes extraneous comparison of data pointed to by the relocation
6150         offset when no relocation entries exist.
6152         * if1632/wprocs.spec, loader/ne/module.c:
6153         Marcus Meissner <Marcus.Meissner@lst.de>
6154         WPROCS.ENTRYADDRPROC needs to return something in CX too (fixes
6155         BLINKER selfextracting executables).
6157         * windows/dialog.c: Abey George <abey@macadamian.com>
6158         Changed EndDialog to behave like as in Windows.
6159         Call SetWindowPos instead of ShowWindow in EndDialog.
6161         * windows/winpos.c: Abey George <abey@macadamian.com>
6162         Changed WINPOS_CanActivate to not to consider WS_VISIBLE style.
6163         Code for activating and setting focus to other windows when a window
6164         is hidden, is moved to ShowWindow from SetWindowPos.
6165         Activate the top level window if it's not active in ShowWindow(SW_SHOW).
6167         * graphics/x11drv/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6168         Fixed X11DRV_DIB_SetImageBits when called for RLE encoded dibs.
6170         * objects/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6171         Optimized StretchDIBits to call SetDIBitsToDevice (when src & dst
6172         dimensions are equal).
6174         * programs/notepad/Makefile.in, programs/notepad/Pt.rc, programs/progman/Makefile.in, programs/progman/Pt.rc, programs/clock/Makefile.in, programs/clock/Pt.rc:
6175         Gustavo Junior Alves <alves@correionet.com.br>
6176         Added Portuguese language support.
6178         * dlls/avifil32/avifile.c, dlls/dplayx/dplay.c, dlls/dplayx/dplobby.c, dlls/oleaut32/typelib.c, dlls/shell32/brsfolder.c, dlls/shell32/shellord.c:
6179         Francois Gouget <fgouget@psn.net>
6180         Use the COM macros rather than directly accessing the lpvtbl field.
6182         * include/wine/winuser16.h, misc/lstr.c, if1632/user.spec:
6183         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
6184         Use LoadString16 for FormatMessage16 and handle
6185         FORMAT_MESSAGE_ALLOCATE_BUFFER flag.
6187         * graphics/psdrv/text.c: Luc Tourangeau <luc@macadamian.com>
6188         Some adjustments to ExtTextOut.
6190         * include/psdrv.h, graphics/psdrv/clipping.c, graphics/psdrv/init.c, graphics/psdrv/ps.c:
6191         Stephane Lussier <stephane@macadamian.com>
6192         Fixed the clipping for the postscript driver and turned it on (by setting
6193         PSDRV_SetDeviceClipping in the function table).
6195         * files/drive.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
6196         Account for the trailing NULL in GetLogicalDriveStringsA.
6198         * include/wine/obj_oleaut.h: Francois Gouget <fgouget@psn.net>
6199         Fixed a typo in a function declaration.
6201         * windows/x11drv/keyboard.c: Zoltan Kovacs <oritele@alarmix.net>
6202         Added Hungarian keyboard support.
6204         * windows/mdi.c, windows/winpos.c: Thuy Nguyen <thuy@macadamian.com>
6205         We have to activate MDI child windows.
6207         * dlls/commdlg/filedlg.c:
6208         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
6209         Use Get|SetPropA to store lParam to retrieve the OPENFILENAME16 for a
6210         hWnd.
6212         * graphics/x11drv/graphics.c: Rein Klazes <rklazes@casema.net>
6213         Correct usage of a scratch array in X11DRV_PolyBezier.
6215         * controls/combo.c: Gerard Patel <g.patel@wanadoo.fr>
6216         Make WM_GETTEXTLENGTH return length for dropdownlist combos.
6218         * controls/button.c: Francois Boisvert <francois@macadamian.com>
6219         Removed FillRect in the ownerdrawn button procedure.
6221         * windows/x11drv/event.c: Abey George <abey@macadamian.com>
6222         Make sure the Focus Out window is still the Foreground window before
6223         doing SetForegroundWindow(0) in Event_FocusOut.
6225         * graphics/x11drv/palette.c: Chris Morgan <cmorgan@wpi.edu>
6226         James Abbatiello <abbeyj@wpi.edu>
6227         Fixes problems with color drift when switching to/from
6228         logical/physical colors.
6230         * dlls/comctl32/header.c: Thuy Nguyen <thuy@macadamian.com>
6231         Mouse position is signed.
6233         * windows/syscolor.c: Noomen Hamza <noomen@macadamian.com>
6234         Set the COLOR_3DLIGHT system color to the right window default value.
6236         * loader/pe_image.c: Marcus Meissner <Marcus.Meissner@caldera.de>
6237         Small hack to check if we need to relocate the TLS directory or not
6238         (some seem to need this pointer relocateable, some already do relocate
6239         it by themselves).
6241         * Make.rules.in: Marcus Meissner <Marcus.Meissner@caldera.de>
6242         Relink subdirectory objects on Makefile.in/Make.rules.in change.
6244         * dlls/comctl32/propsheet.c: Marcus Meissner <Marcus.Meissner@lst.de>
6245         Check for NULL ptr in Propsheet_RemovePage (Xing DVD Player).
6247         * multimedia/dsound.c: Marcus Meissner <Marcus.Meissner@lst.de>
6248         Don't ref NULL ptrs in debug.
6250         * windows/dinput.c: Marcus Meissner <Marcus.Meissner@lst.de>
6251         If the joydevice is not present, do not create a DirectInputDevice.
6253         * dlls/commdlg/commdlg.spec, dlls/commdlg/printdlg.c, include/commdlg.h:
6254         Huw D M Davies <h.davies1@physics.ox.ac.uk>
6255         Map PrintDlg16 to PrintDlgA.
6257         * dlls/shell32/shlmenu.c: Juergen Schmied <juergen.schmied@metronet.de>
6258         Small fixes.
6260         * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
6261         Made TrackPopupMenu with TPM_RETURNCMD returning the id instead of
6262         true.
6264         * dlls/comctl32/treeview.c: Ulrich Czekalla <ulrichc@corel.ca>
6265         Prevent self referencing next pointer during insert.
6267         * ole/nls/fra.nls: Eric Pouech <Eric.Pouech@wanadoo.fr>
6268         Added some missing definitions.
6270         * multimedia/winmm.rc, multimedia/winmm_Nl.rc:
6271         Klaas van Gend <klaas@vangend.demon.nl>
6272         Added Dutch to the languages supported by MCI.
6274         * documentation/status/internationalisation:
6275         Klaas van Gend <klaas@vangend.demon.nl>
6276         Updated status of internationalisation.
6278         * loader/pe_image.c:
6279         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6280         Bugfix: *Don't* resolve PE imports if asked not to ...
6282         * misc/ddeml.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6283         Bugfix: DdeNameService was broken.
6285         * loader/ne/module.c:
6286         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6287         Bugfix: When loading an executable module fails, don't perform module
6288         cleanup before the corresponding task is destroyed.
6290         * dlls/commdlg/cdlg_En.rc, dlls/commdlg/cdlg_xx.rc:
6291         Klaas van Gend <klaas@vangend.demon.nl>
6292         Moved bitmap resource to language-independent resource file.
6294         * misc/version.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
6295         Added warning for future VERSION_GetVersion() (mis-)users and made
6296         OSVERSIONINFO warning more detailed.
6298         * dlls/oleaut32/oleaut.c, dlls/oleaut32/oleaut32.spec:
6299         Marcus Meissner <Marcus.Meissner@caldera.de>
6300         Added stubs for RevokeActiveObject, GetActiveObject, fixed
6301         RegisterActiveObject stub argtypes.
6303         * windows/x11drv/keyboard.c:
6304         Marcus Meissner <Marcus.Meissner@caldera.de>
6305         Added german keyboard layout with "nodeadkeys" option enabled (just to
6306         apostrophes are switched).
6308         * dlls/msvideo/msvideo.spec, dlls/msvideo/msvideo_main.c:
6309         Marcus Meissner <Marcus.Meissner@caldera.de>
6310         Stub for VideoCapDriverDescAndVer.
6312         * msdos/int21.c: Marcus Meissner <Marcus.Meissner@caldera.de>
6313         Replicate CreateDirectory() LastError workaround for the LFN part.
6315         * misc/registry.c: Marcus Meissner <Marcus.Meissner@caldera.de>
6316         Also escape characters >=0x80 within the wineregistry savefile.
6318         * dlls/wnaspi32/winaspi32.c:
6319         Marcus Meissner <Marcus.Meissner@caldera.de>
6320         Don't use malloc/free in winaspi32.
6322         * graphics/ddraw.c: Marcus Meissner <Marcus.Meissner@caldera.de>
6323         Use 1 macro for rgbbitdepth -> byte determination.
6324         xshm/image creation now uses 1/8 of the space for every image.
6326         * relay32/user32.spec: Marcus Meissner <Marcus.Meissner@caldera.de>
6327         Replaced double ChangeDisplaySettingsA by (Ex)[AW].
6329 Wed Sep 29 12:16:16 1999  Alexandre Julliard  <julliard@winehq.com>
6331         * if1632/builtin.c, loader/module.c, loader/ne/module.c:
6332         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6333         Bugfix: Don't call GetVersionExA too early, to avoid breaking
6334         automatic emulated Windows version detection.
6336         * dlls/oleaut32/typelib.c, include/oleauto.h, dlls/oleaut32/oleaut32.spec:
6337         Rein Klazes <rklazes@casema.net>
6338         First implementation of LoadTypeLibEx().
6340         * if1632/mmsystem.spec, multimedia/mmsystem.c:
6341         Marcus Meissner <marcus@jet.franken.de>
6342         Added stub for WMMMIDIRUNONCE called by midimap.drv.
6344         * misc/winsock.c: Marcus Meissner <marcus@jet.franken.de>
6345         Set refcounter to 1 on initial init or WSAStartup/WSAStartup with
6346         following WSACleanup will already free the structures.
6348         * multimedia/dsound.c: Marcus Meissner <marcus@jet.franken.de>
6349         Create DirectSound object even without sounddevice. Games can be
6350         played without sound, but not without DirectSound object (tested with
6351         Monkey Island 3).
6353         * 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:
6354         Patrik Stridvall <ps@leissner.se>
6355         Fixed some of the issues reported by winapi-check, by adding arguments
6356         to varargs.
6358         * Make.rules.in, Makefile.in: Patrik Stridvall <ps@leissner.se>
6359         Added ability to call winapi_check from the Makefiles.
6361         * msdos/dpmi.c: Patrik Stridvall <ps@leissner.se>
6362         Modification due to problems with winapi-check.
6364         * 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:
6365         Patrik Stridvall <ps@leissner.se>
6366         - Adapted to changes in Wine.
6367         - Minor improvements.
6369 Tue Sep 28 16:40:07 1999  Alexandre Julliard  <julliard@winehq.com>
6371         * server/event.c, server/object.h:
6372         Made event manipulation routines public.
6374         * 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:
6375         Peter Hunnisett <hunnise@nortelnetworks.com>
6376         - Moved dplay and dplayx to a proper home in the dlls directory.
6377         - Implemented new DirectPlay4 and DirectPlayLobby3 interfaces.
6378         - Implemented a class factory for dplay and dplobby. COM interfaces
6379           now work for dp and dpl.
6380         - Added a few more entries to dplayx.spec files. How do you find the
6381           ordinals? I just guessed :(
6382         - Seperated DirectPlay and DirectPlayLobby implementation into separate files.
6383         - Included some missing header file definitions.
6384         - Implemented the dplay dll in terms of the dplayx dll. I haven't
6385           tested it so it may not work...
6386         - A few bug fixes and a little new implementatioe.n
6387         - Updated document with a more detailed implementation plan.
6389         * windows/win.c: Noomen Hamza <noomen@macadamian.com>
6390         Rewrite the ShowOwnedPopups function with a safety algorithm.
6392         * controls/menu.c: Karl Lessard <ybicubuk@umail.corel.com>
6393         Make ExecFocusedItem return -1 on failure.
6395         * graphics/ddraw.c, multimedia/dsound.c:
6396         Peter Hunnisett <hunnise@nortelnetworks.com>
6397         - Changed return code for failure on *_DllGetClassObject to
6398           CLASS_E_CLASSNOTAVAILABLE from E_NOTAVAILABLE as documented.
6399         - Replaced memcmps with equivalent IsEqualCLSID or IsEqualGUID macros.
6400         - Changed "return 0;" with S_OK or DS_OK as appropriate.
6402         * dlls/ntdll/signal_i386.c:
6403         Support TRAP_sig for FreeBSD (with the help of Juergen Lock).
6405         * loader/module.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
6406         Remember the allocated string to free it.
6408         * controls/menu.c: Gerard Patel <g.patel@wanadoo.fr>
6409         Force recalculation of menu when calling InsertMenuItem.
6411         * dlls/shell32/shell32.spec, dlls/shell32/shellord.c:
6412         Ian Schmidt <ischmidt@cfl.rr.com>
6413         Implementation of 2 Win98 by-ordinal SHELL32 routines.  Helps Win98
6414         Explorer work better.
6416         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6417         Fixed typo in hDrv for sending message.
6419 Mon Sep 27 13:38:57 1999  Alexandre Julliard  <julliard@winehq.com>
6421         * include/mmddk.h, multimedia/mci.c, multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcicda.c, multimedia/mcimidi.c, multimedia/mciwave.c:
6422         Eric Pouech <Eric.Pouech@wanadoo.fr>
6423         Removed last dependancies between MCI drivers and WINMM/MMSYSTEM
6424         DLLs.
6426         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6427         Got rid of hack on WAVEHDR's & MIDIHDR's reserved field for 16/32 bit
6428         discrimination.
6429         Fixed a few segptr/linear address bugs in WAVEHDR/MIDIHDR handling.
6431         * multimedia/mixer.c, multimedia/mmaux.c:
6432         Eric Pouech <Eric.Pouech@wanadoo.fr>
6433         Check for OSS driver presence and return error accordingly.
6435         * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6436         Got rid of hack on MIDHDR's reserved field for 16/32 bit
6437         discrimination.
6439         * multimedia/lolvldrv.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6440         Fixed crash with mapper loading.
6441         Got rid of hack on WAVEHDR's reserved field for 16/32 bit
6442         discrimination.
6444         * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6445         Got rid of hack on WAVEHDR's reserved field for 16/32 bit
6446         discrimination.
6448         * documentation/wine.texinfo: Eric Pouech <Eric.Pouech@wanadoo.fr>
6449         Typo correction.
6451         * loader/libres.c: Ulrich Czekalla <ulrichc@corel.ca>
6452         Fix integer based resource id assumption.
6453         Add support for string based type ids.
6455         * include/winsock2.h: Ove Kaaven <ovek@arcticnet.no>
6456         Added some basic Winsock2 definitions.
6458         * server/object.h, server/select.c: Ove Kaaven <ovek@arcticnet.no>
6459         Added EXCEPT_EVENT to wineserver select loop.
6461         * files/dos_fs.c: Peter Ganten <ganten@uni-bremen.de>
6462         Fix for VFAT_IOCTL_READDIR_BOTH.
6464         * dlls/wing/wing_main.c: Peter Ganten <ganten@uni-bremen.de>
6465         Small wing enhancement.
6467         * controls/edit.c: Stephane Lussier <stephane@macadamian.com>
6468         Return key should not be ignored in multiline edit even if
6469         ES_WANTRETURN flag isn't set.
6471         * include/gdi.h, objects/gdiobj.c:
6472         Francis Beaudet <francis@macadamian.com>
6473         DPtoLP needs to round the result.
6474         Fixed MulDiv to deal better with negative numbers.
6476         * windows/painting.c: Francis Beaudet <francis@macadamian.com>
6477         rcPaint has to be returned in logical coordinates but was intersected
6478         with a client rectangle in device coordinates.
6480         * objects/region.c: Richard Cohen <richard@jubjub.demon.co.uk>
6481         Fixed GetRandomRgn.
6483         * files/drive.c: Abey George <abey@macadamian.com>
6484         Made GetCurrentDirectory return long name of the current directory.
6486         * include/button.h, controls/button.c: Rein Klazes <rklazes@casema.net>
6487         Use an extra bit in the button status byte to flag whether the
6488         DefButtonWndProc should process the WM_LBUTTONUP message.
6490         * 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:
6491         Moved all signal support to a new platform-specific file.
6492         Make use of the per-thread signal stack (Juergen Lock).
6493         Fixed %fs in signal handler for non FS_sig case (Ulrich Weigand).
6495 ----------------------------------------------------------------
6496 Thu Sep 23 16:14:44 1999  Alexandre Julliard  <julliard@winehq.com>
6498         * Makefile.in, windows/x11drv/.cvsignore, windows/x11drv/Makefile.in, windows/x11drv/wineclipsrv.c:
6499         Noel Borthwick <noel@macadamian.com>
6500         Added clipboard server.
6502         * 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:
6503         Patrik Stridvall <ps@leissner.se>
6504         Made a new improved version of winapi-check in perl.
6506         * msdos/int21.c:
6507         Implemented uppercasing functions (based on a patch by Robert
6508         'Admiral' Coeyman).
6510         * 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:
6511         Patrik Stridvall <ps@leissner.se>
6512         Fixed some of the issues reported by winapi-check.
6514         * misc/comm.c: Patrik Stridvall <ps@leissner.se>
6515         Modification due to problems with winapi-check.
6517         * windows/x11drv/event.c: Noomen Hamza <noomen@macadamian.com>
6518         WS_POPUP windows (excluding the WS_POPUPWINDOW windows) should be
6519         closed after loosing the focus.
6521         * objects/dib.c: Francois Boisvert <francois@macadamian.com>
6522         CreateDIBitmap creates a monochrome bitmap only when the first color of the
6523         colormap is black followed by white. Otherwise it creates a color bitmap.
6525         * windows/defwnd.c, windows/nonclient.c:
6526         Noomen Hamza <noomen@macadamian.com>
6527         Non active window should be activated when it gets any
6528         client/non-client double/single left/medium/right mouse click(s).
6530 Wed Sep 22 16:53:54 1999  Alexandre Julliard  <julliard@winehq.com>
6532         * relay32/builtin32.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6533         Added WINEOSS descriptor.
6535         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6536         MMSYSTEM_GetIData() now dies when no iData is present
6537         Better error recovery when the process attachment fails
6538         PlaySound (and helper functions) now use the regular waveOutXXX (instead of wodMessage)
6539         Moved handling of hack for differenciating between 16 and 32 bit callback to lolvldrv.c
6540         Makes use of new lolvldrv.c interfaces
6542         * multimedia/.cvsignore, multimedia/Makefile.in, multimedia/lolvldrv.c, multimedia/oss.c, multimedia/oss.h, multimedia/winemm.h:
6543         Eric Pouech <Eric.Pouech@wanadoo.fr>
6544         Added lolvldrv.c and oss.c.
6545         Thunks to 16 bit are now generated for the MMSYSTEM module.
6547         * 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:
6548         Eric Pouech <Eric.Pouech@wanadoo.fr>
6549         Added dlls/winmm and dlls/winmm/wineoss directories.
6551         * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6552         No longer checking for correct iData in code.
6554         * relay32/winmm.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
6555         Added missing DriverCallBack function.
6557         * if1632/mmsystem.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
6558         All headers (wave and midi functions) are now seen as segptr.
6559         Added stub for joyGetPosEx16().
6561         * include/mmsystem.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
6562         Added some missing defines.
6564         * include/mmddk.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
6565         Now using the same structs for low-level drivers as Windows do.
6567         * multimedia/audio.c, multimedia/mixer.c, multimedia/mmaux.c:
6568         Eric Pouech <Eric.Pouech@wanadoo.fr>
6569         Make it (almost) 32 bit only.
6570         Reflected creation of WINEOSS module.
6572         * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6573         Make it (almost) 32 bit only.
6574         Reflected creation of WINEOSS module.
6575         No longer using ERR when no MIDI card is present.
6577         * multimedia/joystick.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6578         Added stub for joyGetPosEx16().
6580         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6581         No longer checking for correct iData in code.
6582         Added look-up tables to command tables (speeds up queries).
6584         * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6585         Now using WAVEFORMATEX instead of PCMWAVEFORMAT.
6587         * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6588         Now using modReset() instead of tweaking MIDI controls.
6590         * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6591         Fixed returned type upon open.
6592         Fixed some bogus error checking.
6594         * multimedia/mcianim.c, multimedia/mciavi.c:
6595         Eric Pouech <Eric.Pouech@wanadoo.fr>
6596         Fixed returned type upon open.
6598         * dlls/ntdll/exception.c: Juergen Schmied <juergen.schmied@metronet.de>
6599         Do not set EH_NONCONTINUABLE.
6601         * programs/osversioncheck/.cvsignore, programs/osversioncheck/ChangeLog, programs/osversioncheck/Makefile.in, programs/osversioncheck/osversioncheck.c, configure, configure.in, programs/Makefile.in:
6602         Morten Eriksen <mortene@sim.no>
6603         Added simple console mode example program which lists information
6604         about the version of Windows we're currently running on.
6606         * loader/module.c: Fixed memory allocation bug.
6608         * windows/x11drv/event.c: Gerard Patel <g.patel@wanadoo.fr>
6609         Fix infinite loop with glastXFocusWindow.
6611         * dlls/comctl32/imagelist.c: Stephane Lussier <stephane@macadamian.com>
6612         Allow creation of empty imagelist.
6614         * objects/palette.c, relay32/gdi32.spec:
6615         Ian Schmidt <ischmidt@cfl.rr.com>
6616         Added partial implementation of GetICMProfileA, required by Paint Shop
6617         Pro 5.
6619         * controls/menu.c: Abey George <abey@macadamian.com>
6620         Don't send WM_ENTERMENULOOP, WM_INITMENU & WM_INITMENUPOPUP messages
6621         when TPM_NONOTIFY flag is set in TrackPopupMenu.
6623         * misc/winsock.c: David Luyer <luyer@ucs.uwa.edu.au>
6624         getpeername() and getsockname() return errors in errno not h_errno.
6626 Mon Sep 20 18:52:06 1999  Alexandre Julliard  <julliard@winehq.com>
6628         * dlls/commdlg/filedlgbrowser.c, dlls/commdlg/printdlg.c, include/builtin16.h, misc/registry.c, objects/cursoricon.c, tools/build.c:
6629         Patrik Stridvall <ps@leissner.se>
6630         Fixed ANSI C violations.
6632         * windows/keyboard.c, windows/mouse.c, if1632/keyboard.spec, if1632/mouse.spec, windows/input.c:
6633         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6634         Keyboard/mouse event proc thunk creation moved out of if1632/thunk.c.
6636         * if1632/kernel.spec, include/task.h, loader/.cvsignore, loader/Makefile.in, loader/ne/module.c, loader/ne/segment.c, loader/task.c:
6637         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6638         Don't create thunk for task signal proc, call it directly.
6640         * if1632/gdi.spec, include/gdi.h, objects/.cvsignore, objects/Makefile.in, objects/clipping.c, objects/dc.c, windows/dce.c:
6641         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6642         DC hook proc thunk management simplified.
6644         * misc/system.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6645         System timer proc thunk creation moved out of if1632/thunk.c.
6647         * scheduler/thread.c:
6648         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6649         Don't create thunk for CreateThread16 proc, call it directly.
6651         * windows/.cvsignore, windows/Makefile.in, windows/hook.c, dlls/shell32/shell.c, if1632/user.spec, include/hook.h:
6652         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6653         Windows hook proc thunk management simplified.
6655         * include/callback.h, if1632/thunk.c:
6656         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6657         Modified THUNK_Alloc so as to avoid 32->16->32 calling sequences.
6658         Removed persistent thunk creation routines.
6660         * 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:
6661         Lionel Ulmer <lionel.ulmer@free.fr>
6662         Added the possibility to use DGA 2.0.
6664         * winedefault.reg: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6665         Added HKEY_LOCAL_MACHINE\...\ProgramFilesDir registry key.
6667         * dlls/comctl32/commctrl.c: Dennis Borklund <dennisb@cs.chalmers.se>
6668         It's no error to send a WM_COMMAND to MenuHelp.
6670         * files/file.c: Francois Boisvert<francois@macadamian.com>
6671         CreateFileA returns HFILE_ERROR when the filename contains a wild card.
6673         * controls/static.c: Francis Beaudet <francis@macadamian.com>
6674         Fixed display bug in the static control.
6676         * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
6677         Message removed when menu tracking finish on a WM_LBUTTONDOWN.
6679         * 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:
6680         Noel Borthwick <noel@macadamian.com>
6681         - Add clipboard support for copying/pasting bitmaps or Pixmaps between Wine
6682           and native Linux applications.
6683         - Respond to the MULTIPLE selection request target when Wine is the
6684           selection owner.
6685         - Relax type checking for TARGETS selection.
6687         * if1632/builtin.c, loader/module.c:
6688         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6689         Set 'expected_version' of built-in and dummy modules according to
6690         emulated Windows version.
6692         * if1632/relay.c, loader/main.c:
6693         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6694         Make CallTo16 return stub segment owned by KERNEL.
6696         * include/wine/winbase16.h, loader/task.c:
6697         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6698         Bugfix: Improved GetCodeHandle16 / GetCodeInfo16.
6700         * ole/nls/sve.nls: Dennis Bjorklund <dennisb@cs.chalmers.se>
6701         Added some values that were missing in the Swedish nls file.
6703 Sun Sep 19 18:58:16 1999  Alexandre Julliard  <julliard@winehq.com>
6705         * graphics/x11drv/dib.c:
6706         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6707         Bugfix: create DDB in X11DRV_DIB_GetDIBits if necessary.
6709         * dlls/ole32/ole32.spec: Juergen Schmied <juergen.schmied@metronet.de>
6710         Added missing export.
6712         * objects/cursoricon.c: Juergen Schmied <juergen.schmied@metronet.de>
6713         Fixed crash when loading *.ani files.
6715         * ole/*, dlls/ole32/*, dlls/oleaut32/*, dlls/olecli/*, dlls/oledlg/*:
6716         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6717         Moved bulk of OLE implementation to dlls/ subdirectories.
6719         * controls/menu.c: Dennis Björklund <dennisb@cs.chalmers.se>
6720         Send correct WM_MENUSELECT when menu closes.
6722         * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/shell32/shres.rc:
6723         Francois Boisvert <francois@macadamian.com>
6724         Added small feature in the file dialog.
6726         * 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:
6727         Patrik Stridvall <ps@leissner.se>
6728         Added support for anonymous structs/unions on compilers that implement it.
6730         * include/wingdi.h, objects/text.c, relay32/gdi32.spec:
6731         Peter Ganten <ganten@uni-bremen.de>
6732         Stubs for PolyTextOutA/W.
6734         * graphics/x11drv/dib.c, objects/dib.c:
6735         Karl Lessard <ybicubuk@umail.corel.com>
6736         Some more minor GDI fixes.
6738         * dlls/comctl32/imagelist.c: Stephane Lussier <stephane@macadamian.com>
6739         In ImageList_Draw when drawing the bitmap with the transparent flag
6740         set, background color/foreground color should be set to white/black,
6741         when doing bitblt operation with the bitmap mask.
6743         * graphics/escape.c, graphics/win16drv/init.c, include/win16drv.h:
6744         Huw D M Davies <h.davies1@physics.ox.ac.uk>
6745         Extend DRAWMODE struct to win95 spec.
6746         Add some more Escape -> Escape16 conversions.
6748         * graphics/win16drv/prtdrv.c:
6749         Huw D M Davies <h.davies1@physics.ox.ac.uk>
6750         Stop trashing devmode if in and out devmodes are the same.
6752         * controls/widgets.c: Noomen Hamza <noomen@macadamian.com>
6753         The MDIClient class must be registered with the IDC_ARROW cursor.
6755         * controls/combo.c: Francis Beaudet <francis@macadamian.com>
6756         Implemented the disabled state of the combobox.
6758         * controls/menu.c: Richard Cohen <richard@jubjub.demon.co.uk>
6759         Protect SetMenu from rogue menu handle.
6760         GetMenu16 can just call GetMenu.
6762         * windows/mdi.c: Richard Cohen <richard@jubjub.demon.co.uk>
6763         Protect MDISetMenu from rogue menu handles.
6765         * memory/local.c: Richard Cohen <richard@jubjub.demon.co.uk>
6766         Tidy up TRACE etc to use default channel.
6768         * dlls/version/info.c, dlls/version/version.spec, include/winbase.h, include/winver.h, ole/ole2nls.c:
6769         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6770         Move VerLanguageName[AW] back to base (exported from KERNEL32 ...).
6772         * dlls/comctl32/rsrc.rc, dlls/comctl32/comctl32.h, dlls/comctl32/propsheet.c:
6773         Thuy Nguyen <thuy@macadamian.com>
6774         Added support for wizard property sheets.
6776         * misc/lstr.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
6777         Fix FormatMessage16 at least enough to get win95 16bit printdlg working.
6779         * dlls/comctl32/tab.c: David Luyer <luyer@ucs.uwa.edu.au>
6780         - iSelected should be -1 if no item selected (Gerard Patel)
6781         - some of the checks for invalid items where > when they should have been >=
6782           (Marcus Meissner)
6783         - made InsertItem behave similarly to DeleteItem, ie, if the current item is
6784           after where the item is inserted, increment the selected item (David Luyer)
6786         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6787         Bugfix: Declare CALL32_CBClient[Ex] without WINAPI.
6789         * debugger/db_disasm.c:
6790         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6791         Bugfix: (E)IP-relative offsets depend on operand, not address, size.
6793         * include/winuser.h, relay32/user32.spec, windows/user.c, include/wingdi.h:
6794         Marcus Meissner <marcus@jet.franken.de>
6795         Added stub implementation for EnumDisplayDevices*.
6797         * dlls/wnaspi32/winaspi32.c: Marcus Meissner <marcus@jet.franken.de>
6798         Added SC_GET_DEVTYPE.
6800         * ole/compobj.c: Juergen Schmied <juergen.schmied@metronet.de>
6801         Added stub for OLE32.DllGetClassObject.
6803         * dlls/shell32/pidl.h, dlls/shell32/shell32_main.c, include/shlguid.h, dlls/shell32/pidl.c:
6804         Juergen Schmied <juergen.schmied@metronet.de>
6805         More support for special pidls in SHGetSpecialFolderLocation.
6807         * graphics/psdrv/graphics.c, graphics/psdrv/pen.c, include/psdrv.h:
6808         Luc Tourangeau <luc@macadamian.com>
6809         Implemented invisible pens.
6811         * objects/dib.c, graphics/x11drv/dib.c:
6812         Huw D M Davies <h.davies1@physics.ox.ac.uk>
6813         Small DIB fixes.
6815         * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
6816         Added a case for menu handling in win31.
6818 Tue Sep 14 11:51:02 1999  Alexandre Julliard  <julliard@winehq.com>
6820         * include/x11drv.h, objects/dib.c, graphics/x11drv/dib.c:
6821         Karl Lessard <karll@corel.com>
6822         Fixed GetDIBits problems.
6824         * 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:
6825         Patrik Stridvall <ps@leissner.se>
6826         Add support for anonymous struct/unions on compilers that implement it.
6828 Mon Sep 13 16:06:17 1999  Alexandre Julliard  <julliard@winehq.com>
6830         * controls/button.c, controls/uitools.c:
6831         Dennis Bj|rklund <dennisb@cs.chalmers.se>
6832         Fixed win9x look on checkboxes and radiobuttons.
6834         * 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:
6835         Huw D M Davies <h.davies1@physics.ox.ac.uk>
6836         Change interfaces to THUNK_Alloc/Free slightly and make them non-static.
6837         Remove relays for win16drv from CallBack table, instead use build to
6838         generate them directly in graphics/win16drv/prtdrv.c.
6839         If Printer AbortProc is 16bit then allocate thunk and store that as a
6840         32bit proc in DC.  Setting of abortprocs now done in the correct place
6841         (i.e. not in the driver).
6843         * objects/dib.c: Kai Morich <kai.morich@bigfoot.de>
6844         Relaxed parameter checking for GetDIBits.
6846         * win32/device.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6847         Fixed last error code when trying to load unknown VxD with CreateFile.
6849         * dlls/shell32/shell32_main.c:
6850         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
6851         Pretend successful execution of SHELL_NotifyIcon*().
6853         * controls/menu.c, relay32/user32.spec:
6854         Eric Pouech <Eric.Pouech@wanadoo.fr>
6855         Added MenuItemFromPoint stub.
6857         * dlls/comctl32/comctl32undoc.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6858         Fixed off by one allocation error (DPA and DSA).
6860         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
6861         Fixed crash in PlaySound thread.
6863 Sat Sep 11 16:29:00 1999  Alexandre Julliard  <julliard@winehq.com>
6865         * controls/listbox.c: Nick Holloway <Nick.Holloway@alfie.demon.co.uk>
6866         For Win 3.x applications, if they have either horizontal or vertical
6867         scrollbars, enable both.
6869         * dlls/advapi32/crypt.c, dlls/msacm32/internal.c, dlls/shell32/pidl.c, include/wine/winestring.h, memory/string.c:
6870         Patrik Stridvall <ps@leissner.se>
6871         Eliminated warnings.
6873         * controls/combo.c, controls/listbox.c:
6874         Pierre Mageau <pierre@macadamian.com>
6875         Set the mouse capture on the combo listbox.
6877         * graphics/ddraw.c: Lionel Ulmer <lionel.ulmer@free.fr>
6878         - fixed the creation of back-buffers in DGA mode
6879         - added a check on the validity of the Locking rectangle
6880         - fixed the enumeration for DX-6.0
6882         * dlls/comctl32/commctrl.c: Stephane Lussier <stephane@macadamian.com>
6883         Fixed RGBQUAD/COLORREF mixup in CreateMappedBitmap().
6885         * controls/button.c: Abey George <abey@macadamian.com>
6886         Draw the focus rectangle for buttons with BS_3STATE, BS_RADIOBUTTON,
6887         BS_CHECKBOX, BS_AUTO* styles.
6889 Fri Sep 10 14:38:20 1999  Alexandre Julliard  <julliard@winehq.com>
6891         * 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:
6892         Huw D M Davies <h.davies1@physics.ox.ac.uk>
6893         Winspool DocumentProperties and DeviceCapabilities should now work on
6894         native 16 bit drivers.
6896         * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
6897         Fixes DeviceCapabilities for DC_PAPERSIZE.
6898         Various fixes for OpenPrinter and EnumPrinters.
6899         Separation of GetPrinter in preparation for unification with EnumPrinters.
6901         * graphics/psdrv/ppd.c, include/wingdi.h:
6902         Huw D M Davies <h.davies1@physics.ox.ac.uk>
6903         Add support for a large number of different paper sizes to PostScript
6904         driver.
6906         * include/d3d.h: Lionel Ulmer <lionel.ulmer@free.fr>
6907         Added definitions of COM objects for D3D 6.x support.
6909         * graphics/psdrv/font.c: Nick Holloway <alfie@alfie.demon.co.uk>
6910         If there is not an exact match found for the requested font name,
6911         instead of using the first font defined for the printer, map some
6912         common font families (e.g. Arial -> Helvetica), and search again.
6914         * if1632/kernel.spec, if1632/thunk.c:
6915         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
6916         Fixed bug in CBClient routines by storing the SEGPTR in the global
6917         table and translating it on every use.
6919         * include/bitmaps/oic_sample: Abey George <abey@macadamian.com>
6920         Changed the pixmap to look like the windows default application icon.
6922         * files/drive.c: Richard Cohen <richard@jubjub.demon.co.uk>
6923         Stop crash in GetDiskFreeSpaceEx.
6925         * windows/nonclient.c: Francis Beaudet <francis@macadamian.com>
6926         Made sure that the windows with the WS_EX_TOOLWINDOW style didn't get
6927         handled by the window manager.
6929         * controls/edit.c: Pascal Lessard <pascal@macadamian.com>
6930         Implemented the behavior around the ES_WANTRETURN style in the edit
6931         control.
6933         * windows/x11drv/keyboard.c: Stephane Lussier <stephane@macadamian.com>
6934         Pressing the delete key using an extended keyboard with numlock on is
6935         not generating anymore a WM_CHAR message.
6937         * dlls/shell32/shellpath.c: Niclas Karlsson <nkarlsso@ra.abo.fi>
6938         Fixed pattern matching in PathMatchSpecA/W
6940         * dlls/shell32/shlview.c: Francois Boisvert <francois@macadamian.com>
6941         Tabbing in the listview of the shellview.
6943         * dlls/comctl32/listview.c: Luc Tourangeau <luc@macadamian.com>
6944         Fixed LISTVIEW_GetItemRect: the calculations were off for LVIR_BOUNDS,
6945         LVIR_SELCTBOUNDS, LVIR_LABEL when the item width is greater than the
6946         column width.
6947         Fixed WM_GETDLGCODE by removing the DLGC_WANTRTAB and adding DLGC_WANTCHARS.
6949         * dlls/shell32/shell32_main.c:
6950         Juergen Schmied <juergen.schmied@metronet.de>
6951         Fixed crash in detach sequence.
6953         * dlls/shell32/shlfolder.c:
6954         Juergen Schmied <juergen.schmied@metronet.de>
6955         Fixed wrong return value.
6957         * dlls/crtdll/crtdll_main.c:
6958         Juergen Schmied <juergen.schmied@metronet.de>
6959         Prevent endless loop in except2.
6961         * tools/bug_report.pl: Adam Sacarny <magicbox@bestweb.net>
6962         Now works around wine never exiting the debugger.
6963         Should put bug reports in the right place now.
6965         * ole/oleaut32.c, ole/Makefile.in, relay32/oleaut32.spec:
6966         Marcus Meissner <Marcus.Meissner@caldera.de>
6967         Added stub for RegisterActiveObject().
6969         * dlls/win32s/w32sys.c, dlls/win32s/w32sys.spec:
6970         Marcus Meissner <marcus@jet.franken.de>
6971         Added stub for WIN32S16.EXP1 (most likely LoadPeResource16).
6973 Sun Sep  5 16:48:17 1999  Alexandre Julliard  <julliard@winehq.com>
6975         * loader/main.c, loader/module.c, miscemu/main.c, include/windef.h:
6976         Removed __winelib flag.
6978         * 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:
6979         Eric Pouech <Eric.Pouech@wanadoo.fr>
6980         Updated to new MM header organization.
6982         * include/multimedia.h, include/mmddk.h, include/mmsystem.h, multimedia/oss.h, multimedia/winemm.h:
6983         Eric Pouech <Eric.Pouech@wanadoo.fr>
6984         Moved DDK level material to new include/mmddk.h file.
6985         Copied some SDK level material from include/multimedia.h file.
6987         * multimedia/mciwave.c, multimedia/mcimidi.c:
6988         Eric Pouech <Eric.Pouech@wanadoo.fr>
6989         Updated to new MM header organization.
6990         Cleaned-up internal structures (now 32 bit only).
6991         Now using the MMSYSTEM entry points rather than the low level driver
6992         ones directly.
6994         * include/sig_context.h: Juergen Lock <nox@jelal.kn-bremen.de>
6995         Fix %fs for signal handlers in the FS_sig undefined case (this patch
6996         actually from Ulrich Weigand, I only tested it).
6998         * scheduler/sysdeps.c, configure, configure.in, include/acconfig.h, include/config.h.in:
6999         Ron Record <rr@sco.com>
7000         Added support of __thr_errno for reentrance on UnixWare.
7002         * windows/dialog.c: Richard Cohen <richard@jubjub.demon.co.uk>
7003         No longer needs to calculate its own character size.
7005         * misc/main.c: Richard Cohen <richard@jubjub.demon.co.uk>
7006         Consequential changes to default system font sizes
7008         * graphics/x11drv/xfont.c, include/x11font.h:
7009         Richard Cohen <richard@jubjub.demon.co.uk>
7010         Various fixes for the X11 font mapper, particularly:
7011         - size fonts with negative heights correctly
7012         - calculate average width correctly.
7014         * objects/cursoricon.c: Francis Beaudet <francis@macadamian.com>
7015         Use a special value in the hotspot coordinate to identify which HICON
7016         are cursors and which are icons.
7018         * controls/combo.c: Pierre Mageau <pierre@macadamian.com>
7019         Modified CBDropDown to find the best height of the listbox.
7021 Sat Sep  4 14:36:03 1999  Alexandre Julliard  <julliard@winehq.com>
7023         * configure.in, include/config.h.in, include/wine/winestring.h, memory/string.c, misc/port.c, configure:
7024         Added configure check for str[n]casecmp.
7026         * windows/timer.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
7027         Allow timeout of 0. Cap timer rate to SYS_TIMER_RATE.
7029         * include/windef.h: Huw D M Davies <h.davies1@physics.ox.ac.uk>
7030         Added type PWORD.
7032         * dlls/winspool/info.c, include/winspool.h:
7033         Huw D M Davies <h.davies1@physics.ox.ac.uk>
7034         Added loads of types, defines and declarations to winspool.h.
7036         * dlls/commdlg/cdlg_En.rc, dlls/commdlg/filedlg95.c:
7037         Francois Boisvert<francois@macadamian.com>
7038         Fixed the height of items in the lookin combobox of the filedlg95.
7040         * controls/edit.c: Stephane Lussier <stephane@macadamian.com>
7041         Initialize the enabling state variable in the edit.
7043         * graphics/bitblt.c: Noomen Hamza <noomen@macadamian.com>
7044         The fast window frame size should be the same as the frame size used
7045         by NC_DrawFrame function.
7047         * objects/region.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
7048         Fixed compiler warnings.
7050         * programs/regapi/regapi.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
7051         lstrncmpi isn't a windows API, use strncasecmp instead.
7053         * memory/global.c:
7054         Fixed GMEM_ZEROINIT in GlobalRealloc (thanks to Gerard Patel).
7056         * windows/msgbox.c: Added missing HFONT type.
7058         * dlls/comctl32/imagelist.c, include/cursoricon.h, loader/main.c, objects/bitmap.c, objects/cursoricon.c, windows/class.c:
7059         Pierre Mageau <pierre@macadamian.com>
7060         Changed CopyImage to accept desiredX, desiredY and LR_COPYFROMRESOURCE.
7061         CURSORICON_FindBestIcon changed to find the correct icon.
7062         ImageList_ReplaceIcon now calls CopyImage internally.
7063         Assign a value for the hIconSm CLASS member (using CopyImage).
7065         * win32/console.c: Guy Albertelli <galberte@neo.lrun.com>
7066         Fixed WriteConsoleOutput and GetNumberOfConsoleInputEvents.
7068         * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
7069         Give applications a copy of the property sheet dialog template as they
7070         might modify it.
7072         * relay32/relay386.c: Marcus Meissner <marcus@jet.franken.de>
7073         Relay exclude lists were not working due to some CharUpperA()
7074         somewhere else.
7076         * loader/loadorder.c, wine.ini:
7077         Huw D M Davies <h.davies1@physics.ox.ac.uk>
7078         winspool -> winspool.drv
7080         * dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
7081         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
7082         Implemented StrCmpNIA like the other StrCmpXX functions.
7084         * files/profile.c: Thuy Nguyen <thuy@macadamian.com>
7085         Resolve environment variable when enumerating values.
7087         * controls/edit.c: Pascal Lessard <pascal@macadamian.com>
7088         The format rect is recalculated for each font change. MoveEnd &
7089         MoveHome improved.
7091 Fri Sep  3 16:49:17 1999  Alexandre Julliard  <julliard@winehq.com>
7093         * graphics/x11drv/dib.c, include/x11drv.h, objects/dib.c:
7094         Karl Lessard <karll@corel.com>
7095         Ian Ward
7096         Dan Langlois
7097         Speed up conversion between XImages and DIBSections.
7099         * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/filedlgbrowser.h, dlls/shell32/shlview.c:
7100         Francois Boisvert <francois@macadamian.com>
7101         Some <open> features in the file dialog 95.
7103         * include/winnt.h, scheduler/sysdeps.c:
7104         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7105         Removed global variable pCurrentTeb.
7107         * memory/heap.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7108         HEAP_Commit/Decommit were assuming a page size of 4KB
7109         unconditionally.
7111         * include/wingdi.h: Huw D M Davies <h.davies1@physics.ox.ac.uk>
7112         A few more DC_ defines from Win2000.
7114         * dlls/comctl32/status.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
7115         Check that lpCreate->lpszName is non-NULL.
7117         * windows/dialog.c: Marcus Meissner <Marcus.Meissner@caldera.de>
7118         More restrictive checks, so DIALOG_IsAccelerator don't loop
7119         endlessly.
7121         * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
7122         Menu hides when clicked for a second time.
7124         * windows/msgbox.c: Richard Cohen <richard@jubjub.demon.co.uk>
7125         - select the font into the dc before calculating the extent
7126         - make buttonheight correspond to text height + width to caption
7127         - button was "flashing" on EndDialog (must delete font AFTER EndDialog)
7128         - #defines for DlgItemIds
7129         - implement MB_RETRYCANCEL
7131         * controls/edit.c: Stephane Lussier <stephane@macadamian.com>
7132         Keep the enable state in the edit structure instead of calling
7133         IsWindowEnabled().
7135         * 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:
7136         Noel Borthwick <noel@macadamian.com>
7137         - Implement interprocess clipboard communication.
7138         - Support for the PRIMARY and CLIPBOARD selection atoms.
7139         - Support for the TARGETS selection format.
7140         - Expose native Windows clipboard formats through X selection targets.
7142         * objects/gdiobj.c: Richard Cohen <richard@jubjub.demon.co.uk>
7143         Make stock fonts independent of mapping mode.
7144         System font should only be bold for Win31.
7146         * windows/dialog.c: Francis Beaudet <francis@macadamian.com>
7147         Removed truncating errors that happen when converting fom dialog units
7148         to pixels.
7150         * windows/winpos.c: Abey George<abey@macadamian.com>
7151         Check new coordinates received in WM_NCCALCSIZE message.
7153         * controls/button.c: Francis Beaudet <francis@macadamian.com>
7154         Slight 1 pixel adjustment on the position of the radio button bitmap.
7156         * dlls/commdlg/filedlg95.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7157         Fixed off by one allocation errors.
7159         * controls/edit.c: Pascal Lessard <pascal@macadamian.com>
7160         The backspace is now handled in the WM_CHAR message.
7162         * windows/mdi.c, windows/nonclient.c:
7163         Francis Beaudet <francis@macadamian.com>
7164         Make sure that all MDI children have the WS_EX_MDICHILD style set.
7166         * memory/string.c: Marcus Meissner <marcus@jet.franken.de>
7167         Fixed prototype order.
7169         * dlls/ntdll/exception.c: Juergen Lock <nox@jelal.kn-bremen.de>
7170         Fix EXC_segv for the TRAP_sig undefined case (eg FreeBSD).
7172         * debugger/stabs.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7173         Fixed crash.
7175         * dlls/shell32/shell32_main.c: Francis Beaudet <francis@macadamian.com>
7176         Fixed the support for the close button in the ShellAbout dialogs.
7178         * dlls/commdlg/cdlg_Nl.rc: Klaas van Gend <klaas@vangend.demon.nl>
7179         Added Dutch resources for PrintDlg32.
7181         * dlls/commdlg/cdlg.h, dlls/commdlg/cdlg_En.rc, dlls/commdlg/printdlg.c:
7182         Klaas van Gend <klaas@vangend.demon.nl>
7183         Completed PrintDlg32 resource stringtable.
7185         * dlls/comctl32/tooltips.c: Francis Beaudet <francis@macadamian.com>
7186         Added sanity checks in the cleanup code.
7188         * windows/x11drv/keyboard.c: Guy Albertelli <galberte@neo.lrun.com>
7189         Completed GetKeyNameText for non-character keys.
7191         * dlls/shell32/brsfolder.c: Francois Boisvert <francois@macadamian.com>
7192         Make directories name appear in the BrowseForFolder dialog.
7194         * loader/loadorder.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7195         Do not remove .drv from filenames.
7197         * controls/button.c: Francis Beaudet <francis@macadamian.com>
7198         Fixed a little positioning bug with the checkbox.
7200         * windows/nonclient.c, windows/win.c, windows/x11drv/wnd.c:
7201         Abey George <abey@macadamian.com>
7202         Fixed resizing bugs for windows with WS_THICKFRAME and WS_DLGFRAME
7203         styles.
7205         * multimedia/mci.c: Michael McCormack <mccormac@aals27.alcatel.com.au>
7206         Changed snprintf to wsnprintfA to remove unresolved external when
7207         compiling on Solaris/Sun.
7209         * dlls/comctl32/listview.c: Marcus Meissner <marcus@jet.franken.de>
7210         Implemented LVM_INSERTCOLUMNW and LVM_INSERTITEMW by using the ascii
7211         equivalents. (WinWord 97, File Open dialog)
7213         * windows/class.c: Marcus Meissner <marcus@jet.franken.de>
7214         Use in GetClassInfoW the same hack for systemclasses as in
7215         GetClassInfoA (winword 97 with native comctl32).
7217         * dlls/shell32/pidl.c: Marcus Meissner <marcus@jet.franken.de>
7218         Handle SHGDFIL_FINDDATA correctly in SHGetDataFromIDListW.
7220         * controls/edit.c: Gerard Patel <g.patel@wanadoo.fr>
7221         Implemented wParam of WM_PAINT msg for edit control.
7223         * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
7224         Fix off by one error in WINSPOOL_GetOpenedPrinterA.
7226         * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
7227         subkey_found did not search for _all_ sub keys.
7229 Sat Aug 21 14:47:29 1999  Alexandre Julliard  <julliard@winehq.com>
7231         * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/commdlg/cdlg.h, dlls/commdlg/cdlg32.c:
7232         Francois Boisvert <francois@macadamian.com>
7233         Implemented basic browsing in the file name edit of the filedlg 95.
7235         * controls/menu.c: Stephane Lussier <stephane@macadamian.com>
7236         Avoid changing the activation state in EnableMenuItem.
7238         * include/winnt.h: Fixed #ifdef symbol for PowerPC.
7240         * ole/parsedt.c, ole/parsedt.h:
7241         Eric Pouech <Eric.Pouech@wanadoo.fr>
7242         Only declare DateStyle in a single compilation unit.
7244         * windows/nonclient.c: Pascal Lessard <pascal@macadamian.com>
7245         Added the case of a user defined icon for the sysbutton hittest.
7247         * ole/typelib.c: Rein Klazes <rklazes@casema.net>
7248         Fixed typelib reading to correctly use the offset of the typelib that
7249         is embedded in for example a dll file.
7251         * graphics/x11drv/dib.c: Kristian Nielsen <kristian.nielsen@risoe.dk>
7252         Fixed CreateDIBSection() called with negative height to set the height
7253         positive in the created DIBSECTION, as per MS knowledgebase Q186586.
7255         * windows/painting.c: Stephane Lussier <stephane@macadamian.com>
7256         The paint rectangle return in the PAINTSTRUCT in BeginPaint should
7257         never be bigger than the client area of the window.
7259         * controls/listbox.c: Rein Klazes <rklazes@casema.net>
7260         Make sure that an empty string never matches a listbox entry in
7261         LISTBOX_FindString().
7263         * dlls/version/info.c:
7264         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
7265         Alignment fix.
7267         * controls/menu.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7268         Fixed crash when accessing sysmenu.
7270         * debugger/stack.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7271         Really do a silent backtrace when requested.
7273         * debugger/hash.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7274         Do not set the address if the symbol is still tagged INVALID.
7276         * debugger/stabs.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7277         Added support for N_BINCL and N_EINCL instructions.
7278         Fixed type parsing (as generated by egcs).
7280 Wed Aug 18 18:40:52 1999  Alexandre Julliard  <julliard@winehq.com>
7282         * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7283         Use typedef to work around egcs problem.
7285         * ole/*.c: Michael Veksler <mveksler@techunix.technion.ac.il>
7286         Removed unnecessary includes from ole related files.
7288         * ole/compobj.c, multimedia/mmsystem.c:
7289         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7290         Adapted to WOW changes.
7292         * 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:
7293         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7294         Moved implementation of WOW routines to single file.
7295         Added all missing WOW routines, fixed WOWCallback16Ex.
7297         * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7298         Fixed internal buffer for 16 bit mmio MEM files.
7300         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
7301         - some errors in cleaning up values returned by MCI drivers: this
7302           should solve the issues reported with the CD player/writer
7303         - crash when command was requested with automatic open (note, this
7304           will now gracefully report an error, not do the correct thing).
7306         * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
7307         Implemented the PSH_USEICONID/PSH_USEHICON and the PSP_USETITLE
7308         flags.
7310         * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7311         Bugfix: EFlags were passed incorrectly by CallFrom16Register.
7313         * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7314         Bugfix: restore STACK16FRAME fields in SwitchStackBack16.
7316         * tools/wrc/wrc.h, dlls/commdlg/cdlg_En.rc, tools/wrc/CHANGES, tools/wrc/parser.y:
7317         Bertho Stultiens <bertho@panter.soci.aau.dk>
7318         Wrc did not check any IDs which are only 16 bit. Common dialogs had some
7319         IDs larger and that caused problems. This is now solved (I hope).
7321 ----------------------------------------------------------------
7322 Sun Aug 15 18:52:32 1999  Alexandre Julliard  <julliard@winehq.com>
7324         * objects/cursoricon.c: Steve Tibbett <stevet@corel.com>
7325         Fixed cursor stretch code.
7327         * memory/selector.c:
7328         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
7329         Inhibit wraparound in comparison.
7331         * dlls/shell32/.cvsignore, dlls/shell32/Makefile.in, dlls/shell32/shellord.c, dlls/shell32/shlwapi.spec, loader/loadorder.c, relay32/builtin32.c:
7332         Juergen Schmied <juergen.schmied@metronet.de>
7333         New internal dll, exporting already existing path functions.
7335         * include/message.h, windows/dialog.c, windows/message.c, windows/nonclient.c, controls/menu.c:
7336         Francis Beaudet <francis@macadamian.com>
7337         Ensure that the WM_ENTERIDLE message is not sent if the wake-up event
7338         for the MSG_InternalGetMessage() call is a WM_TIMER.
7340         * rc/winerc.c, include/resource.h, include/windef.h:
7341         Patrik Stridvall <ps@leissner.se>
7342         GCC 3.0 has not been released yet, but it is good to be prepared.
7344         * misc/spy.c: Juergen Schmied <juergen.schmied@metronet.de>
7345         Added resolution of LVM messages.
7347         * objects/dib.c: Gerard Patel <g.patel@wanadoo.fr>
7348         Added protection against possible memory corruption.
7350         * objects/cursoricon.c: Steve Tibbett <stevet@corel.com>
7351         Fixed cursor selection to find the correct cursor when more than one
7352         available.
7354         * dlls/winspool/Makefile.in, dlls/winspool/info.c, dlls/winspool/winspool.spec, dlls/winspool/wspool.c:
7355         Thuy Nguyen <thuy@macadamian.com>
7356         Replaced a static ten element array with a dynamic pointer array.
7358         * dlls/commdlg/printdlg.c: Gerard Patel <g.patel@wanadoo.fr>
7359         Fix special case when no printer installed.
7361         * dlls/shell32/shell.c, dlls/shell32/shell.spec:
7362         James Juran <jrj120@psu.edu>
7363         New routine DllEntryPoint for shell.dll.  Loads shell32.dll,
7364         since most shell.dll functions call their 32-bit counterparts.
7366         * dlls/version/info.c:
7367         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
7368         Fixed alignment.
7370         * controls/edit.c: Pascal Lessard <pascal@macadamian.com>
7371         EM_SETSEL scrolls if outside of the visible range.
7372         "shift+home" selection improved in the edit control.
7374         * ole/parsedt.c: Removed RCS keyword.
7376         * 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:
7377         Juergen Schmied <juergen.schmied@metronet.de>
7378         More use of rc files for strings and menus, fixes. First internal
7379         icons.
7381         * dlls/shell32/shlview.c: Juergen Schmied <juergen.schmied@metronet.de>
7382         New interface: DropSource.
7384         * dlls/shell32/shlfolder.c:
7385         Juergen Schmied <juergen.schmied@metronet.de>
7386         Better DropTarget.
7388         * dlls/shell32/shell32_main.c:
7389         Juergen Schmied <juergen.schmied@metronet.de>
7390         Implemented SHGetFileInfo better.
7392         * dlls/shell32/iconcache.c:
7393         Juergen Schmied <juergen.schmied@metronet.de>
7394         Protect cache with critical section.
7395         Removed hack to load icons from external shell32.dll.
7397         * dlls/shell32/dataobject.c:
7398         Juergen Schmied <juergen.schmied@metronet.de>
7399         QueryGetData, EnumFormatEtc implemented.
7401         * dlls/shell32/classes.c: Juergen Schmied <juergen.schmied@metronet.de>
7402         Fixed mapping of file extensions to text.
7404         * misc/ddeml.c: Juergen Schmied <juergen.schmied@metronet.de>
7405         Fixed ascii/unicode issue for naming of the mutexes.
7406         Made mutex handles global.
7407         Fixed incorrect interpretation of return values of WaitForSingleObject.
7409         * objects/font.c: Juergen Schmied <juergen.schmied@metronet.de>
7410         First implementation of GetCharacterPlacementA.
7412         * windows/defwnd.c, include/winuser.h:
7413         Thuy Nguyen <thuy@macadamian.com>
7414         Implemented the WM_SETICON and WM_GETICON messages.
7416         * files/drive.c: Morten Eriksen <mortene@sim.no>
7417         FIXME on unimplemented feature made less obtrusive.
7419         * graphics/x11drv/bitblt.c: Pascal Lessard <pascal@macadamian.com>
7420         Now the conversion in the blt functions round up the result.
7422         * tools/build-spec.txt, tools/build.c: James Juran <jrj120@psu.edu>
7423         Document use of "init" in build-spec.txt, and make build.c print a
7424         warning if someone tries to use "init" in a Win16 spec file.
7426         * loader/ne/segment.c: Michael Karcher <karcher@dpk.berlin.fido.de>
7427         Make sure we have a dgroup before patching prologs.
7429         * */Makefile.in, */.cvsignore:
7430         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7431         Adapted to glue code generation changes.
7433         * 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:
7434         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7435         Adapted to new-style Wine thunks.
7436         Removed some now unnecessary function pointers.
7438         * include/builtin16.h, include/stackframe.h, tools/build.c:
7439         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7440         CallTo16... / CallFrom16... Wine thunks reorganized:
7441         - Cleaner separation between core and glue code.
7442         - Argument conversion glue code now in C.
7443         - Glue code needed for 16-bit .spec files inlined.
7445 Sat Aug 14 15:53:50 1999  Alexandre Julliard  <julliard@winehq.com>
7447         * misc/comm.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
7448         - implemented GetCommModemStatus
7449         - fixed the DTR, CTS and COMMBREAK related subfunctions of EscapeCommFunction
7450         - added more verbose TRACEing
7452         * misc/version.c: Morten Eriksen <mortene@sim.no>
7453         Made GetVersionEx() behave in accordance with the specification with
7454         regard to error handling.
7456         * dlls/msvideo/msvfw32.spec, dlls/msvideo/msvideo_main.c:
7457         Mark G. Adams <madams@livepage.com>
7458         Added stub for DrawDibClose.
7460         * controls/combo.c: Francis Beaudet <francis@macadamian.com>
7461         Fixed the look of the combobox's drop down button when in Win95 look.
7463         * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
7464         Added support for icons in property sheet tabs.
7466         * include/commctrl.h, tools/wrc/CHANGES, tools/wrc/genres.c, tools/wrc/parser.l, tools/wrc/wrc.h:
7467         Bertho Stultiens <bertho@panter.soci.aau.dk>
7468         Version 1.0.14 of wrc.
7470 Sun Aug  8 18:56:04 1999  Alexandre Julliard  <julliard@winehq.com>
7472         * include/winbase.h, win32/time.c: Fixed SetLocalTime prototype.
7474         * 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:
7475         Replaced a few calls to lstr* functions by their CRTDLL or libc
7476         equivalent.
7478         * memory/string.c:
7479         Added an exception handler around a few lstr* functions.
7481         * 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:
7482         Reimplemented multi-byte and wide-chars functions to not depend on
7483         lstr* functions; added a few missing ones; fixed a couple of bugs.
7485 Sat Aug  7 14:32:34 1999  Alexandre Julliard  <julliard@winehq.com>
7487         * 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:
7488         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7489         Separated Win16 (USER) and Win32 (MPR) network routines.
7490         Moved implementation of MPR to dlls/mpr/.
7491         Added proper headers and stubs for missing MPR routines.
7493         * misc/registry.c:
7494         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
7495         Improved (sort of) RegFlushKey.
7497         * windows/winpos.c: Francis Beaudet <francis@macadamian.com>
7498         If the window is already the topmost window in ShowWindow(SW_SHOW), it
7499         must not be activated.
7501         * windows/x11drv/event.c: Stephane Lussier <stephane@macadamian.com>
7502         WM_SYSCOMMAND message (for SC_CLOSE) should be posted not sent.
7504         * windows/dce.c, windows/x11drv/wnd.c:
7505         Stephane Lussier <stephane@macadamian.com>
7506         X11drv SetDrawable function modifies the DC origin, this translation
7507         should be reflected for the dc clipping region for CS_OWNDC and CS_CLASSDC.
7509         * windows/defdlg.c, windows/dialog.c: Abey George <abey@macadamian.com>
7510         Set focus to the dialog in EndDialog.
7512         * libtest/Makefile.in: James Juran <jrj120@psu.edu>
7513         Make sure we compile winestub.o before trying to build a Winelib test
7514         program.
7516         * files/directory.c: Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
7517         Fixed case sensitivity flag.
7519         * include/commdlg.h, dlls/commdlg/printdlg.c:
7520         Klaas van Gend <klaas@vangend.demon.nl>
7521         Implemented the return of hDevModes and hDevNames in the PRINTDLG
7522         structure of PrintDlgA().
7524         * windows/queue.c, include/queue.h: Ove Kaaven <ovek@arcticnet.no>
7525         Made hardware_event use win32-conformant parameters.
7527         * dlls/commdlg/cdlg32.c: Juergen Schmied <juergen.schmied@metronet.de>
7528         Explicitly load shell32.dll.
7530         * dlls/comctl32/tab.c: Thuy Nguyen <thuy@macadamian.com>
7531         Take into account icons when determining tab size.
7533         * files/drive.c: Morten Eriksen <mortene@sim.no>
7534         Improved GetDiskFreeSpaceEx() implementation a little bit.
7536         * misc/comm.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
7537         - added some more Baudrates
7538         - fixed a hang in tcsetattr when the input buffer isn't empty
7539         - added more verbosity for debugging
7541         * controls/uitools.c: Francis Beaudet <francis@macadamian.com>
7542         Handle the case when the button is really small.
7544         * windows/nonclient.c: Thuy Nguyen <thuy@macadamian.com>
7545         WS_EX_DLGMODALFRAME alone does not mean title bar, you still have to
7546         specify WS_CAPTION.
7548 Wed Aug  4 15:07:57 1999  Alexandre Julliard  <julliard@winehq.com>
7550         * configure.in, include/acconfig.h, include/config.h.in, include/dinput.h, windows/dinput.c, configure:
7551         Marcus Meissner <marcus@jet.franken.de>
7552         Implemented DirectInput Joystick support (tested with WC:Prophecy).
7554         * relay32/kernel32.spec, win32/time.c:
7555         Andreas Mohr <amohr@student.ei.uni-stuttgart.de>
7556         Implemented SetLocalTime.
7558         * windows/x11drv/keyboard.c: Ivan De Saedeleer <Ivands@sympatico.ca>
7559         Minor fix to the French Canadian keyboard.
7561         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
7562         When flipping backbuffer -> frontbuffer, first exchange surfaces, then
7563         copy XImage, since the palette might only be defined in the frontbuffer.
7565         * tools/wineinstall: Joerg Mayer <jmayer@telesun2.telemation.de>
7566         Create sysconfdir on install.
7568         * dlls/stress/.cvsignore: Fixed typo.
7570         * 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:
7571         Got rid of dsprintf and related macros.
7573         * server/mutex.c:
7574         Remove the mutex from the thread list when destroying it.
7576         * */*:
7577         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7578         Moved various DLLs to dlls/
7580 Sun Aug  1 14:58:02 1999  Alexandre Julliard  <julliard@winehq.com>
7582         * 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:
7583         Removed IP_reg, SP_reg and FL_reg definitions to avoid potential
7584         aliasing optimization problems.
7586         * dlls/ntdll/exception.c, include/miscemu.h, loader/dos/module.c, loader/signal.c:
7587         Removed SIGNAL_MaskAsyncEvents and cleaned up signal handling.
7589         * include/Attic/async.h, win32/console.c, files/Attic/async.c, files/Makefile.in, files/file.c:
7590         Removed async I/O support.
7592         * include/comm.h, misc/comm.c:
7593         Use the service thread for comm notifications.
7595         * 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:
7596         Made stack manipulation macros into inline functions.
7597         Changed a few accesses to context registers to avoid potential
7598         aliasing optimization problems.
7600         * include/miscemu.h, include/sig_context.h, include/windef.h, loader/dos/dosvm.c, memory/instr.c, dlls/ntdll/exception.c:
7601         Changed INSTR_EmulateInstruction to use a CONTEXT86 instead of a
7602         SIGCONTEXT.
7604         * Makefile.in: Remove wine.conf.man on distclean
7606 ----------------------------------------------------------------
7607 Sat Jul 31 19:35:58 1999  Alexandre Julliard  <julliard@winehq.com>
7609         * windows/nonclient.c: Noomen Hamza <noomen@macadamian.com>
7610         Close the right window when clicking on a non active window close
7611         button.
7613         * Makefile.in: Pavel Roskin <pavel_roskin@geocities.com>
7614         Removed the dependency on "dummy" for wine and wine.sym.
7616         * files/profile.c:
7617         Remove file from cache when flushing it (based on a patch by Ian
7618         Schmidt).
7620         * include/winnt.h: Marcus Meissner <marcus@jet.franken.de>
7621         Added CONTEXT for ALPHA and MIPS.
7623         * configure.in, Make.rules.in, Makefile.in, configure:
7624         Patrik Stridvall <ps@leissner.se>
7625         Added support for Solaris Lint.
7627         * 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:
7628         Patrik Stridvall <ps@leissner.se>
7629         Fixed some of the issues reported by Solaris Lint.
7631         * include/pshpack4.h: Patrik Stridvall <ps@leissner.se>
7632         Solaris C/C++ compile fix.
7634         * 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:
7635         Patrik Stridvall <ps@leissner.se>
7636         Various ANSI C compability fixes.
7638         * 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:
7639         Patrik Stridvall <ps@leissner.se>
7640         Fixed some of the issues reported by winapi-check.
7642         * documentation/Makefile.in: Marcus Meissner <marcus@jet.franken.de>
7643         Actually create the man/ subdirectories before installing.
7645         * if1632/kernel.spec, include/wine/winbase16.h, loader/task.c, windows/queue.c:
7646         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7647         Implemented KERNEL.447 (WIN32_OldYield16).
7649         * windows/event.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7650         Suspend WND lock before EVENT_Synchronize.
7652         * win32/device.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7653         Create VxD handle only for known VxDs.
7655         * Make.rules.in, relay32/Makefile.in: Patrik Stridvall <ps@leissner.se>
7656         Made compilation of *.spec.c files use -fno-builtin regardless of
7657         where they are.
7659         * 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:
7660         Patrik Stridvall <ps@leissner.se>
7661         Fixed/added missing/wrong function prototypes and made internal
7662         functions static.
7664         * 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:
7665         Patrik Stridvall <ps@leissner.se>
7666         Fixed missing prototypes and made it work with Solaris X11.
7668         * 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:
7669         Patrik Stridvall <ps@leissner.se>
7670         Eliminated warnings.
7672         * loader/ne/segment.c:
7673         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
7674         Fixed the DSEG value in the SEGTABLEENTRY struct.
7676         * dlls/comctl32/comctl32.h, dlls/comctl32/flatsb.c, dlls/comctl32/pager.c, dlls/comctl32/rsrc.rc, dlls/comctl32/toolbar.c, documentation/common_controls:
7677         Eric Kohl <ekohl@abo.rhein-zeitung.de>
7678         Added builtin toolbar bitmaps.
7680         * dlls/comctl32/listview.c, dlls/comctl32/treeview.c, include/listview.h, include/treeview.h:
7681         Eric Kohl <ekohl@abo.rhein-zeitung.de>
7682         Some more messages.
7684         * dlls/advapi32/advapi32.spec, dlls/advapi32/crypt.c:
7685         Eric Kohl <ekohl@abo.rhein-zeitung.de>
7686         Added stub for CryptSetKeyParams().
7688         * dlls/shell32/shell32.spec, dlls/shell32/shellord.c:
7689         Eric Kohl <ekohl@abo.rhein-zeitung.de>
7690         Added stubs for DAD_SetDragImage() and PathCleanupSpec().
7692         * misc/crtdll.c, relay32/crtdll.spec:
7693         Eric Kohl <ekohl@abo.rhein-zeitung.de>
7694         Added stub for _except_handler2().
7696         * objects/region.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
7697         Improved GetRandomRegion().
7699         * controls/menu.c, windows/nonclient.c:
7700         Pascal Lessard <pascal@macadamian.com>
7701         Implemented the system button behavior and associated it to the system
7702         menu in win95. Also permit the SC_CLOSE item to be disabled.
7704         * misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
7705         Bugfixes and a fake GETBASEIRQ.
7707         * files/async.c: Ove Kaaven <ovek@arcticnet.no>
7708         Made async fds nonblocking.
7710         * windows/mdi.c: Dan Langlois <daniell@corel.com>
7711         Removed an inappropriate if statement from MDI_ChildActivate that
7712         prevented the activation code from executing.
7714         * dlls/comctl32/monthcal.c, include/monthcal.h:
7715         Alex Priem <alexp@sci.kun.nl>
7716         Bugfixes & further updates for the month calendar common control.
7718         * dlls/comctl32/datetime.c, include/commctrl.h, include/datetime.h:
7719         Alex Priem <alexp@sci.kun.nl>
7720         Started implementing date/time common control.
7722         * graphics/psdrv/graphics.c, graphics/psdrv/ps.c:
7723         Huw D M Davies <h.davies1@physics.ox.ac.uk>
7724         PSDRV_WriteArc shouldn't write a newpath.
7726         * controls/button.c: Rein Klazes <rklazes@casema.net>
7727         Fix handling of WM_LBUTTONDCLICK message for buttons with certain
7728         styles.
7730         * windows/dce.c: Abey George <abey@macadamian.com>
7731         Bug fix for updating the clipping region in nested GetDCEx calls.
7733         * windows/winpos.c: Yuxi Zhang <yuxiz@corel.ca>
7734         Tried to fix the code for SetWindowPos to erase the background
7735         properly.
7737 Fri Jul 30 18:10:21 1999  Alexandre Julliard  <julliard@winehq.com>
7739         * dlls/commdlg/cdlg_En.rc, dlls/commdlg/cdlg_xx.rc, dlls/commdlg/printdlg.c, dlls/commdlg/rsrc.rc, include/winspool.h:
7740         Klaas van Gend <klaas@vangend.demon.nl>
7741         - added Collate/NoCollate Icons to Print32 dialog (unfortunately they
7742           don't display yet).
7743         - added status strings.
7744         - added string table for internationalisation of several internal
7745           message boxes.
7747         * include/commctrl.h, include/winuser.h: Yuxi Zhang <yuxiz@corel.ca>
7748         Removed duplicated defines in winuser.h and commctrl.h. Also corrected
7749         a typo for SW_MAX value.
7751         * dlls/commdlg/cdlg.h, dlls/commdlg/cdlg32.c, dlls/commdlg/filedlg95.c:
7752         Francis Beaudet <francis@macadamian.com>
7753         Fixed a memory leak in the file dialog.
7755         * loader/loadorder.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
7756         Strip .drv extensions to MODULE_GetLoadOrder.
7758         * dlls/comctl32/tab.c: Francis Beaudet <francis@macadamian.com>
7759         Fixed a memory leak.
7761         * scheduler/process.c, loader/task.c:
7762         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7763         Bugfix: Install task-entry breakpoint *after* EXE module is initialized.
7765         * graphics/psdrv/ps.c, include/psdrv.h:
7766         Luc Tourangeau <luc@macadamian.com>
7767         Added a call to the newpath operator immediately before the arc
7768         operator.
7770         * controls/button.c: Pierre Mageau <pierre@macadamian.com>
7771         Fixed a problem when the style is BS_BITMAP or BS_ICON: the bitmap or
7772         icon needed to be centered when the button is smaller than the bitmap.
7774         * windows/mdi.c: Francis Beaudet <francis@macadamian.com>
7775         Fixed a memory leak that occurs when we maximize/minimize an MDI
7776         child.
7778         * dlls/comctl32/updown.c: Francis Beaudet <francis@macadamian.com>
7779         Added more support for buddy windows in the updown control.
7781         * controls/edit.c: Francis Beaudet <francis@macadamian.com>
7782         Implemented proper win95 support for the WS_BORDER style.
7784         * controls/listbox.c: Francis Beaudet <francis@macadamian.com>
7785         Changed the WS_BORDER style to a WS_EX_CLIENTEDGE style for the
7786         listbox control.
7788         * controls/combo.c: Francis Beaudet <francis@macadamian.com>
7789         Fixed the border for the listbox created by the simple combobox.
7791         * ole/compobj.c, if1632/compobj.spec:
7792         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
7793         Implemented CoRevokeClassObject stub needed by Acrobat 3 16 bit.
7795         * loader/ne/module.c:
7796         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7797         GetModuleHandle16: treat Win32 modules correctly.
7799 Wed Jul 28 16:38:45 1999  Alexandre Julliard  <julliard@winehq.com>
7801         * dlls/commdlg/filedlg95.c, dlls/commdlg/filedlgbrowser.c, dlls/shell32/brsfolder.c:
7802         Juergen Schmied <juergen.schmied@metronet.de>
7803         Fixed use of StrRetToStrN.
7805         * dlls/shell32/shell32.spec, dlls/shell32/shellord.c:
7806         Juergen Schmied <juergen.schmied@metronet.de>
7807         StrRetToStrN[A|W|AW] new independent unicode/ascii/export functions.
7809         * documentation/dlls: Klaas van Gend <klaas@vangend.demon.nl>
7810         Added explanation of the current DLL support.
7812         * memory/global.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7813         Bugfix: fixed freshly introduced bug in GlobalLock16.
7815         * dlls/comctl32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
7816         Ian Schmidt <ischmidt@cfl.rr.com>
7817         Added stubs for InitMUILanguage and COMCTL32.410.
7818         Fixed some compiler warnings.
7820 Tue Jul 27 17:10:06 1999  Alexandre Julliard  <julliard@winehq.com>
7822         * if1632/gdi.spec, if1632/thunk.c, if1632/user.spec, include/callback.h, miscemu/main.c, objects/gdiobj.c, windows/user.c:
7823         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7824         Added FinalUserInit16/FinalGdiInit16 stubs.
7825         Call out to FinalUserInit in MAIN_EmulatorRun.
7827         * if1632/kernel.spec, memory/selector.c:
7828         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7829         Added IsBadFlatReadWritePtr16().
7831         * controls/edit.c: Abey George <abey@macadamian.com>
7832         Fixed incorrect edit control behaviour in mouse message handling.
7834         * windows/message.c: Abey George <abey@macadamian.com>
7835         Send normal mouse messages to WM_SETCURSOR when non-client mouse
7836         messages occur.
7838         * windows/winpos.c: Thuy Nguyen <thuy@macadamian.com>
7839         Check if the window has the WS_CLIPSIBLINGS style before using the
7840         DCX_CLIPSIBLINGS flag.
7842         * 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:
7843         Francois Boisvert <francois@macadamian.com>
7844         Implemented the Win95 file open/save dialogs.
7846         * Makefile.in: Marcus Meissner <marcus@jet.franken.de>
7847         Do tools/ before any of the other subdirectories, even when doing
7848         parallel makes.
7850         * memory/global.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7851         Bugfix: Return selector also in CX from GlobalLock16().
7853         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7854         More gcc bug workarounds.
7856         * graphics/psdrv/ppd.c, include/wingdi.h:
7857         Huw D M Davies <h.davies1@physics.ox.ac.uk>
7858         Added more paper sizes and bin names to PPD parser.
7860         * windows/dinput.c: Marcus Meissner <marcus@jet.franken.de>
7861         Actually return the number of events in Mouse_GetDeviceData (fixes
7862         Wing Commander Prophecy). Added timestamp and sequence generation,
7863         critical section for mousedata. Disabled mouse warping in
7864         GetDeviceData for now (generates excess mouse events).
7866 Sun Jul 25 13:15:49 1999  Alexandre Julliard  <julliard@winehq.com>
7868         * */*.spec:
7869         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7870         Moved .spec files to corresponding dlls/ directory.
7872         * controls/listbox.c: Gerard Patel <g.patel@wanadoo.fr>
7873         Several focus and selection problems in listboxes.
7875         * windows/dce.c: Francis Beaudet <francis@macadamian.com>
7876         Retrieve the clipping region before setting the drawable and reset the
7877         clipping region after.
7879         * 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:
7880         Juergen Schmied <juergen.schmied@metronet.de>
7881         Many fixes/reimplementations.
7883         * dlls/shell32/shlview.c: Juergen Schmied <juergen.schmied@metronet.de>
7884         Removed experimental/unused code.
7885         Use ShellFolder to get ViewObjects.
7886         Started cleanup of the contextmenu code.
7888         * dlls/shell32/shlfolder.c:
7889         Juergen Schmied <juergen.schmied@metronet.de>
7890         Complete redesign, split into 3 implementations (Desktop, MyComputer
7891         and filesystem folders). All parsing and binding is done recursive.
7893         * dlls/shell32/shellpath.c:
7894         Juergen Schmied <juergen.schmied@metronet.de>
7895         Implemented SHGetSpecialFolderPathA.
7897         * dlls/shell32/shellord.c:
7898         Juergen Schmied <juergen.schmied@metronet.de>
7899         Implemented SHCreateShellFolderViewEx.
7901         * dlls/shell32/shellole.c:
7902         Juergen Schmied <juergen.schmied@metronet.de>
7903         Removed special CoCreateClassObject and use ole functions instead.
7904         SHCreateDefClassObject implemented.
7906         * dlls/shell32/shelllink.c:
7907         Juergen Schmied <juergen.schmied@metronet.de>
7908         Implemented access to lnk's to a IStream interface.
7910         * dlls/shell32/iconcache.c:
7911         Juergen Schmied <juergen.schmied@metronet.de>
7912         Fixed icon background (was black).
7914         * dlls/shell32/folders.c: Juergen Schmied <juergen.schmied@metronet.de>
7915         Fixed getting icons from filetypes.
7917         * dlls/shell32/enumidlist.c:
7918         Juergen Schmied <juergen.schmied@metronet.de>
7919         Implemented enumeration of shell extensions, seperated enum stuff for
7920         the 3 seperate shellfolder implementations.
7922         * dlls/shell32/dataobject.c:
7923         Juergen Schmied <juergen.schmied@metronet.de>
7924         Rewrote GetData so support multiple selections.
7926         * dlls/shell32/contmenu.c:
7927         Juergen Schmied <juergen.schmied@metronet.de>
7928         Separated stuff for shv background contextmenu to separate file.
7930         * dlls/shell32/classes.c: Juergen Schmied <juergen.schmied@metronet.de>
7931         New functions to access attributes in HCR.
7933         * dlls/shell32/Makefile.in, dlls/shell32/shv_bg_cmenu.c:
7934         Juergen Schmied <juergen.schmied@metronet.de>
7935         New file. Seperate implementation of the shellview background
7936         contextmenu.
7938         * include/wine/undocshell.h:
7939         Juergen Schmied <juergen.schmied@metronet.de>
7940         New file. Contains functions not in the official headers but widely
7941         used from other dlls.
7943         * Makefile.in: Marcus Meissner <marcus@jet.franken.de>
7944         Added X11OBJS and LIBOBJS to wine dependencies (we can't add ALT_LINK).
7946         * Makefile.in: Make sure we build tools first.
7948         * if1632/kernel.spec, if1632/relay.c, if1632/wprocs.spec, memory/global.c, tools/build-spec.txt, tools/build.c:
7949         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7950         Relay code for Win16 register functions converts arguments.
7951         New 'interrupt' keyword added (for Win16 interrupt handlers).
7952         Adapted .spec files and implementations of register routines.
7954         * 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:
7955         Huw D M Davies <h.davies1@physics.ox.ac.uk>
7956         {Start|End}{Doc|Page} go through DCfuncs.
7957         Implement these in the PostScript driver.
7958         Change PSDRV_Escape to use them.
7960         * loader/dos/dosvm.c:
7961         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7962         Work around 'local extern declaration with attribute' gcc bug.
7964         * windows/dinput.c: Lionel Ulmer <lionel.ulmer@free.fr>
7965         Implementation of SetEventNotification for the mouse driver.
7967         * ole/compobj.c: Juergen Schmied <juergen.schmied@metronet.de>
7968         Let CoCreateInstance use LOAD_WITH_ALTERED_SEARCHPATH.
7970         * include/ole2.h: Juergen Schmied <juergen.schmied@metronet.de>
7971         Fixed incomplete proto.
7973         * winedefault.reg: Juergen Schmied <juergen.schmied@metronet.de>
7974         New keys nessesary for running the new shell32.
7976         * controls/static.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
7977         Use GDI APIs to access bitmap info.
7979         * graphics/psdrv/clipping.c:
7980         Huw D M Davies <h.davies1@physics.ox.ac.uk>
7981         Rewrote PSDRV_SetDeviceClipping to use GetRegionData API.
7983 Sat Jul 24 12:20:25 1999  Alexandre Julliard  <julliard@winehq.com>
7985         * miscemu/main.c, if1632/thunk.c, include/main.h, loader/main.c, misc/Attic/callback.c, misc/Makefile.in:
7986         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
7987         Unify startup sequence for Wine and WineLib.
7989         * windows/clipboard.c, include/clipboard.h, memory/global.c:
7990         Noel Borthwick <noel@macadamian.com>
7991         Fix bug with pasting Wine clipboard content to external applications,
7992         by storing clipboard data on the shared system heap.
7994         * windows/x11drv/mouse.c: Achim Kaiser <Achim_Kaiser@t-online.de>
7995         Draw an additional white bit for each invert bit of a cursor.
7997         * windows/x11drv/event.c: Noel Borthwick <noel@macadamian.com>
7998         While handling the X FocusIn message in managed mode, if the window
7999         has been disabled revert the X focus back to the last focus window.
8001         * dlls/shell32/brsfolder.c, include/commctrl.h, dlls/comctl32/treeview.c:
8002         Francois Boisvert<francois@macadamian.com>
8003         Implemented TREEVIEW_InsertItemW.
8005         * graphics/escape.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
8006         Implemented ExtEscape.
8008         * Makefile.in: Marcus Meissner <marcus@jet.franken.de>
8009         Trying to fix parallel make by doing direct subdir/subdir.o rules.
8011         * include/win.h, windows/nonclient.c, windows/x11drv/wnd.c:
8012         Sylvain St-Germain <sylvain@macadamian.com>
8013         Fixed inconsistency in conditions that determines if a window requires
8014         a WM border.
8016         * graphics/x11drv/xfont.c, include/x11font.h:
8017         Huw D M Davies <h.davies1@physics.ox.ac.uk>
8018         For large font sizes call XLoadQueryFont with a 100 pixel high font
8019         and rescale the metrics.
8021         * misc/printdrv.c, objects/dc.c, graphics/psdrv/escape.c, graphics/win16drv/init.c, include/gdi.h:
8022         Huw D M Davies <h.davies1@physics.ox.ac.uk>
8023         Implement handling of 32 bit AbortProc.
8025         * include/process.h, include/server.h, include/wine/exception.h, include/winnt.h:
8026         Lionel Ulmer <lionel.ulmer@free.fr>
8027         Suppressed compiler warning by using the 'unused' attribute.
8029         * debugger/Makefile.in, debugger/external.c:
8030         Kevin Holbrook <kwh@neosoft.com>
8031         Added utility function to invoke external debugger.
8033         * multimedia/.cvsignore, multimedia/winmm.rc, multimedia/winmm_En.rc, multimedia/winmm_Fr.rc, relay32/builtin32.c:
8034         Eric Pouech <Eric.Pouech@wanadoo.fr>
8035         Added WINMM resources.
8037         * multimedia/Attic/mcistring.c, multimedia/Makefile.in:
8038         Eric Pouech <Eric.Pouech@wanadoo.fr>
8039         Removed obsoleted mcistring.c.
8040         Added support for resources.
8042         * multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcicda.c, multimedia/mcimidi.c, multimedia/mciwave.c:
8043         Eric Pouech <Eric.Pouech@wanadoo.fr>
8044         Fixed return values for some messages in DriverProc (MCI_GETDEVCAPS &
8045         MCI_STATUS) for mciSendString.
8047         * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8048         Spread the use of MM crit sect.
8050         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8051         Moved some MCI functions to mci.c.
8052         Now loads error messages from string table.
8053         Spread the use of MM crit sect.
8055         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8056         Added parsing & storing of command tables.
8057         Merged some MCI functions from mmsystem.c.
8059         * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
8060         Removed some no longer used prototypes.
8061         Added command tables to MCI structure.
8063         * include/mmsystem.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
8064         Fixed buggy prototype.
8066         * debugger/types.c: Kevin Holbrook <kwh@neosoft.com>
8067         Avoid crashing on a bad symbol address of 0x0000.
8069         * misc/w32sys.c: Fixed GetW32SysVersion16 return type.
8071         * 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:
8072         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8073         Removed MODULE_GetWndProcEntry16().
8074         Use 32-bit window procedures in COMMDLG instead.
8076         * configure, configure.in: Eric Pouech <Eric.Pouech@wanadoo.fr>
8077         Fixed cut&paste bug.
8079         * 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:
8080         Paul Quinn <paulq@corel.ca>
8081         Add a few stubs, some C++ compatibility, and fix a few types.
8083         * include/initguid.h, ole/guid.c: Albert den Haan <albertd@corel.ca>
8084         Declare only one instance of GUID_NULL.
8086         * dlls/comctl32/imagelist.c: Pierre Mageau <pierre@macadamian.com>
8087         Fixed various problem with ImageList_Draw.
8089         * windows/dialog.c: Stephane Lussier<stephane@macadamian.com>
8090         Re-enable the owner window in the EndDialog().
8092         * dlls/comctl32/propsheet.c: Thuy Nguyen <thuy@macadamian.com>
8093         Fixed notifications.
8095         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8096         Always retrieve Callout routines using GetProcAddress().
8098         * windows/defwnd.c: Abey George <abey@macadamian.com>
8099         Send WM_CONTEXTMENU on WM_RBUTTONUP, not WM_RBUTTONDOWN.
8101         * windows/x11drv/keyboard.c:
8102         Huw D M Davies <h.davies1@physics.ox.ac.uk>
8103         Fixed compiler warning.
8105         * dlls/winspool/info.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
8106         Let through more flags to EnumPrinters.
8107         Fixes for GetPrinter/GetPrinterDriver.
8109         * graphics/psdrv/color.c, graphics/psdrv/init.c, graphics/psdrv/ps.c:
8110         Huw D M Davies <h.davies1@physics.ox.ac.uk>
8111         Fix stupid `rubbish at end of %%Title' bug.
8112         Don't complain about palette relative RGBs.
8113         If output param to CreateDC is NULL default to `LPT1:' - Hack.
8115 Fri Jul 23 19:33:24 1999  Alexandre Julliard  <julliard@winehq.com>
8117         * configure, configure.in, include/config.h.in, include/wine_gl.h:
8118         Lionel Ulmer <lionel.ulmer@free.fr>
8119         Better detection of OpenGL.
8121         * include/callback.h, include/stackframe.h, misc/Attic/callback.c, tools/build.c, if1632/thunk.c:
8122         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8123         Bugfix: Reverted CallTo16 routines to STDCALL convention.
8125         * objects/font.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
8126         String to GetTextExtentPoint is not necessarily 0 terminated.
8127         Fix function name `32's in comments - API naming madness makes this
8128         worthwhile.
8130         * dlls/winspool/info.c, graphics/driver.c, graphics/psdrv/README, include/winspool.h, relay32/Attic/winspool.spec:
8131         Huw D M Davies <h.davies1@physics.ox.ac.uk>
8132         EnumJobs stub.
8133         Update graphics/psdrv/README.
8134         Add warnings to DRIVER_GetDriverName.
8136         * windows/mdi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8137         Fixed some bad ptr occurrence in this class WndProc.
8139         * graphics/ddraw.c, include/options.h, misc/main.c, windows/x11drv/main.c:
8140         Lionel Ulmer <lionel.ulmer@free.fr>
8141         - Added a new option 'noxshm'
8142         - Added a 16bpp -> 32 bpp conversion function
8144         * windows/syscolor.c: Gerard Patel <g.patel@wanadoo.fr>
8145         Change color gray text to 128 128 128 for win9x look.
8147 Tue Jul 20 15:13:20 1999  Alexandre Julliard  <julliard@winehq.com>
8149         * scheduler/debugger.c:
8150         Do not output text in OutputDebugStrAW when not being debugged
8152         * windows/mdi.c: Noomen Hamza <noomen@macadamian.com>
8153         MDIDestroyChild: MDI window menu item was deleted only if the current
8154         destroyed child was active.
8156         * dlls/comctl32/propsheet.c: Gerard Patel <g.patel@wanadoo.fr>
8157         Reset disabled style for the dialog boxes set on property pages.
8159         * 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:
8160         Bertho Stultiens <bertho@akhphd.au.dk>
8161         - Generalized the distinction between 2 and 4 byte integers slightly through
8162           a new parser state. The is now a warning when a 2 byte integer is larger
8163           than 16 bit (and is truncated).
8164         - Fixed a couple of cosmetic things in the DLGINIT stuff so that dumping of
8165           this type will work as expected.
8166         - Added generalized language/version/characteristics support to the DLGINIT
8167           resource type.
8169         Ulrich Czekalla <ulrichc@corel.ca>
8170         - Added support for DLGINIT resource-type.
8171         - Added string continuation and embedded quoting.
8172         - Added numeric IDs for icons in controls.
8174         Eric Pouech <Eric.Pouech@wanadoo.fr>
8175         - Bugfix: Distinguish between 2 and 4 byte integers in RCDATA.
8177 Sun Jul 18 18:42:29 1999  Alexandre Julliard  <julliard@winehq.com>
8179         * misc/Attic/string.c, misc/Makefile.in:
8180         Albert den Haan <albertd@corel.ca>
8181         Remove string.c because all of its functions were moved to crtdll.c
8182         where they belonged.
8184         * 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:
8185         Patrik Stridvall <ps@leissner.se>
8186         Make it possible to compile with GNU C's -I- option.
8188         * loader/dos/dosvm.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8189         Work around gcc sig11 fault.
8191         * objects/gdiobj.c: Thuy Nguyen <thuy@macadamian.com>
8192         Fixed rounding in MulDiv.
8194         * graphics/psdrv/Makefile.in, graphics/psdrv/clipping.c, graphics/psdrv/init.c, graphics/psdrv/ps.c, include/psdrv.h:
8195         Luc Tourangeau <luc@macadamian.com>
8196         - implementation of SetDeviceClipping
8197         - coordinate system origin fix
8199         * win32/kernel32.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8200         Work-around for compiler bug.
8202         * dlls/comctl32/treeview.c, include/commctrl.h, include/treeview.h:
8203         Alex Priem <alexp@sci.kun.nl>
8204         - Implementation of simple comctl32 v5.0 changes.
8205         - TVM_SORTCHILDRENCB also accepts TVI_ROOT as a valid hParent.
8207         * dlls/advapi32/security.c: Ian Schmidt <irsman@iag.net>
8208         Added pointer validation and additional sanity check to IsValidSid().
8210         * controls/uitools.c: Dennis Bj|rklund <dennisb@cs.chalmers.se>
8211         Small fix in UITOOLS95_DrawRectEdge().
8212         Also a fix to draw scrollbar-buttons more like in win9x.
8214         * windows/painting.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8215         In WIN_UpdateNCRgn, do not send in WM_NCPAINT a region that is used
8216         afterwards, but a copy of it.
8218         * objects/region.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8219         Check better that handles are actual handles to a region.
8221         * windows/dce.c: Lawson Whitney <lawson_whitney@juno.com>
8222         Stop DCE_GetVisRect dereferencing a null wndPtr.
8224         * configure.in, documentation/.cvsignore, documentation/Makefile.in, documentation/wine.conf.man.in, documentation/wine.man.in, Make.rules.in, README, configure:
8225         James Juran <jrj120@psu.edu>
8226         Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
8227         Updated README and man page.
8228         Split documentation for wine.conf into new wine.conf(5) manpage.
8230         * include/ole2.h, include/winerror.h, ole/Makefile.in, ole/clipboard.c, ole/ole2.c, ole/ole2stubs.c, ole/olecli.c:
8231         Noel Borthwick <noel@macadamian.com>
8232         Implemented the OLE Clipboard API.
8234         * windows/winpos.c: Abey George <abey@macadamian.com>
8235         Validate the parent with the child window client rectangle when the
8236         parent's update region is not empty.
8238         * include/win.h, windows/painting.c:
8239         Francis Beaudet <francis@macadamian.com>
8240         Delay WM_NCPAINT message until the "painter's algorithm" kicks in.
8242         * controls/combo.c: Francis Beaudet <francis@macadamian.com>
8243         Fixed fake WM_LBUTTONUP message.
8245         * include/winversion.h, misc/version.c: Ian Schmidt <irsman@iag.net>
8246         Added version information for Win98.
8248         * include/commctrl.h: Alex Priem <alexp@sci.kun.nl>
8249         Macro definitions used SNDMSG instead of SendMessage[AW]. Bad.
8251         * misc/main.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8252         debug_(snoop|relay)_(exclude|include)list => fixed allocation, modules
8253         are now stored uppercase.
8255         * controls/button.c: Francis Beaudet <francis@macadamian.com>
8256         Implemented the BS_ICON style.
8258         * windows/dialog.c: Ove Kaaven <ovek@arcticnet.no>
8259         CreateDialogParamA should not call CreateDialogParamW, because
8260         that'd create a dialog box with a Unicode dialog procedure...
8262         * controls/scroll.c: Dennis Bj|rklund <dennisb@cs.chalmers.se>
8263         Win9x look & feel on scrollbars.
8265         * graphics/psdrv/README, graphics/psdrv/init.c, include/psdrv.h:
8266         Thuy Nguyen <thuy@macadamian.com>
8267         Introduced a [psdrv] section in wine.conf with a ppdfile value
8268         specifying the path and name of the PPD file.
8270         * dlls/comctl32/updown.c, include/updown.h:
8271         Sylvain St-Germain <sylvain@macadamian.com>
8272         Implementation of the updown buddy windproc subclassing for the
8273         handling of keyboard up and down arrow.
8275         * DEVELOPERS-HINTS: Jim Aston <jima@corel.ca>
8276         Updated documentation to reflect renamed header.
8278         * misc/winsock.c: Ove Kaaven <ovek@arcticnet.no>
8279         Added missing include netinet/tcp.h, for TCP_NODELAY.
8281         * dlls/comctl32/imagelist.c: Luc Tourangeau <luc@macadamian.com>
8282         GetIcon bug fix.
8284 Thu Jul 15 16:09:05 1999  Alexandre Julliard  <julliard@winehq.com>
8286         * include/module.h, loader/ne/module.c:
8287         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
8288         Add WINAPI for EntryAddrProc.
8290         * misc/ddeml.c: Keith Matthews <keith_m@sweeney.demon.co.uk>
8291         Minor bug fixes in DdeNameService, also changes to move towards
8292         process-safe code.
8294         * controls/button.c: Dennis Bj|rklund <dennisb@cs.chalmers.se>
8295         Win9x look & feel on buttons and a fix for ownerdrawn buttons
8296         (background set to COLOR_BTNFACE).
8298         * if1632/kernel.spec:
8299         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8300         GlobalSmartPageUnlock() stub added.
8302         * 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:
8303         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8304         Use position-independent code in assembly glue when building .so.
8305         Include if1632/ and graphics/win16drv/ into WineLib.
8306         Move miscemu/emulate.c into dlls/win87em/.
8308         * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
8309         Changed way of allocation open mci drivers (array => list); this list
8310         is now stored on a per process basis.
8312         * multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcicda.c:
8313         Eric Pouech <Eric.Pouech@wanadoo.fr>
8314         Removed fixed size array to store specific data (now using
8315         mci(Set|Get)DriverData to store specific data).
8316         Make use of default debugtools.h channel.
8317         Added CALLBACK attribute to DriverProc.
8319         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8320         Changed way of allocation open mci drivers (array => list).
8321         First valid ID for mci devices is now 1 (some progs were testing this
8322         value).
8323         Started implementing mci command table resources.
8324         Handled closing on MCI_ALL.
8326         * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8327         Removed fixed size array to store specific data (now using
8328         mci(Set|Get)DriverData to store specific data).
8329         Deferred opening of low-level device until play is requested.
8331         * multimedia/Attic/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8332         Fixed return value for 'open' command.
8333         Changed way of allocation open mci drivers (array => list).
8335         * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8336         Removed fixed size array to store specific data (now using
8337         mci(Set|Get)DriverData to store specific data).
8338         Fixed mmio chunk lookup on odd size 'fmt ' chunks.
8340         * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8341         Uniformized use of fd to midi device.
8342         Now allocating memory on system heap.
8343         Fixed bug when stopping all notes.
8345         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8346         Cosmetic fixes.
8347         Changed way of allocation open mci drivers (array => list).
8348         Started implementing mci command table resources.
8350         * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8351         No longer calling mm timers callbacks with mm timer crit sect locked.
8353         * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
8354         ERROR_MORE_DATA requires to write the needed number of bytes into the
8355         lpcchX value (verified against NT3.51 advapi32.dll).
8357         * include/winnt.h, win32/device.c:
8358         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8359         Fixed some CONTEXT86 vs. CONTEXT mismatches.
8361         * include/neexe.h, loader/ne/segment.c:
8362         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8363         Added support for 32-bit NE code segments.
8365         * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
8366         Fix a hang when we process WM_STYLECHANGED.
8367         Small optimization in TREEVIEW_DrawItem.
8368         Fix debugging crash in TREEVIEW_Expand.
8370 Mon Jul 12 13:46:38 1999  Alexandre Julliard  <julliard@winehq.com>
8372         * dlls/shell32/pidl.h: Marcus Meissner <marcus@jet.franken.de>
8373         Added missing prototype for ILFindChild().
8375         * dlls/advapi32/security.c, loader/dos/dosmod.c, misc/network.c:
8376         Eric Pouech <Eric.Pouech@wanadoo.fr>
8377         Compiler warnings fix.
8379         * misc/comm.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8380         Dumb fixes.
8382         * if1632/kernel.spec, loader/task.c:
8383         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8384         Fixed bugs introduced by 'register' and 'return' function changes.
8386         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
8387         Fixed DirectDrawSurface::Flip, do not change flags, exchange the low
8388         level physical surfaces (verified for XLIB with WC Prophecy).
8390 Sun Jul 11 17:20:06 1999  Alexandre Julliard  <julliard@winehq.com>
8392         * 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:
8393         Take advantage of the new registers saved in the STACK16FRAME to turn
8394         some 'register' functions into normal functions.
8395         Removed the few remaining 'return' functions to simplify relay
8396         handling.
8398         * 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:
8399         Marcus Meissner <marcus@jet.franken.de>
8400         Removed the old, historical and no longer working IPC support.
8402         * 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:
8403         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8404         Modularized CallFrom/To16 routines.  Adapted dependent routines,
8405         16-bit snoop/relay debugging, and make rules.
8407         * windows/message.c: Gerard Patel <g.patel@wanadoo.fr>
8408         Revert last change in window activation on mouse click.
8410         * memory/global.c: Rein Klazes <rklazes@casema.net>
8411         Fixed a case when GlobalSize did not return zero after an error.
8413 Sat Jul 10 13:16:56 1999  Alexandre Julliard  <julliard@winehq.com>
8415         * server/socket.c: Howard Abrams <howard@cs.nps.navy.mil>
8416         Renamed static global variable 'iovec' to 'myiovec'.
8418         * 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:
8419         Howard Abrams <howard@cs.nps.navy.mil>
8420         Added checks for sys/errno.h, sys/signal.h and sys/mman.h.
8422         * windows/dialog.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8423         Create dialog window using CreateWindowEx16/W depending on template
8424         type, not dialog procedure type.
8426         * dlls/shell32/shlfolder.c: Francois Boisvert <francois@macadamian.com>
8427         Made IShellFolder::fnParseDisplayName return a relative pidl.
8429         * dlls/comctl32/comctl32.h, dlls/comctl32/monthcal.c, dlls/comctl32/rsrc.rc, include/commctrl.h, include/monthcal.h:
8430         Alex Priem <alexp@sci.kun.nl>
8431         First try at the month calendar common control. Main features
8432         basically OK.
8434         * graphics/psdrv/init.c, include/winspool.h, dlls/winspool/info.c:
8435         Huw D M Davies <h.davies1@physics.ox.ac.uk>
8436         Implemented GetPrinterA and GetPrinterDriverA.
8438         * controls/button.c: Luc Tourangeau <luc@macadamian.com>
8439         Added BN_CLICKED notification in WM_SETFOCUS.
8441         * dlls/shell32/shellpath.c, dlls/shell32/shlfolder.c, dlls/shell32/shlmenu.c, dlls/shell32/shlview.c, dlls/shell32/shres.rc, include/docobj.h:
8442         Juergen Schmied <juergen.schmied@metronet.de>
8443         Small fixes.
8445         * relay32/Attic/shell32.spec, dlls/shell32/shellord.c:
8446         Juergen Schmied <juergen.schmied@metronet.de>
8447         Implemented StrToOleStrN.
8448         Fixed crash in ShellExecuteEx.
8449         Implemented SHRegOpenKeyA, SHRegQueryValueExA, StrToOleStr[A|W].
8450         Stubs for DoEnvironmentSubst[A|W], PathProcessCommand[A|W].
8452         * dlls/shell32/Makefile.in, dlls/shell32/memorystream.c:
8453         Juergen Schmied <juergen.schmied@metronet.de>
8454         IStream interface for file access.
8456         * dlls/shell32/iconcache.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h:
8457         Juergen Schmied <juergen.schmied@metronet.de>
8458         Fixed crash during second DLL_PROCESS_DETACH if the dll
8459         refcount reached zero after the second one (memory freed twice).
8461         * dlls/shell32/pidl.c, dlls/shell32/pidl.h:
8462         Juergen Schmied <juergen.schmied@metronet.de>
8463         Some more pidl-types.
8464         Implementation of ILIsParent.
8466         * dlls/shell32/shelllink.c:
8467         Juergen Schmied <juergen.schmied@metronet.de>
8468         Completely rewritten. IPersistStream interface implemented.
8470         * dlls/shell32/shellole.c:
8471         Juergen Schmied <juergen.schmied@metronet.de>
8472         DLLGetClassObject/Classfactory: create objects by CLSID not IID.
8474         * misc/main.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8475         Bugfix: exit() replaced by ExitProcess().
8477         * memory/local.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8478         Bugfix: correctly cope with end > 0xfffe.
8480         * library/winestub.c:
8481         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8482         Call ExitProcess() after WinMain() returns.
8484         * loader/ne/module.c:
8485         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8486         Improved behaviour of GetModuleHandle16 w.r.t dummy modules.
8487         Don't try to call WEP of dummy modules in FreeLibrary16().
8489         * include/winreg.h, misc/registry.c:
8490         Huw D M Davies <h.davies1@physics.ox.ac.uk>
8491         Added `const's to some registry API functions.
8493         * winedefault.reg: Ove Kaaven <ovek@arcticnet.no>
8494         Added a couple of DirectX CLSID entries. This makes Unreal completely
8495         independent of a windows installation.
8497         * ole/ole2nls.c: Dave Pickles <davep@nugate.demon.co.uk>
8498         GetTimeFormat() should return LocalTime not SystemTime.
8500         * 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:
8501         Dave Pickles <davep@nugate.demon.co.uk>
8502         FOR and IF commands added.
8503         MOVE command added, but no wildcard support.
8504         Redirection added.
8505         Fixed TIME (was reporting in GMT).
8506         More help text.
8508         * dlls/comctl32/tab.c: Abey George <abey@macadamian.com>
8509         Sometimes the text on a tab control got truncated.
8511         * controls/combo.c: Abey George <abey@macadamian.com>
8512         Fixed the height of the dropped list when there are few items in the
8513         list.
8515         * 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:
8516         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8517         Removed all EVENT_Synchronize( FALSE ) calls; use a periodic callback
8518         calling XFlush() instead.
8520         * 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:
8521         Huw D M Davies <h.davies1@physics.ox.ac.uk>
8522         Added patterned brushes (level 2 PostScript only).
8523         Simple PatBlt for PATCOPY, WHITENESS and BLACKNESS.
8525         * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
8526         Implementation of TVM_SORTCHILDREN. Massaged TVM_SORTCHILDRENCB a bit
8527         to use the same code path.
8529         * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8530         Fix InitTask() to work if DGROUP was manually resized.
8532         * dlls/advapi32/security.c, relay32/Attic/advapi32.spec:
8533         Ian Schmidt <irsman@iag.net>
8534         Added stub for SetThreadToken(), required by Office 2000.
8536         * include/commdlg.h:
8537         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8538         Bugfix: COMMDLG hook procedures were not CALLBACK.
8540         * ole/stg_stream.c: Thuy Nguyen <thuy@macadamian.com>
8541         It is possible for a stream to have both small block and big block
8542         chain as NULL.
8544         * loader/ne/module.c: Marcus Meissner <marcus@jet.franken.de>
8545         Made string compare case insensitive in GetModuleHandle16() as a
8546         quick fix for WinWord 6.
8548         * misc/network.c, relay32/mpr.spec:
8549         Juergen Schmied <juergen.schmied@metronet.de>
8550         Added stub for WNetGetUniversalName[A|W].
8552         * graphics/x11drv/palette.c:
8553         Juergen Schmied <juergen.schmied@metronet.de>
8554         Fixed crash due to invalid GDI_Obj.
8556         * objects/metafile.c: Juergen Schmied <juergen.schmied@metronet.de>
8557         Fixed crash due to invalid pointer.
8559 ----------------------------------------------------------------
8560 Sun Jul  4 16:09:20 1999  Alexandre Julliard  <julliard@winehq.com>
8562         * windows/*.c, ole/*.c, files/*.c, multimedia/*.c:
8563         Converted to the new debug interface, using script written by Patrik
8564         Stridvall.
8566         * 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:
8567         Patrik Stridvall <ps@leissner.se>
8568         Started on an implementation of Win64 for use on 64 bit platforms.
8570         * windows/nonclient.c: Noomen Hamza <noomen@macadamian.com>
8571         Windows should be activated in these cases:
8572         1- when we click on non active window.
8573         2- when we cancel a moving or resizing of a non active window.
8575         * documentation/distributors:
8576         Marcus Meissner <Marcus.Meissner@caldera.de>
8577         Added sample wine.conf.
8579         * 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:
8580         Patrik Stridvall <ps@leissner.se>
8581         Moved code to the X11 driver.
8583         * include/winuser.h, loader/resource.c, relay32/user32.spec:
8584         Joshua Thielen <thielen@netperson.net>
8585         Fixed DestroyAcceleratorTable and implemented CreateAcceleratorTableW.
8587         * windows/win.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
8588         WIN_FindWindow: use GetExeptr(pWnd->hInstance) for CLASS_FindClassByAtom.
8590         * controls/scroll.c: Ove Kaaven <ovek@arcticnet.no>
8591         Fixed check for whether to call SetWindowPos when showing a window
8592         scroll bar.
8594         * ole/typelib.c: Marcus Meissner <marcus@jet.franken.de>
8595         Check for complete lcid or just the primary language id in the
8596         registry lookups (fixes one FirstClassClient 32 problem).
8598         * windows/message.c: Per Ã…ngström <pang@mbox304.swipnet.se>
8599         Fixed a problem with apps that override the default behaviour on
8600         WM_MOUSEACTIVATE message (main window was not activated).
8602         * loader/pe_resource.c: Marcus Meissner <marcus@jet.franken.de>
8603         When enumerating resource, only use the lower 31 bit of the name as
8604         the offset (for the highest bit is '1'). Should fix wine-net/257.
8606         * relay32/ntdll.spec, tools/wrc/writeres.c, dlls/ntdll/rtl.c, misc/wsprintf.c, multimedia/mcimidi.c:
8607         Patrik Stridvall <ps@leissner.se>
8608         Fixes for compile on non-Intel platforms.
8610         * 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:
8611         Patrik Stridvall <ps@leissner.se>
8612         Fixed/moved/added missing/wrong function prototypes.
8614         * dlls/commdlg/cdlg_Da.rc, documentation/status/internationalisation, programs/progman/Da.rc, resources/sysres_Da.rc:
8615         Henrik Olsen <henrik@iaeste.dk>
8616         Cleanup of the Danish support.
8618         * windows/winpos.c: Yuxi Zhang <yuxiz@corel.ca>
8619         Fix a bug in SetWindowPos to prevent parent from erasing its child
8620         painting area when parent window and child window don't have
8621         WS_CLIPCHILDREN and WS_CLIPSIBLINGS.
8623         * windows/defwnd.c: Yuxi Zhang <yuxiz@corel.ca>
8624         Make defwndproc erase the correct location.
8626 Sat Jul  3 16:01:44 1999  Alexandre Julliard  <julliard@winehq.com>
8628         * 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:
8629         Marcus Meissner <marcus@jet.franken.de>
8630         some small include fixes, some checks for NULL ptrs,
8631         loader/elf.c: fixed the "lib" insertion
8632         crtdll: added fsopen()
8633         dinput: return that we are attached.
8635         * controls/button.c: Reverted previous change.
8637         * controls/edit.c: Gerard Patel <g.patel@wanadoo.fr>
8638         Cancel pending notifications when EM_SETMODIFY is called.
8640         * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
8641         Fix a crash when doing sorted inserts at top level.
8643         * windows/nonclient.c: Ove Kaaven <ovek@arcticnet.no>
8644         Reworked nonclient drawing code. Win31 look now works more like real
8645         Win31, so apps like Delphi 1.0 no longer go into infinite recursion
8646         etc. Fixed a couple of bugs in win95 look too, but not as thoroughly
8647         (e.g. WS_EX_WINDOWEDGE is still not handled).
8649         * windows/sysmetrics.c: Ove Kaaven <ovek@arcticnet.no>
8650         SM_C[XY]FRAME is BorderWidth + 1.
8652         * memory/local.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8653         Bugfix: LocalInit with start == 0 always places heap at end of segment.
8655         * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8656         Bugfix: TASK_CallToStart didn't pass correct hInstance to app.
8658         * 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:
8659         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8660         On NE process creation, move major part of NE EXE module loading and
8661         NE instance creation into the child process.
8663         * documentation/gui: Ove Kaaven <ovek@arcticnet.no>
8664         Window style updates.
8666         * libtest/guitest.c: Ove Kaaven <ovek@arcticnet.no>
8667         Some enhancements, and removal of C++ constructs.
8669         * graphics/d3ddevices.c, graphics/ddraw.c, graphics/ddraw_private.h:
8670         Marcus Meissner <marcus@jet.franken.de>
8671         Implemented chains of surfaces. This allows an unlimited number
8672         of backbuffers, and other attached surfaces (zbuffers, alpha buffers,
8673         whatever).
8675         * files/file.c, relay32/kernel32.spec:
8676         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
8677         Added UnlockFileEx stub.
8679         * documentation/status/internationalisation, resources/sysres_Ca.rc, resources/sysres_Es.rc:
8680         Jose Marcos Lopez Caravaca <jose.lopez@upcnet.upc.es>
8681         Added missing 61762 entry on system resources in Spanish and
8682         Catalonian languages.
8684         * controls/scroll.c: Gerard Patel <g.patel@wanadoo.fr>
8685         Make GetScrollInfo return scroll pos when program requests thumb pos
8686         outside drag operation.
8688 Sun Jun 27 15:40:44 1999  Alexandre Julliard  <julliard@winehq.com>
8690         * graphics/d3d_private.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
8691         Converted to the new debug interface.
8693         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
8694         ReadConsoleA: use ir as pointer to (req+1).
8696         * windows/painting.c: Gerard Patel <g.patel@wanadoo.fr>
8697         Remove the  validated child area from the update region of parent for
8698         windows without WS_CLIPCHILDREN style.
8700         * debugger/db_disasm.c:
8701         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8702         Bugfix: Grp8 instructions have *byte* BitOffset operand.
8704         * msdos/vxd.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8705         Bugfix: missing WINAPIs added.
8707         * ole/ole2.c: Marcus Meissner <marcus@jet.franken.de>
8708         OleMetaFilePictFromIconAndLabel16: slightly broken, use LPOLESTR16.
8710         * files/file.c: Gerard Patel <g.patel@wanadoo.fr>
8711         Return ERROR_DISK_FULL for WriteFile.
8713         * programs/cmdlgtst/cmdlgtst.c: Eric Williams <ewill@ncal.verio.com>
8714         Fixed missing return after about dialog.
8716 Sat Jun 26 19:09:11 1999  Alexandre Julliard  <julliard@winehq.com>
8718         * msdos/*.c, misc/*.c, miscemu/*.c, graphics/*.c:
8719         Converted to the new debug interface, using script written by Patrik
8720         Stridvall.
8722         * 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:
8723         Changed CONTEXT into CONTEXT86 everywhere we really want an i386
8724         context.
8725         Added #ifdef __i386__ around accesses to 386 registers in the generic
8726         CONTEXT structure.
8728         * include/winnt.h: Added CONTEXT86 definition.
8729         Added PowerPC context as an example (not tested).
8731         * relay32/relay386.c, relay32/snoop.c, include/wine/exception.h:
8732         Fixes for non-i386 compiling.
8734         * */*:
8735         Patrik Stridvall <ps@leissner.se>
8736         ANSI C fixes.
8737         Removed warnings.
8738         Made the include files self-sufficient.
8739         Some Solaris fixes.
8741         * relay32/comctl32.spec, dlls/comctl32/comctl32undoc.c, include/commctrl.h:
8742         Eric Kohl <ekohl@abo.rhein-zeitung.de>
8743         Fixed DPA_LoadStream and improved DPA_Merge.
8745         * dlls/comctl32/treeview.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
8746         Added check for invalid parent item.
8748         * dlls/shell32/shellord.c, relay32/shell32.spec:
8749         Eric Kohl <ekohl@abo.rhein-zeitung.de>
8750         Added SHDoDragDrop() stub.
8752         * objects/region.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
8753         Improved GetRandomRegion().
8755         * misc/network.c, relay32/mpr.spec:
8756         Eric Kohl <ekohl@abo.rhein-zeitung.de>
8757         Added WNetRemoveCachedPassword() stub.
8759         * dlls/comctl32/updown.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
8760         Store buddy window.
8762         * include/tooltips.h, dlls/comctl32/tooltips.c:
8763         Eric Kohl <ekohl@abo.rhein-zeitung.de>
8764         Started WM_NOTIFYFORMAT support.
8766         * dlls/comctl32/rebar.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
8767         Better ComboBoxEx placement.
8769         * loader/module.c: Dave Pickles <davep@nugate.demon.co.uk>
8770         Ensure that the command-line passed to the various *CreateProcess
8771         functions contains the path to the program being invoked.
8773         * windows/x11drv/wnd.c: Lars Heete <hel@admin.de>
8774         Prevent bad window X error.
8776         * windows/mdi.c, windows/sysmetrics.c:
8777         Abey George <abey@macadamian.com>
8778         The system menu icon on a MDI child window was corrupted when the
8779         child frame window is maximized within the main frame when the wine
8780         look is Windows 95.
8782         * controls/scroll.c, windows/defwnd.c:
8783         Slava Monich <Slava.Monich@netmanage.com>
8784         In case if scrollbar has the same background color as the window
8785         it belongs to, it needs to be filled with 0x55aa bitmap brush.
8787         * misc/registry.c: Marcus Meissner <Marcus.Meissner@caldera.de>
8788         Fixed the stringcompare in _find_or_add_*() (was missing tolower()s).
8790         * debugger/memory.c: Juergen Lock <nox@jelal.kn-bremen.de>
8791         Fix (well kludge around) FreeBSD's `Invalid address' errors.
8793         * controls/edit.c: Chris Morgan <cmorgan@wpi.edu>
8794         James Abbatiello <abbeyj@wpi.edu>
8795         Draw a 3D border around edit controls when not in WIN31_LOOK.
8797         * controls/button.c: Chris Morgan <cmorgan@wpi.edu>
8798         James Abbatiello <abbeyj@wpi.edu>
8799         Only draw a black border around normal buttons when in WIN31_LOOK.
8801         * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8802         Fixed alignment and position when looking for mmio chunks.
8804         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8805         No longer using global vars (shared data) for mm timers, but a
8806         specific structure for each attached process.
8807         Fixed alignment and position when looking for mmio chunks.
8808         Fixed WAVE mapper handling in waveGetCaps.
8810         * include/multimedia.h, multimedia/time.c:
8811         Eric Pouech <Eric.Pouech@wanadoo.fr>
8812         No longer using global vars (shared data) for mm timers, but a
8813         specific structure for each attached process.
8815         * documentation/distributors: Marcus Meissner <marcus@jet.franken.de>
8816         Wrote a small document on how to package WINE for distributors.
8818         * windows/nonclient.c: Noomen Hamza <noomen@macadamian.com>
8819         SetCursorPos() function was called with a window coordinates
8820         parameter.
8822         * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8823         Fixed null ptr deref introduced in last patch.
8825         * if1632/ole2.spec, ole/ole2.c:
8826         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
8827         Kind of implemented OleMetaFilePictFromIconAndLabel.
8829         * include/toolbar.h, dlls/comctl32/toolbar.c:
8830         Chris Morgan <cmorgan@wpi.edu>
8831         James Abbatiello <abbeyj@wpi.edu>
8832         Fixed various problems related to bitmaps and flat toolbars.
8834         * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
8835         James Abbatiello <abbeyj@wpi.edu>
8836         Fixed problems with disappearing text.
8838         * dlls/comctl32/ipaddress.c: Chris Morgan <cmorgan@wpi.edu>
8839         James Abbatiello <abbeyj@wpi.edu>
8840         Complete rewrite of messaging code to implement/fix all input behaviors.
8841         Fixed a few fixmes.
8843         * programs/wcmd/ChangeLog, programs/wcmd/README, programs/wcmd/batch.c, programs/wcmd/builtins.c, programs/wcmd/wcmd.h, programs/wcmd/wcmdmain.c:
8844         Dave Pickles <davep@nugate.demon.co.uk>
8845         Added more batch functionality, including the CALL GOTO and SHIFT
8846         commands plus batch command arguments.
8848         * documentation/status/multimedia: Eric Pouech <Eric.Pouech@wanadoo.fr>
8849         Updated to reflect current status.
8851         * loader/ne/module.c:
8852         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
8853         NE_LoadFileModule: Free module when NE_LoadDLLs fails.
8855         * graphics/psdrv/ps.c, graphics/psdrv/text.c, include/psdrv.h:
8856         Thuy Nguyen <thuy@macadamian.com>
8857         Implemented the underline and strikeout text attributes for the Wine
8858         PostScript driver.
8860         * windows/win.c: Pascal Lessard <pascal@macadamian.com>
8861         EnableWindow doesn't release the capture of a child window.
8863         * Makefile.in: James Juran <jrj120@psu.edu>
8864         Only test $(LIB_TARGET) = libwine.so.1.0 if $(LIB_TARGET) is
8865         non-blank.
8867         * controls/menu.c: Noomen Hamza <noomen@macadamian.com>
8868         Remove the WM_LBUTTONUP message from the queue after selecting a mouse
8869         menu item.
8871         * 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:
8872         Further server optimizations:
8873         - merged request and reply structures
8874         - build requests directly into the buffer to avoid a copy
8876 Tue Jun 22 19:14:41 1999  Alexandre Julliard  <julliard@winehq.com>
8878         * dlls/shell32/shell32_Ru.rc, graphics/x11drv/xfont.c, ole/nls/rus.nls, resources/sysres_Ru.rc, dlls/commdlg/cdlg_Ru.rc:
8879         Alexander Kanavin <ak@cave.hop.stu.neva.ru>
8880         Standard dialog boxes resources and OLE strings are now in cp1251 encoding
8881         Font mapper does not anymore use fonts in -koi8-r encoding
8882         Font mapper now recognises fonts in -windows-* encodings (these are
8883         provided by xfstt TrueType server)
8884         Font mapper now sees max 16384 fonts (was 2048)
8886         * relay32/builtin32.c:
8887         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8888         Share the HMODULE of built-in modules over all processes.
8889         Use the cached HMODULE to speed up relay debugging.
8890         Display the multi-instantiation warning only for 'dangerous' DLLs.
8892         * scheduler/process.c:
8893         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8894         Load USER32.DLL before calling UserSignalProc.
8896         * windows/timer.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8897         Use separate service for each windows timer.
8899         * if1632/compobj.spec, ole/compobj.c:
8900         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
8901         Added COMPOBJ.DllEntryPoint (Acrobat3 16bit needs it).
8903         * ole/typelib.c, dlls/comctl32/listview.c, dlls/comctl32/treeview.c:
8904         Eric Pouech <Eric.Pouech@wanadoo.fr>
8905         Thou shalt not use C++ comments.
8907         * include/driver.h, windows/driver.c:
8908         Eric Pouech <Eric.Pouech@wanadoo.fr>
8909         Moved to new trace interface.
8910         Fixed driver closing.
8912         * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8913         Better handling of double quotes in MCI string commands.
8915         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8916         Fixed memory leak in mci structures.
8918         * graphics/ddraw.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8919         Fixed error handling in DGA_IDirectDraw2Impl_GetCaps().
8921         * graphics/x11drv/clipping.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8922         Added missing GDI heap unlock.
8923         Moved to new debug interface.
8925         * dlls/commdlg/filedlg.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
8926         Fixed GetOpenFileName when called with both OFN_ALLOWMULTISELECT and
8927         OFN_EXPLORER bits set.
8929         * dlls/comctl32/imagelist.c:
8930         Francois Boisvert <francois@macadamian.com>
8931         Modified ImageList_LoadImageA to check the case where cx is set to zero.
8933         * windows/x11drv/keyboard.c: Philippe Froidevaux <pf@spin.ch>
8934         Added Swiss french keyboard layout.
8936         * server/select.c: Dump server objects on SIGHUP.
8938         * 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:
8939         Made server communication faster by using a shared memory block.
8940         A few other optimizations in request processing in the server.
8941         Moved automatically generated request definitions to server.h and
8942         removed include/server/request.h.
8944         * 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:
8945         Merged THDB and TEB structures.
8946         Made SetLastError(), GetCurrentThreadId() and PROCESS_Current() inline.
8948         * programs/winhelp/.cvsignore, programs/clock/.cvsignore, programs/progman/.cvsignore:
8949         Added Wa.s
8951 Sun Jun 20 15:09:32 1999  Alexandre Julliard  <julliard@winehq.com>
8953         * memory/instr.c, miscemu/main.c, programs/clock/Wa.rc, programs/progman/Wa.rc, programs/winhelp/Wa.rc:
8954         Fixed Winelib compilation.
8956 Fri Jun 18 18:29:04 1999  Alexandre Julliard  <julliard@winehq.com>
8958         * memory/Makefile.in, memory/instr.c, miscemu/Attic/instr.c, miscemu/Makefile.in:
8959         Include instruction emulation in Winelib.
8961         * include/wine/exception.h, win32/except.c: A few optimizations.
8963         * loader/dos/dosvm.c: Use exceptions instead of ctx_debug_call.
8965         * include/winbase.h, relay32/kernel32.spec, scheduler/syslevel.c, windows/x11drv/main.c:
8966         Added DebugBreak.
8968         * debugger/break.c, debugger/dbg.y, debugger/debug.l, debugger/info.c, debugger/registers.c, include/debugger.h, miscemu/main.c:
8969         Debugger is now called by exception handling.
8970         Added 'pass' command to pass exceptions to the app.
8972         * include/miscemu.h, include/sig_context.h, loader/signal.c, dlls/ntdll/exception.c, graphics/ddraw.c:
8973         Moved signal handling to exception.c, generate exceptions on signals.
8974         Added hook for debugger in exception handling (temporary).
8976         * 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:
8977         Pablo Saratxaga <srtxg@ping.be>
8978         Walloon language update.
8980         * windows/winpos.c, windows/x11drv/event.c, windows/x11drv/wnd.c, include/winpos.h, include/winuser.h:
8981         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8982         - Do not call XConfigureWindow if SetWindowPos was called due to a
8983           received ConfigureNotify event (to avoid recursion).
8984         - Use XTranslateCoordinates in EVENT_GetGeometry instead of manually
8985           walking the tree.
8986         - Set XSizeHint.win_gravity to StaticGravity for managed windows.
8988         * misc/version.c:
8989         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
8990         Bug fix.
8992         * loader/pe_image.c:
8993         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
8994         Fix compiler warning.
8996         * documentation/Makefile.in, Makefile.in:
8997         Alexander V. Lukyanov <lav@long.yar.ru>
8998         Install wine.man from current directory.
8999         Remove wine.man on distclean, not on clean.
9001 ----------------------------------------------------------------
9002 Sun Jun 13 08:49:47 1999  Alexandre Julliard  <julliard@winehq.com>
9004         * dlls/comctl32/listview.c, include/listview.h:
9005         Chris Morgan <cmorgan@wpi.edu>
9006         James Abbatiello <abbeyj@wpi.edu>
9007         Implemented LISTVIEW_SortItems() and LISTVIEW_CallBackCompare()
9009         * dlls/comctl32/status.c: Chris Morgan <cmorgan@wpi.edu>
9010         James Abbatiello <abbeyj@wpi.edu>
9011         Fixes a problem when using STATUSBAR_SetText() to toggle SBT_OWNERDRAW
9013         * dlls/comctl32/treeview.c: Chris Morgan <cmorgan@wpi.edu>
9014         James Abbatiello <abbeyj@wpi.edu>
9015         Adds some undocumented behavior to TREEVIEW_GetItemA().
9017         * loader/module.c: Marcus Meissner <marcus@jet.franken.de>
9018         Fixed ambigous else/brace problem, moved "name" computation in
9019         CreateProcess _before_ outputting it in the FIXME_()s.
9021         * objects/region.c: Marcus Meissner <marcus@jet.franken.de>
9022         Do not reuse a passed CONST RECT * pointer.
9024         * windows/x11drv/mouse.c:
9025         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9026         Bugfix: DISPLAY_SetCursor should not use USER-internals, as it is also
9027         used with native USER ...
9029         * loader/pe_image.c, scheduler/process.c:
9030         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9031         Removed broken hack to support shared DLLs (e.g. USER32.DLL) and
9032         replaced it by a somewhat less broken hack :-/
9034         * multimedia/mci.c: Marcus Meissner <marcus@jet.franken.de>
9035         Fixed small memory corruption.
9037 Sat Jun 12 18:36:55 1999  Alexandre Julliard  <julliard@winehq.com>
9039         * include/*.h:
9040         Patrik Stridvall <ps@leissner.se>
9041         Mad the include files idempotent using a consistent macro naming
9042         scheme.
9044         * windows/painting.c: Noomen Hamza <noomen@macadamian.com>
9045         Avoid painting destroyed windows.
9047         * dlls/*.c, if1632/*.c, loader/*.c:
9048         Converted to the new debug interface, using script written by Patrik
9049         Stridvall.
9051         * 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:
9052         Patrik Stridvall <ps@leissner.se>
9053         Added missing/wrong includes.
9055         * 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:
9056         Patrik Stridvall <ps@leissner.se>
9057         Removed direct references to CLASS internals.
9059         * include/process.h, misc/version.c, scheduler/process.c:
9060         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
9061         Rearrange winver detection code and cache the winver value we
9062         determined in the PDB to speed up.
9064         * windows/nonclient.c: Gerard Patel <g.patel@wanadoo.fr>
9065         Draws a border around windows with old win31 style (only ws_border) in
9066         win95 look.
9068         * include/commctrl.h, include/prsht.h, include/wine/obj_dataobject.h, include/wtypes.h:
9069         Patrik Stridvall <ps@leissner.se>
9070         Added CINTERFACE and NONAMELESSUNION support.
9072         * include/*.h:
9073         Patrik Stridvall <ps@leissner.se>
9074         Added extern "C" if __cplusplus is defined.
9076         * include/combo.h, controls/combo.c, controls/listbox.c:
9077         Francis Beaudet <francis@macadamian.com>
9078         Fixed a few behaviors of the combobox that were broken.
9080         * debugger/dbg.y, debugger/debug.l, debugger/info.c, include/module.h, include/process.h, loader/module.c, scheduler/process.c:
9081         Guy Albertelli <galberte@neo.lrun.com>
9082         Add new "walk" command options to list processes and modref's.
9084         * graphics/x11drv/dib.c:
9085         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
9086         X11DRV_DIB_SetImageBits_24/32: Fix the case for bits_per_pixel == 32
9087         and negative lines.
9089         * 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:
9090         Patrik Stridvall <ps@leissner.se>
9091         Changed xxx(VOID) to xxx(void).
9093         * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9094         - simplified internal data
9095         - thread safe access to internal structures
9096         - fixed bug on ONE_SHOT timers
9097         - deferred service thread call until really needed (no longer on WINMM
9098           or MMSYSTEM attachement)
9100         * include/process.h, include/services.h, loader/main.c, scheduler/services.c, scheduler/thread.c:
9101         Eric Pouech <Eric.Pouech@wanadoo.fr>
9102         Made the service thread instanciable in every process.
9104         * Make.rules.in, Makefile.in, configure, configure.in:
9105         James Juran <jrj120@psu.edu>
9106         Use Autoconf to find path to ldconfig.
9108         * ole/typelib.c: Francis Beaudet <francis@macadamian.com>
9109         Fixed a problem with the LoadTypeLib method.
9111         * misc/Makefile.in, misc/registry.c: Marcus Meissner <mm@jet.lst.de>
9112         Use @sysconfdir@ for the default registries in misc/registry.c too.
9114         * graphics/ddraw.c: Marcus Meissner <mm@jet.lst.de>
9115         Added generic pixel converter for 8->24.
9117         * windows/dialog.c: Pavel Roskin <pavel_roskin@geocities.com>
9118         DIALOG_ParseTemplate16() supported up to 127 controls. Bigger values
9119         were expanded to WORD incorrectly.
9121         * loader/dos/dosvm.c, loader/dos/module.c, msdos/dpmi.c:
9122         Ove Kaaven <ovek@arcticnet.no>
9123         Various DPMI fixes and preliminary DPMI raw mode switch handler.
9125         * windows/mdi.c: Noomen Hamza <noomen@macadamian.com>
9126         Fixed imprecision in the MDI tiling functionality.
9128         * objects/metafile.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
9129         Open files with more appropriate sharing mode.
9131         * objects/enhmetafile.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
9132         Small fixes for EnhMetaFile playback.
9134         * dlls/comctl32/comctl32undoc.c: Ian Schmidt <irsman@iag.net>
9135         Fixed an error and an off-by-one bug in DSA_SetItem().  This
9136         eliminates some crashes with Win98 native SHELL32.
9138         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
9139         Remove DIABLO_HACK (does not work anymore), add 1 FIXME, fix GetCaps()
9140         with caps1==NULL.
9142         * windows/syscolor.c: Slava Monich <Slava.Monich@netmanage.com>
9143         dwDataSize needs to be reset before each RegQueryValueEx() call.
9145         * multimedia/dsound.c: Ove Kaaven <ovek@arcticnet.no>
9146         Don't ignore application-requested primary buffer flags.
9148         * tools/build.c: Ove Kaaven <ovek@arcticnet.no>
9149         Clear high word of %esp when returning from CallFrom16.
9151         * include/comm.h, misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
9152         Implementation of EV_RXFLAG.
9154         * windows/winpos.c, windows/x11drv/event.c:
9155         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9156         Better implementation of [GS]etForegroundWindow.
9157         Fixed focus handling on inter-thread activation.
9158         Adapted FocusIn/Out event handling to per-queue focus.
9160         * loader/ne/module.c:
9161         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9162         Release Win16Lock during PROCESS_Create.
9164         * dlls/comctl32/imagelist.c: Luc Tourangeau <luc@macadamian.com>
9165         ImageList_GetIcon bug fix.
9167         * win32/time.c: Rein Klazes <rklazes@casema.net>
9168         Corrected a problem in GetTimeZoneInformation() due a change to
9169         mktime() in glibc-2.1.1 when daylight saving time is in effect.
9171         * debugger/db_disasm.c: Patrik Stridvall <ps@leissner.se>
9172         Changed K&R C function definition to ANSI C.
9174         * graphics/psdrv/bitmap.c, include/psdrv.h:
9175         Huw D M Davies <h.davies1@physics.ox.ac.uk>
9176         PSDRV_StretchDIBits should use logical co-ords.
9177         Some versions of ghostscript seem to eat one too many characters of
9178         image data. Add a '%' to the output file to work around this.
9180         * relay32/wnaspi32.spec:
9181         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
9182         Fixed WNASPI32 ordinals.
9184         * include/winbase.h:
9185         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
9186         Added the function definitions of GetStartupInfo*().
9188         * documentation/status/dde, misc/ddeml.c:
9189         Keith Matthews <keith_m@sweeney.demon.co.uk>
9190         1st cut implementation of DdeNameService (omits monitor callback)
9191         1st cut implementation of DdeKeepStringHandle (probably complete)
9192         DdeInitializeW - minor changes to initialise service names structure
9193         DdeGetLastError - start of proper last error retrieval
9194         DdeCreateStringHandle16 - added code for default codepage where not
9195         supplied.
9196         Various documentary/comment corrections.
9198 Fri Jun 11 18:33:46 1999  Alexandre Julliard  <julliard@winehq.com>
9200         * include/process.h, memory/environ.c, scheduler/process.c:
9201         Use the normal environment routines to build the env db of the initial
9202         process.
9204         * include/server.h, server/console.c, server/object.h, server/process.c, server/process.h, server/trace.c, tools/make_requests, win32/console.c:
9205         Return console handles in alloc_console request.
9206         Fixed read_console_input parameters to conform to the reply structure
9207         declaration.
9209 Mon Jun  7 17:46:39 1999  Alexandre Julliard  <julliard@winehq.com>
9211         * objects/bitmap.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9212         Fixed CreateCompatibleBitmap when called with 0 width or height.
9214         * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9215         Fixed mmioDescend when called with a parent chunk.
9217         * loader/signal.c: Marcus Meissner <marcus@jet.franken.de>
9218         Trying to fix sigaltstack() problem reported by Debian users.
9219         SIGTRAP might be undefined (beos).
9221         * ole/typelib.c: Marcus Meissner <marcus@jet.franken.de>
9222         Fixed TLB_Read (can easily get count!=bytesread at the end of the file).
9223         Fixed TLB_FindTlb (strstr on binary data will not work).
9225         * dlls/comctl32/treeview.c: Marcus Meissner <marcus@jet.franken.de>
9226         Fixed >> and * operator precedence problem.
9228         * windows/x11drv/mouse.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9229         Fixed order for entering critical sections (X11 vs. WndLock) when
9230         calling X11DRV_MOUSE_SetCursor.
9232         * loader/module.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9233         Consult ne.operating_system field for NE files in GetBinaryType().
9235         * server/process.c: Fixed initial process refcount.
9237 Sun Jun  6 17:28:21 1999  Alexandre Julliard  <julliard@winehq.com>
9239         * documentation/status/directplay, loader/dos/Makefile.in, documentation/Makefile.in, documentation/cdrom-labels:
9240         Forced commit to get rid of the vendor branch
9242         * programs/cmdlgtst/.cvsignore: Added cmdlgr.h
9244         * programs/regapi/regapi.c:
9245         Avoid use of strncmpi (reported by Ron Cemer).
9247         * include/wine/winestring.h, multimedia/joystick.c, include/winbase.h, include/winuser.h:
9248         Moved inclusion of winestring.h to winebase.h.
9249         Added Winelib macros for lstrncmp functions.
9251         * controls/scroll.c: Ron Cemer <roncemer@gte.net>
9252         Fixes for several bugs in which portions of the scrollbar were not
9253         being redrawn correctly, the focus rectangle was not being correctly
9254         removed from the thumb before redrawing, etc.; added complete Win9x
9255         and WinNT look and feel support.
9257         * windows/sysmetrics.c: Ron Cemer <roncemer@gte.net>
9258         Fixes for Win9x and WinNT look and feel.
9260         * files/dos_fs.c: Chris Morgan <cmorgan@wpi.edu>
9261         James Abbatiello <abbeyj@wpi.edu>
9262         Fixed response of GetFullPathNameA when buffer==NULL.
9264         * files/file.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
9265         CreateFileA/FILE_DoOpenFile: add verbose reporting of arguments.
9267         * 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:
9268         Dave Pickles <davep@nugate.demon.co.uk>
9269         Added Wine command-line interpreter.
9271         * if1632/thunk.c, include/callback.h, misc/callback.c:
9272         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9273         Removed Callback.CallTaskRescheduleProc().
9275         * include/main.h, miscemu/main.c, tools/build.c:
9276         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9277         Switch stacks in CALL32_Init().
9279         * loader/task.c, scheduler/process.c, include/process.h, include/task.h:
9280         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9281         16-bit scheduler reorganized: run all tasks in their own thread.
9282         Process creation sequence adapted to new scheduler.
9284         * include/services.h, loader/main.c, scheduler/services.c:
9285         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9286         Removed SERVICE_Exit().
9288         * windows/queue.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9289         Release WND lock before calling PostEvent16().
9291         * include/wnaspi32.h:
9292         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
9293         Add some defines.
9295         * dlls/wnaspi32/winaspi32.c:
9296         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
9297         ASPI_ExecScsiCmd: better return value and verbose error when no device
9298         found.
9300         * loader/module.c: Guy Albertelli <galberte@neo.lrun.com>
9301         Use SearchPath to test for existance of programs in lpCmdLine
9302         processing. For lpApplName do not append ".exe" and use
9303         DOSFS_GetFullName to locate the program. Move module find process
9304         after flag testing and provide quick exit if not found.
9306         * windows/dialog.c: Slava Monich <Slava.Monich@netmanage.com>
9307         Implemented dialog units -> pixels conversion very close to how it's
9308         actually done by Windows.
9310 Sat Jun  5 15:23:20 1999  Alexandre Julliard  <julliard@winehq.com>
9312         * 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:
9313         Paul Quinn <paulq@corel.ca>
9314         Some non-threatening fixes to some headers, as well as some casting
9315         changes that make winelib more win32 code compatible.
9317         * files/drive.c, include/winbase.h, relay32/kernel32.spec:
9318         <davep@nugate.demon.co.uk>
9319         Stub for SetVolumeLabel().
9321         * windows/message.c:
9322         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
9323         Add back lost treatment of HWND_TOPMOST.
9325         * windows/x11drv/event.c:
9326         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9327         Try to improve ConfigureNotify event processing.
9329         * objects/pen.c: Joshua Thielen <thielen@netperson.net>
9330         Allow pens with styles greater than PS_INSIDEFRAME to be created with
9331         ExtCreatePen.
9333         * relay32/oleaut32.spec, include/debugdefs.h, include/wine/obj_oleaut.h, ole/typelib.c, ole/typelib.h:
9334         Rein Klazes <rklazes@casema.net>
9335         Read/load type libraries. Implementation of ITypeLib, ITYpeInfo,
9336         ITypeLib2 and ITypeInfo2 methods.
9338         * ole/ole2disp.c: Rein Klazes <rklazes@casema.net>
9339         Allow NULL as argument to SysFreeString in accordance with SDK.
9341         * DEVELOPERS-HINTS: Klaas van Gend <klaas@vangend.demon.nl>
9342         - more up-to-date description of source tree
9343         - better example of required comments for an API implementation
9344         - replacement of WINE_PACKED by "pshpack1.h", etc.
9345         - naming conventions for non-api calls and types
9346         - location conventions for non-api header files and prototypes
9348         * relay32/mpr.spec, include/winnetwk.h, include/wnet.h, misc/network.c:
9349         Robert W Hall <bobh@n-cantrell.demon.co.uk>
9350         Added 2 stubs.
9352         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9353         Fixed behaviour of Alloc..ThunkletCallback[Ex] for NULL target.
9355         * windows/x11drv/event.c, windows/x11drv/wnd.c:
9356         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9357         Fixed potential memory corruption in EVENT_QueryZOrder.
9358         Fixed potential X synchronization problem in X11DRV_WND_SetHostAttr.
9360         * files/directory.c: Guy Albertelli <galberte@neo.lrun.com>
9361         Correct search order in SearchPath for Win 3.1/95/98. Still broken for NT.
9363         * windows/win.c: Slava Monich <Slava.Monich@netmanage.com>
9364         o check for both CW_USEDEFAULT and CW_USEDEFAULT16.
9365         o if x is CW_USEDEFAULT (or CW_USEDEFAULT16) and y is *not*
9366           CW_USEDEFAULT (or CW_USEDEFAULT16) then use y as a second
9367           parameter to ShowWindow(). Some apps (CALC.EXE for Win98
9368           is one of them) use this undocumented feature to create
9369           hidden window with WS_VISIBLE style set.
9371         * relay32/comctl32.spec, dlls/comctl32/comctl32undoc.c:
9372         Ian Schmidt <irsman@iag.net>
9373         Added partial implementation for DPA_LoadStream and stub for
9374         DPA_SaveStream.  Thanks to Eric Kohl (ekohl@abo.rhein-zeitung.de) for
9375         the partial implementation and parameter information.
9377         * debugger/stabs.c: Pavel Roskin <pavel_roskin@geocities.com>
9378         Make it possible to link Wine statically (at least on RedHat 6.0).
9380         * controls/menu.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9381         When looking into sys menu, check if items are present before
9382         dereferencing.
9384         * documentation/Attic/wine.man: Marcus Meissner <marcus@jet.franken.de>
9385         Autoconfigure the directories in the manpage.
9387         * 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:
9388         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9389         Removed DummyMotionNotify EVENT driver routine.
9391         * configure, configure.in, documentation/.cvsignore, documentation/Makefile.in, documentation/wine.man.in:
9392         Marcus Meissner <marcus@jet.franken.de>
9393         Autoconfigure the directories in the manpage.
9395         * files/file.c, include/winbase.h, relay32/kernel32.spec:
9396         James Juran <jrj120@psu.edu>
9397         Add stub for LockFileEx (KERNEL32.513).
9399         * documentation/status/internationalisation:
9400         Klaas van Gend <klaas@vangend.demon.nl>
9401         Current status of Wine on internationalisation.
9403         * controls/button.c: Rein Klazes <rklazes@casema.net>
9404         Do not process WM_LBUTTONUP message in ButtonWndProc()
9405         when the mouse is not captured.
9407         * graphics/psdrv/init.c, objects/dc.c:
9408         Noel Borthwick <noel@macadamian.com>
9409         From CreateCompatibleDC, pass the device name associated with the
9410         source DC in order to allow PSDRV_CreateDC to locate the printer info
9411         for the device.
9413         * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9414         Added some digital video interface
9415         Fixed a few bugs (device names are no longer converted to upper case,
9416         added call back window, all structures moved to 32 bit...).
9418         * if1632/thunk.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9419         Workaroung gcc 2.7.2.x sig 11 issue.
9421         * include/multimedia.h, multimedia/mci.c, multimedia/mmsystem.c:
9422         Eric Pouech <Eric.Pouech@wanadoo.fr>
9423         Added (still incomplete) handling of MCI_BREAK command.
9425         * documentation/no-windows: James Juran <jrj120@psu.edu>
9426         Updated documentation/no-windows.
9428         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
9429         Speedup enhancement for the 8->16 and 8->32 copy loop hotspots,
9430         using a faster generic routine and some inline assembly for i386
9431         (cleanups by Ove).
9433 Fri Jun  4 19:49:54 1999  Alexandre Julliard  <julliard@winehq.com>
9435         * server/handle.c, server/handle.h, server/process.c, server/process.h, server/thread.c:
9436         Made handle table a separate object.
9437         Global handle table is no longer bound to a process.
9438         Removed special handling of the initial process.
9440         * server/main.c, server/object.c, server/object.h:
9441         Added optional debugging code in object management.
9443 Sat May 29 14:27:27 1999  Alexandre Julliard  <julliard@winehq.com>
9445         * 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:
9446         Got rid of THREAD_InitDone.
9447         Made THREAD_Current() inline.
9448         Moved server tid into TEB.
9450         * windows/dialog.c: Luc Tourangeau <luc@macadamian.com>
9451         Reimplemented the CheckRadioButton function.
9453         * dlls/comctl32/tab.c: Chris Morgan <cmorgan@wpi.edu>
9454         James Abbatiello <abbeyj@wpi.edu>
9455         Fixed incorrect lookup of background color.
9457         * dlls/comctl32/commctrl.c, dlls/comctl32/status.c:
9458         Chris Morgan <cmorgan@wpi.edu>
9459         James Abbatiello <abbeyj@wpi.edu>
9460         Fixed problems when using multiple style flags together.
9462         * dlls/comctl32/tooltips.c: Chris Morgan <cmorgan@wpi.edu>
9463         James Abbatiello <abbeyj@wpi.edu>
9464         Fixed a problem when using string resources as tooltext.
9466         * windows/win.c: Francis Beaudet <francis@macadamian.com>
9467         Fixed a behavior of the focus when a parent window is disabled.
9469         * graphics/x11drv/graphics.c: Joshua Thielen <thielen@netperson.net>
9470         Fixed a bug which causes the PolyBezier to not be updated on redraw
9471         (when you want them to be).
9473         * windows/input.c: Gerard Patel <g.patel@wanadoo.fr>
9474         Remove unnecessary warning in TranslateAccelator.
9476         * server/handle.c:
9477         Fixed duplicate_handle to work with pseudo-handles (reported by Marcus
9478         Meissner).
9480         * 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:
9481         Paul Quinn <paulq@corel.ca>
9482         ver.h is a legacy header. winver.h should be used instead.
9484         * dlls/tapi32/phone.c, misc/crtdll.c:
9485         Marcus Meissner <marcus@jet.franken.de>
9486         Fixed some warnings.
9488         * include/commctrl.h, include/listview.h, dlls/comctl32/listview.c:
9489         Luc Tourangeau <luc@macadamian.com>
9490         - Reimplemented the scrolling using SetScrollInfo and GetScrollInfo.
9491         - Implemented LVM_FINDITEM message.
9492         - Added some new window styles.
9493         - Fixed some bugs and extended a number of existing functions.
9494         - Modified selection functions to support area selection (for group
9495           selection in LVS_ICON and LVS_SMALLICON).
9497         * misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
9498         Fixed a couple of missing event notifications. Some more debugging
9499         messages.
9501         * windows/x11drv/keyboard.c: Rikhardur Egilsson <rikardur@sky.fr>
9502         Icelandic keyboard support.
9504         * graphics/ddraw_private.h, graphics/ddraw.c:
9505         Lionel Ulmer <ulmer@directprovider.net>
9506         - better debug output for surface creation
9507         - added (experimental) DIBSection implementation of GetDC / ReleaseDC
9509         * graphics/d3ddevices.c: Lionel Ulmer <ulmer@directprovider.net>
9510         Corrected warning.
9512         * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
9513         Support TPM_RETURNCMD in TrackPopupMenu.
9515         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
9516         Fix <return> key (somehow we get a control keystate).
9518         * loader/dos/module.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
9519         Fixed compilation erros on non-Linux systems.
9521         * include/debugtools.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
9522         Added missing TRACE define when NO_DEBUG_MSGS was defined.
9524         * dlls/shell32/shellord.c: Ian Schmidt <irsman@iag.net>
9525         Added missing WINAPI for SHValidateUNC.
9527         * documentation/languages: Klaas van Gend <klaas@vangend.demon.nl>
9528         Adapted to the new dll resource handling by Bertho Stultiens.
9530 Mon May 24 15:02:18 1999  Alexandre Julliard  <julliard@winehq.com>
9532         * misc/shell.c: Release the Win16Lock before calling WinExec.
9534         * scheduler/thread.c, include/process.h, loader/ne/module.c, loader/task.c:
9535         Removed process argument to PROCESS_CallUserSignalProc.
9537         * scheduler/process.c:
9538         Moved remaining initialisations to the new process context.
9539         Shuffled things around a bit in PROCESS_Start to avoid deadlocks.
9540         Changed PROCESS_CallUserSignalProc to avoid accessing another process
9541         address space.
9543         * include/server.h, server/process.c, server/trace.c, tools/make_requests:
9544         Added support for dumping variable-size data of server replies.
9545         Added cmd_line and cmd_show in new_process request.
9547         * if1632/mmsystem.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
9548         fixed builtin mmsystem.dll init sequence
9550         * multimedia/Attic/init.c, multimedia/Makefile.in:
9551         Eric Pouech <Eric.Pouech@wanadoo.fr>
9552         removed obsoleted init.c source file
9554         * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
9555         removed unnecessary MCI drivers entry point
9556         added undocumented mmsystem functions
9558         * multimedia/time.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9559         moved to new trace interface
9560         now calling time init function from mmsystem and/or winmm entry point
9562         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9563         included DLL init sequence (from obsoleted init.c)
9564         fixed builtin mmsystem.dll init sequence
9565         fixed PlaySound when used with an asynchronous audio driver
9566         fixed midiStream functions for Stop/Pause/Restart functions
9567         fixed error handling in waveOutOpen with QUERY_FORMAT flag
9569         * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9570         included midi init sequence (from obsoleted init.c)
9571         moved to new trace interface
9572         simplified code with using new configuration constant (HAVE_OSS_MIDI)
9573         fixed erroneous warnings
9575         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9576         included mci init sequence (from obsoleted init.c)
9577         moved to new trace interface
9579         * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9580         output: better internal thread interface (orthogonalization of states and events)
9581         output: removed use of DSP_IOCTL_GETOSPACE
9582         output: fixed latency in reset messages handling
9583         output: replaced some polling mechanisms with blocking ones
9584         output: fixed get/set volume functions
9586         * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9587         moved to the new debug interface
9588         fixed bugs in pause/play/stop functions
9589         fixed signature of driver entry point
9591         * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9592         moved to the new debug interface
9593         fixed bugs in pause/play functions
9594         fixed signature of driver entry point
9596         * multimedia/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9597         Updated traces.
9599         * windows/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9600         Remove extraneous winuser16.h.
9602         * graphics/x11drv/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9603         Changed printf into TRACE.
9605         * debugger/expr.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9606         Fixed a few typos.
9608         * debugger/stack.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9609         Check when backtracking the stack if frames are correct (readable).
9611         * windows/event.c, include/message.h, include/winsock.h, loader/main.c, loader/task.c, misc/winsock.c:
9612         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9613         Moved WINSOCK network IO event handling to special thread.
9614         Removed EVENT_WaitNetEvent, introduced a global scheduler event.
9616         * miscemu/main.c, scheduler/process.c:
9617         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9618         Wait until child initialized before returning from PROCESS_Create.
9620         * relay32/kernel32.spec, win32/kernel32.c:
9621         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9622         Use register functions with arguments for LogApiThk...
9624         * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
9625         James Abbatiello <abbeyj@wpi.edu>
9626         Cleaned up LISTVIEW_KeyDown by using LISTVIEW_GetNextItem.  Removed unused
9627         variable in LISTVIEW_GetNextItem.
9629 Sun May 23 20:02:05 1999  Alexandre Julliard  <julliard@winehq.com>
9631         * 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:
9632         Use the new debug functions to send debug events at appropriate places.
9633         Pass the process creation flags to PROCESS_Create.
9635         * scheduler/Makefile.in, scheduler/client.c, scheduler/debugger.c, win32/newfns.c, win32/process.c, include/winbase.h, misc/lstr.c:
9636         Implemented the Win32 debug API functions.
9638         * 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:
9639         Added debug events support.
9641 ----------------------------------------------------------------
9642 Sun May 23 10:25:26 1999  Alexandre Julliard  <julliard@winehq.com>
9644         * 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:
9645         Converted to the new debug interface, using script written by Patrik
9646         Stridvall.
9648         * scheduler/process.c:
9649         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9650         Bugfix: dwFlags must describe target process in UserSignalProc.
9652         * dlls/shell32/shellord.c: Ian Schmidt <irsman@iag.net>
9653         Added missing WINAPI to SHELL32_654 stub.  Fixes crash in Win98
9654         Explorer.
9656         * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
9657         James Abbatiello <abbeyj@wpi.edu>
9658         LISTVIEW_KeyDown: Invalidate the listview window only when the
9659         selected item changes.
9661         * if1632/kernel.spec, misc/wsprintf.c, relay32/kernel32.spec, win32/kernel32.c:
9662         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9663         Added _DebugOutput (KERNEL.328), LogApiThk (KERNEL.423), LogApiThkLSF
9664         (KERNEL32.42), LogApiThkSL (KERNEL32.44), LogCBThkSL (KERNEL32.47),
9665         and SSConfirmSmallStack (KERNEL.704).
9667         * if1632/display.spec, windows/display.c:
9668         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9669         Fix typo (wrong DISPLAY.CheckCursor ordinal).
9670         Superfluous FIXME converted to TRACE in CheckCursor.
9672         * relay32/relay386.c:
9673         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9674         Bugfix: syslevel relay check was too strict.
9676         * server/mapping.c: Marcus Meissner <marcus@jet.franken.de>
9677         Do not use pagesize aligned size_low to grow mapped file, but original
9678         size_low. (fixes Heises Index Register)
9680 Sat May 22 19:22:26 1999  Alexandre Julliard  <julliard@winehq.com>
9682         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
9683         - added some more debug output
9684         - corrected a slight bug in DGA DirectDraw creation
9686         * windows/win.c: Francis Beaudet <francis@macadamian.com>
9687         Fixed a major memory leak in the window management code.
9689         * windows/winpos.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9690         In SetWindowPos if changing Z order and child window not yet in its
9691         parent list, do not link it in WINPOS_ShowIconTitle, check for retval
9692         of WIN_FindWndPtr.
9694         * graphics/x11drv/dib.c: Pavel Roskin <pavel_roskin@geocities.com>
9695         Disable passing device context to X11DRV_DIB_BuildColorMap when RGB
9696         colormap is used.
9698         * debugger/dbg.y: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9699         Don't freeze other thread while it may hold the X critical section.
9701         * include/display.h, loader/main.c, windows/display.c:
9702         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9703         Added UserRepaintDisable16().
9705         * windows/dinput.c, windows/message.c:
9706         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9707         Removed EVENT_WaitNetEvent() calls.
9709         * windows/input.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9710         Added IsUserIdle16().
9712         * include/ttydrv.h, windows/ttydrv/event.c, windows/ttydrv/init.c:
9713         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9714         Adapted to EVENT_ driver changes.
9716         * loader/task.c, scheduler/synchro.c:
9717         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9718         Adapted to event synchronization changes.
9720         * include/message.h, include/x11drv.h, windows/event.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/wnd.c:
9721         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9722         Moved X input event handling out of EVENT_WaitNetEvent and into
9723         service thread callback; moved EVENT_WaitNetEvent out of the EVENT_
9724         driver.  Changed winContext to hold HWND instead of WND *.
9726         * windows/winpos.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9727         Don't change Z-order of child windows when activating.
9729         * dlls/winspool/info.c, include/wine/wingdi16.h, include/winerror.h, include/winspool.h, relay32/winspool.spec:
9730         Huw D M Davies <h.davies1@physics.ox.ac.uk>
9731         Implemented AddPrinterA, AddPrinterDriverA and GetPrinterDriverDirectory
9732         Moved some 16bit GDI function declarations from winspool.h -> wingdi16.h
9734         * configure, configure.in, include/acconfig.h, include/config.h.in:
9735         Eric Pouech <Eric.Pouech@wanadoo.fr>
9736         Create a new configuration manifest constant HAVE_OSS_MIDI.
9738         * loader/dos/module.c: Ove Kaaven <ovek@arcticnet.no>
9739         Fixed silly EINTR bug with starting dosmod.
9741         * graphics/ddraw.c: Kevin Holbrook <kwh@neosoft.com>
9742         Should compare to X11 constant "None" since a colormap is an X
9743         Resource ID and not a pointer.
9745         * controls/listbox.c: Paul Quinn <paulq@corel.ca>
9746         Stop a listbox bug that causes a div by zero when the item height
9747         is zero. Doesn't solve the root of the problem though.
9749         * dlls/shell32/shell32_Pt.rc:
9750         Andre Malafaya Baptista <Malafaya@milenio3.pt>
9751         About dialog translated to Portuguese.
9753         * if1632/thunk.c: James Juran <jrj120@psu.edu>
9754         task.h was included twice.  Removing one fixed a sig11 in gcc-2.7.2.3.
9756         * objects/cursoricon.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
9757         Check if dc has been created before using it.
9759         * graphics/escape.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
9760         Add a few more 32->16 Escape conversions.
9762         * relay32/relay386.c, if1632/relay.c:
9763         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9764         Check for syslevel violations while relay debugging.
9766         * if1632/kernel.spec, include/syslevel.h, include/thread.h, scheduler/syslevel.c, windows/win.c:
9767         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9768         Improved syslevel handling, store currently held syslevels in thread
9769         database, WIN_CritSection converted to syslevel.
9771         * include/windows.h: Joshua Thielen <thielen@netperson.net>
9772         Added mmsystem.h include.
9774         * loader/main.c, loader/task.c, scheduler/process.c, windows/user.c, if1632/kernel.spec, include/user.h, include/wine/winbase16.h:
9775         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9776         Added ExitKernel16 (replacing USER_ExitWindows), ExitProcess16, and
9777         MapProcessHandle; stub for BUNNY_351.
9779         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9780         Handle proc == NULL in THUNK_SetDCHook correctly.
9782         * files/profile.c:
9783         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
9784         Added support for the undocumented combination
9785         GetPrivateProfileStringA(section == NULL, entry == NULL, ...
9787         * dlls/comctl32/header.c: Chris Morgan <cmorgan@wpi.edu>
9788         James Abbatiello <abbeyj@wpi.edu>
9789         Cleaner null pointer check in HEADER_InsertItemA and HEADER_InsertItemW.
9791         * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
9792         James Abbatiello <abbeyj@wpi.edu>
9793         Implemented GetNextItem for the Listview control.
9795         * scheduler/services.c: Ove Kaaven <ovek@arcticnet.no>
9796         Expire timers on expiry time too, not just after.
9798         * 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:
9799         Paul Quinn <paulq@corel.ca>
9800         Microsoft com vtable compatibility workaround for g++.  Basically adds
9801         an optional 8 bytes padding to COM objects where the RTTI would be.
9803         * 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:
9804         Marcus Meissner <marcus@jet.franken.de>
9805         Replaced all occurences of SYSMETRICS_xx and sysMetrics[SM_xx] by
9806         GetSystemMetrics(SM_xx), removed no longer needed includes of
9807         sysmetrics.h.
9809         * msdos/int16.c: Ove Kaaven <ovek@arcticnet.no>
9810         Added INT_Int16AddChar.
9812         * loader/resource.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
9813         Bugfix: Prevent null-pointer dereference in TRACE argument list in
9814         RES_FindResource
9816         * loader/elfdll.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
9817         Fixed wrong NE module registration so that resources work.
9819         * if1632/thunk.c, tools/build.c, win32/kernel32.c:
9820         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9821         Set %ebx to point to real 16-bit stack in CBClientThunkSL.
9822         Pass %esi back-and-forth in CBClientThunkSL(Ex).
9823         Copy modified buffers back after return from FT_Thunk.
9824         Fix broken recognition of LS thunklets.
9826         * dlls/comctl32/comctl32undoc.c, dlls/comctl32/rebar.c, dlls/comctl32/toolbar.c, dlls/comctl32/updown.c:
9827         Marcus Meissner <marcus@jet.franken.de>
9828         Removed use of win.h, sysmetrics.h and associated WINE USER internal
9829         variables. Added missing infoPtr->Buddy = hwndBud; in updown.c
9831         * 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:
9832         Eric Kohl <ekohl@abo.rhein-zeitung.de>
9833         Toolbar customization dialog (take one).
9835         * windows/win.c: Francis Beaudet <francis@macadamian.com>
9836         Fixed GetTopWindow so it will correctly handle the NULL parameter.
9838         * include/process.h, loader/module.c:
9839         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9840         Fix swapped FreeLibary return values. Handle FreeLibrary( 0 ) better.
9841         Fix DLL_PROCESS_DETACH call sequence bugs resulting from nested
9842         FreeLibrary calls.
9844         * if1632/mmsystem.spec, multimedia/mmsystem.c:
9845         Marcus Meissner <marcus@jet.franken.de>
9846         Fixed specs for mixerGetDevCaps16/mixerGetID16, fixed mixGetDevCaps16.
9848         * include/miscemu.h, msdos/devices.c, msdos/dosmem.c, msdos/int21.c:
9849         Ove Kaaven <ovek@arcticnet.no>
9850         Changed global DOS_LOL into function DOSMEM_LOL() in order to operate
9851         on the correct address space. Added DOSMEM_MovePointers() that
9852         relocates selectors when the DOS address space changes (i.e. when
9853         dosmod is spawned, particularly from Win16 apps that uses DPMI to
9854         execute real-mode code). More complete DOS device implementation.
9856         * include/dosexe.h, loader/dos/dosvm.c, loader/dos/module.c:
9857         Ove Kaaven <ovek@arcticnet.no>
9858         Added MZ_Current() (returns current LPDOSTASK) and DOSVM_Wait()
9859         (DOSVM idle message loop), and fields hConInput and hConOutput.
9861         * objects/bitmap.c: Pascal Lessard <pascal@macadamian.com>
9862         Add some null checking in the Get/SetBitmapBits functions.
9864         * misc/crtdll.c, relay32/crtdll.spec:
9865         Marcus Meissner <marcus@jet.franken.de>
9866         Added init function for CRTDLL, allocate stdio/stderr/stdout on
9867         DLL_PROCESS_ATTACH, increase buffer for vfprintf() (Win95 arp.exe
9868         needs 1.3KB).
9870         * debugger/memory.c: Marcus Meissner <marcus@jet.franken.de>
9871         Added support for FreeBSD 3.0 to DEBUG_checkmap_bad().
9873         * misc/winsock.c: James Juran <jrj120@psu.edu>
9874         Print a more effective (and visible) error message when an application
9875         can't create a socket with type == SOCK_RAW.
9877         * include/mmreg.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
9878         Some more defines for multimedia.
9880         * msdos/vxd.c, win32/device.c:
9881         Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
9882         Some stubs for pccard vxd to debug the native shell32.
9884         * multimedia/time.c: Ove Kaaven <ovek@arcticnet.no>
9885         Use service thread for "true" multimedia timers.
9886         Removed implementation of fake multimedia timers.
9887         Set minimum resolution to 10 ms (the timing resolution of the Linux
9888         kernel). Fixed a couple of flaws.
9890         * misc/spy.c: Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
9891         Implemented printing out of some structures.
9893 Thu May 20 16:40:23 1999  Alexandre Julliard  <julliard@winehq.com>
9895         * server/select.c, server/socket.c:
9896         Set only the client socket in non-blocking mode instead of all fds;
9897         should avoid problems with stdio handles.
9899 Mon May 17 16:20:53 1999  Alexandre Julliard  <julliard@winehq.com>
9901         * 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:
9902         Huw D M Davies <h.davies1@physics.ox.ac.uk>
9903         Implement DocumentProperties, DeviceCapabilities, beginnings of
9904         Open/Get/ClosePrinter.  Additions to PSDRV_DeviceCapabilities.
9905         Split off WINSPOOL into its own directory.
9906         Several functions added to DC_Funcs.
9907         Based largely on a patch by Pascal Lessard <pascal@macadamian.com>
9909         * loader/loadorder.c: Marcus Meissner <marcus@jet.franken.de>
9910         glide2x loadorder is "so,native".
9912         * msdos/dpmi.c: Ove Kaaven <ovek@arcticnet.no>
9913         Improved shortcuts - follows jumps in trying to avoid switching to
9914         real mode unnecessarily.
9916         * documentation/no-windows: Ove Kaaven <ovek@arcticnet.no>
9917         Updated and improved instructions.
9919         * debugger/expr.c: Ove Kaaven <ovek@arcticnet.no>
9920         Made "Wine-dbg>set *seg:off = val" work (previously only
9921         "Wine-dbg>set *off = val" worked).
9923         * multimedia/mcimidi.c, multimedia/mciwave.c:
9924         Jukka Kangas <jtkangas@nic.fi>
9925         When opening the file we don't need MMIO_EXCLUSIVE
9926         rights. MMIO_DENYWRITE should be sufficient.
9928         * dlls/shell32/shellpath.c:
9929         Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
9930         Prevent crash in stub of SheGetDirW.
9932         * dlls/shell32/shlmenu.c:
9933         Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
9934         Further implementation of the FileMenu.
9936         * windows/mdi.c: Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
9937         Set the default menu item of the window menu
9939         * wine.ini: James Juran <jrj120@psu.edu>
9940         Changed serial ports in wine.ini to /dev/ttySX from /dev/cuaX in
9941         accordance with Linux 2.2 Changes file.
9943         * if1632/kernel.spec, loader/module.c:
9944         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9945         Release Win16Lock when calling LoadLibrary32 from 16-bit code.
9947         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9948         Fixed THUNK_SetDCHook when using native USER.
9950         * win32/kernel32.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9951         Bugfix: FT_PrologPrime was broken due to relay changes.
9953         * misc/network.c, relay32/mpr.spec:
9954         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9955         Some stubs added.
9957         * windows/hook.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9958         Suspend window locks before calling hook procedure.
9960         * windows/dialog.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9961         Fixed window refcount handling in GetNextDlgGroupItem.
9963         * controls/button.c:
9964         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
9965         Removed superfluous WIN_ReleaseWndPtr.
9967         * graphics/ddraw.c: Marcus Meissner <marcus@mud.de>
9968         Xlib_IDirectDrawSurface4Impl_Flip should show 'flipto' surface, not
9969         previous one. (reported by Ove)
9971 Sun May 16 17:11:58 1999  Alexandre Julliard  <julliard@winehq.com>
9973         * include/winbase.h, include/winnt.h:
9974         Added a few missing debug event definitions.
9976         * server/console.c, server/file.c, server/pipe.c, server/thread.c, server/thread.h:
9977         Adapted to new select interface.
9978         Fixed bug in *_signaled routines that could cause busy-waiting in the
9979         select loop.
9981         * server/object.c, server/object.h, server/request.c, server/select.c, server/socket.c:
9982         Changed select interface, separated timeouts from file descriptors.
9984         * server/handle.c, server/handle.h, server/process.c, server/process.h:
9985         Moved process structure definition to process.h.
9986         Added suspend/resume_process.
9987         Moved handle table back into the process structure.
9989         * scheduler/client.c, server/trace.c, include/server.h:
9990         Added TEB in init_thread request.
9992 Sat May 15 10:52:56 1999  Alexandre Julliard  <julliard@winehq.com>
9994         * miscemu/instr.c:
9995         Tried to add an error message when crashing on a selector load because
9996         of missing LDT sharing between threads (untested).
9998         * 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:
9999         Server reorganization:
10000         - moved request handlers to the specific C files
10001         - moved handle management to handle.c
10002         - moved server private includes to server/ instead of include/server/
10004         * Make.rules.in: Get include files from the current directory first.
10006 Fri May 14 18:39:37 1999  Alexandre Julliard  <julliard@winehq.com>
10008         * 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:
10009         Marcus Meissner <marcus@jet.franken.de>
10010         Replaced WIN_GetWindowInstance by GetWindowLongA(GWL_HINSTANCE),
10011         removed unnecessary win.h includes, added syslevel.h to queue.c.
10013         * controls/combo.c: Francois Boisvert <francois@macadamian.com>
10014         Changed CBGetDroppedControlRect to be compliant with Windows API.
10016         * include/wine/exception.h, win32/except.c:
10017         Fixed a few bugs, and improved the exception macros (based on
10018         suggestions by Sergei Turchanov).
10020         * 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:
10021         Converted to the new debug interface, using script written by Patrik
10022         Stridvall.
10024         * 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:
10025         Converted to the new debug interface.
10027         * windows/painting.c:
10028         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10029         Fixed invalid window refcount handling in RDW_Paint().
10031         * windows/message.c: Noel Borthwick <noel@macadamian.com>
10032         Fix a deadlock with the system message queue by ensuring the system message
10033         queue is unlocked while the actual message is being processed.
10035         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
10036         Check if in depth-conversion mode before returning an error message
10037         in IDirectDrawPaletteImpl_GetEntries.
10039 Thu May 13 18:53:05 1999  Alexandre Julliard  <julliard@winehq.com>
10041         * 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:
10042         Lionel Ulmer <ulmer@directprovider.net>
10043         Replaced all the Mesa specific code by GLX code. Should work now on
10044         any OpenGL implementation.
10046         * windows/x11drv/keyboard.c: <TTarrant@Etnoteam.It>
10047         Added Italian keyboard support.
10049         * graphics/enhmetafiledrv/graphics.c:
10050         Huw D M Davies <h.davies1@physics.ox.ac.uk>
10051         Fixed a couple of memcpy errors.
10053         * graphics/psdrv/driver.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
10054         Small fix to help native win95 PrintDlg on the way.
10056         * dlls/winaspi/winaspi16.c, if1632/winaspi.spec, include/aspi.h:
10057         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
10058         Implemented InsertInASPIChain and fixed minor things.
10060         * windows/x11drv/mouse.c:
10061         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
10062         Fixed quite ill window locking code.
10064         * windows/winpos.c: Francis Beaudet <francis@macadamian.com>
10065         Fixed an infinite loop in ChildWindowFromPointEx.
10067         * controls/menu.c:
10068         Juergen Schmied <juergen.schmied@pop3.pop.debitel.net>
10069         - prevent crash when GetMenuDefaultItem is called on empty menu
10070         - set default item on system menu
10072         * 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:
10073         Adapted for new register functions support (ESP_reg in register
10074         functions now points after the arguments).
10076         * relay32/builtin32.c, relay32/kernel32.spec, relay32/relay386.c, relay32/snoop.c, tools/build.c:
10077         Win32 register functions can now have arguments.
10078         Simplified relay debugging for register functions.
10080         * relay32/kernel32.spec, win32/device.c:
10081         VxDCall functions do not need to be 'register'.
10083 Wed May 12 16:10:53 1999  Alexandre Julliard  <julliard@winehq.com>
10085         * relay32/builtin32.c: Fixed bug I introduced in relay debugging.
10087         * dlls/ntdll/exception.c, if1632/thunk.c, include/Attic/except.h, include/wine/exception.h, win32/except.c:
10088         Added macros and definitions for using exception inside Wine or
10089         Winelib code.
10091         * include/Attic/except.h, include/ntddk.h, include/winnt.h, misc/crtdll.c, win32/init.c:
10092         Moved some exception definitions to winnt.h and ntddk.h.
10094         * msdos/devices.c: Marcus Meissner <marcus@jet.franken.de>
10095         Added missing WINAPI for the callback procs.
10097         * include/sig_context.h: Added ERROR_sig.
10099         * ole/stg_bigblockfile.c: Francis Beaudet <francis@macadamian.com>
10100         Bug fix.
10102         * misc/winsock.c, include/winsock.h:
10103         Marcus Meissner <marcus@jet.franken.de>
10104         WSOCK32/WINSOCK uses SetLastError() to keep its own WSALastErrors,
10105         replaced all pwsi->err references.
10107         * loader/pe_image.c: Changed some error handling a bit.
10109         * windows/win.c: Ove Kaaven <ovek@arcticnet.no>
10110         Cleaner Suspend/RestoreWndsLock, which should fix some slowness.
10112         * relay32/kernel32.spec, relay32/ntdll.spec:
10113         Added RtlUnwind in ntdll, and made kernel32 spec entry a forward to
10114         the ntdll one.
10116         * relay32/builtin32.c, tools/build-spec.txt, tools/build.c, include/builtin32.h:
10117         Added import declaration for Win32 built-ins.
10119 Mon May 10 14:44:48 1999  Alexandre Julliard  <julliard@winehq.com>
10121         * tools/build-spec.txt, tools/build.c, include/builtin32.h, relay32/builtin32.c:
10122         Added support for forwarded ordinals in built-in dlls.
10124 Sun May  9 16:15:28 1999  Alexandre Julliard  <julliard@winehq.com>
10126         * win32/console.c:
10127         Fixed request size for alloc_console and free_console.
10129         * 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:
10130         Improved exception handling.
10131         Based on the work of Sergey Turchanov <turchanov@usa.net>.
10133         * loader/module.c:
10134         Use OpenFile() to test for file existence, so that the path gets
10135         searched.
10137         * server/select.c: Ove Kaaven <ovek@arcticnet.no>
10138         Restart interrupted select() (happens with -pg).
10140         * debugger/memory.c: Ove Kaaven <ovek@arcticnet.no>
10141         Fixed off-by-one bug in memory access check.
10143         * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
10144         More debug output for RegQueryInfoKey.
10146         * debugger/stack.c: Ove Kaaven <ovek@arcticnet.no>
10147         Fixed a couple of bugs (silent backtrace not totally silent, crashes
10148         when the stack is corrupted or similar).
10150 ----------------------------------------------------------------
10151 Sat May  8 18:39:05 1999  Alexandre Julliard  <julliard@winehq.com>
10153         * 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:
10154         Jean-Louis Thirot <thirot@univ-brest.fr>
10155         Added graphical configuration tool wineconf.tcl.
10157         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
10158         Ignore ESC[%dc reports generated by 8bit control codes.
10159         Open console even if we already have one in the process.
10161         * files/profile.c: Marcus Meissner <marcus@jet.franken.de>
10162         Fixed off by 1 error in section code (did not return len-2 on buffer
10163         overflow in some cases, but len-1).
10165         * dlls/comctl32/propsheet.c: Marcus Meissner <marcus@jet.franken.de>
10166         Fixed warning.
10168         * graphics/x11drv/palette.c: Pavel Roskin <pavel_roskin@geocities.com>
10169         Fixed palette handling for true/high-color X11.
10171         * loader/ne/module.c:
10172         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
10173         Fixed extension handling in LoadLibrary16.
10175         * windows/dce.c, windows/painting.c, windows/win.c, windows/winpos.c, windows/x11drv/event.c, include/win.h, objects/region.c:
10176         Alex Korobka <alex@aikea.ams.sunysb.edu>
10177         Rearranged PAINT_RedrawWindow() so that it first recursively updates
10178         invalid regions and only then starts sending out messages. This should
10179         help with reentrancy during message processing and now it needs just
10180         one (or none) scratch region for all there is to do. Also, small fixes
10181         for SetWindowPos().
10183         * configure, configure.in: Added check for missing __i386__ definition.
10185         * 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:
10186         Patrik Stridvall <ps@leissner.se>
10187         ANSI C fixes.
10189         * dlls/comctl32/propsheet.c: Marcus Meissner <marcus@jet.franken.de>
10190         Pass PROPSHEETPAGE to propertypage dialog as lParam.
10192         * 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:
10193         Patrik Stridvall <ps@leissner.se>
10194         ANSI C fixes.
10196         * 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:
10197         Huw D M Davies <h.davies1@physics.ox.ac.uk>
10198         Split off wingdi16.h from wingdi.h.  Add many more #defines/typedefs
10199         to bring wingdi.h almost upto a complete NT4.0 interface.
10200         Fix return value of SetRectRgn().
10202         * 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:
10203         Michael Veksler <mveksler@techunix.technion.ac.il>
10204         Removed #include "wine/winuser16.h" and use "struct tag????" instead.
10206         * debugger/stack.c: Ove Kaaven <ovek@arcticnet.no>
10207         Improved Wine debugger backtrace. New features:
10208         - Displays ebp, in case you want to check stackframes manually
10209         - Detects far calls even when windows apps don't mark them
10210         - Tracks CallFrom16/CallTo16 relaying (thunking)
10212         * loader/elfdll.c: Ulrich Czekalla <ulrichc@corel.ca>
10213         Bugfix: get_sobasename was off by one pointer increment.
10215         * multimedia/init.c: Kevin Holbrook <kwh@neosoft.com>
10216         Fixed implicit type warning.
10218         * controls/listbox.c: Gerard Patel <g.patel@wanadoo.fr>
10219         Values returned from PtInRect and LB_ITEMFROMPOINT are reversed.
10221         * ole/datacache.c, ole/defaulthandler.c, ole/ole2.c, ole/ole2stubs.c, ole/oleobj.c:
10222         Francis Beaudet <francis@macadamian.com>
10223         Second part of the OLE datacache implementation.
10225         * msdos/Makefile.in, msdos/devices.c, msdos/dosmem.c, msdos/int21.c, include/dosexe.h, include/miscemu.h, include/msdos.h:
10226         Ove Kaaven <ovek@arcticnet.no>
10227         Moved DOS List of Lists initialization, and added the beginnings of
10228         the DOS device structures.
10230         * programs/regapi/regapi.c, include/winreg.h, misc/registry.c:
10231         Noomen Hamza <noomen@macadamian.com>
10232         Bug fixes.
10234         * ole/hglobalstream.c, relay32/ole32.spec:
10235         Thuy Nguyen <thuy@macadamian.com>
10236         Implemented GetHGlobalFromStream.
10238         * include/thread.h, scheduler/thread.c:
10239         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10240         Call THREAD_FreeTHDB as service thread callback.
10242         * include/message.h, loader/task.c, windows/timer.c:
10243         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10244         Removed TIMER_SwitchQueue.
10246         * debugger/memory.c:
10247         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
10248         Format output in DEBUG_ExamineMemory for "d" and "x" not to exceed 80
10249         chars.
10251         * loader/signal.c: Marcus Meissner <marcus@jet.franken.de>
10252         Stop winelib programs on fault instead of endless faultlooping.
10254         * Makefile.in: James Juran <jrj120@psu.edu>
10255         Run ldconfig in make install if using --enable-dll.
10256         Cleaned up uninstall_lib as well.
10258         * ole/storage.c, ole/storage32.c, ole/storage32.h, relay32/ole32.spec, ole/stg_bigblockfile.c, include/wine/obj_storage.h, ole/memlockbytes.c:
10259         Thuy Nguyen <thuy@macadamian.com>
10260         Implementation of IStorage supported by an implementation of
10261         ILockBytes on top of an HGLOBAL.
10263         * files/profile.c, relay32/kernel32.spec:
10264         Marcus Meissner <marcus@jet.franken.de>
10265         Return the correct value from GetPrivateProfileSectionA.
10266         Copy/convert back the buffer in GetPrivateProfileSectionW.
10267         Replace some output pointers str/wstr->ptr in kernel32.spec.
10269         * loader/task.c, scheduler/process.c:
10270         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10271         Some initialization sequence bugfixes:
10272         - Initialize process crst for 16-bit processes.
10273         - Don't crash due to uninitialized stack frames in WineLib.
10274         - Map system DLLs before calling UserSignalProc.
10275         - Signal USIG_PROCESS_CREATE only *after* the env_db is filled.
10277         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10278         Call Callout routines directly when using builtin USER.
10280         * loader/pe_image.c:
10281         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10282         Bugfix: all PE modules were marked 'internal'.
10284         * include/dce.h, objects/dc.c, windows/dce.c:
10285         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10286         Check for busy DCE moved to DCHook16().
10288         * include/win.h, loader/main.c, windows/win.c:
10289         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10290         Initialize WIN_CritSection earlier.
10292         * dlls/comctl32/trackbar.c, include/trackbar.h:
10293         Luc Tourangeau <luc@macadamian.com>
10294         Removed the timer that was used to queue TRACKBAR_Refresh calls.
10295         Removed all direct calls to TRACKBAR_Refresh (except from within the
10296         WM_PAINT handling section) and replaced them by calls to
10297         InvalidateRect.
10298         Fixed a bug in the TRACKBAR_SetPos function.
10299         Fixed the behavior for different types of mouse input.
10301         * dlls/comctl32/toolbar.c: Yuxi Zhang <yuxiz@corel.ca>
10302         Implemented toolbar multirow button layout.
10304         * dlls/comctl32/tooltips.c: Francois Boisvert <francois@macadamian.com>
10305         Implementation of WM_GETTEXT and WM_GETTEXTLENGTH in tooltips.
10307         * ole/ole2disp.c: Thuy Nguyen <thuy@macadamian.com>
10308         Implemented OleTranslateColor.
10310         * include/winuser.h, windows/input.c:
10311         Francis Beaudet <francis@macadamian.com>
10312         Changed the return value of GetKeyboardState and SetKeyboardState from
10313         VOID to BOOL.
10315         * controls/listbox.c: Francois Boisvert <francois@macadamian.com>
10316         Prevented LISTBOX_RepaintItem from repainting a non visible item.
10318         * relay32/builtin32.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10319         Fixed typo.
10321         * windows/class.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
10322         Bugfix for TRACE in UnregisterClass.
10324 Wed May  5 13:20:50 1999  Alexandre Julliard  <julliard@winehq.com>
10326         * include/Attic/propsheet.h: No longer necessary.
10328 Tue May  4 16:55:23 1999  Alexandre Julliard  <julliard@winehq.com>
10330         * objects/dc.c, windows/dce.c, include/dce.h:
10331         Francis Beaudet <francis@macadamian.com>
10332         Check if DC is busy before deleting it.
10334         * win32/newfns.c:
10335         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
10336         GetMailslotInfo is supposed to check for pointer validity.
10338         * server/select.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10339         Possible crash in select_loop() fixed.
10341         * include/services.h, loader/task.c, scheduler/services.c:
10342         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10343         Fixed various stupid bugs in services thread routines.
10344         Added SERVICE_Exit routine to kill the services thread.
10346         * misc/main.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10347         Inverted class/channel in __(SET|GET)_DEBUGGING macros.
10349         * windows/queue.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10350         Correct implementation of GetWindowThreadProcessId().
10352         * if1632/mmsystem.spec, multimedia/mmsystem.c:
10353         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10354         Added PlaySound16, sndPlaySound16.
10356         * if1632/thunk.c: Ove Kaaven <ovek@arcticnet.no>
10357         Fixes winproc deadlock for win16.
10359 Mon May  3 09:44:57 1999  Alexandre Julliard  <julliard@winehq.com>
10361         * windows/queue.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10362         Fixed some deadlock(s) in message sending.
10364         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10365         cleaned up debug channels to use default one (mmsys)
10366         more conversions from mixerXXXW and mixerXXXX16 to mixerXXXXA
10367         fixed callback bug in midiStream functions
10368         fixed compilation bug with egcs
10369         changed to the new debug channel interface
10371         * multimedia/mmaux.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10372         small range fixes for OSS driver
10373         changed to the new debug channel interface
10375         * multimedia/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10376         first (working) shot at OSS mixer low level interface
10377         changed to the new debug channel interface
10379         * misc/network.c, relay32/mpr.spec:
10380         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10381         Fixed off-by-one ordinals in MPR.
10382         Added MPR_Alloc/ReAlloc/Free (MPR.22-24).
10384         * loader/module.c, if1632/relay.c:
10385         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10386         Bugfix: release Win16Lock in WinExec16, CallProc[Ex]32W_16.
10388         * loader/main.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10389         Load system DLLs into WineLib applications.
10391         * graphics/psdrv/ps.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
10392         Small update to the PostScript encoding vector.
10394         * loader/module.c, loader/task.c: Bug fixes.
10396 Sun May  2 19:10:57 1999  Alexandre Julliard  <julliard@winehq.com>
10398         * scheduler/process.c:
10399         Moved a few more initialisations to the new process context.
10401         * loader/task.c: Don't initialise the stacks for 32-bit processes.
10403         * miscemu/main.c: Only check number of tasks after first message.
10404         Use a 16-bit module for creating the initial task.
10406         * include/authors.h, AUTHORS:
10407         Updated authors list from the Changelog. Please let me know if you
10408         have been left out.
10410         * loader/task.c, scheduler/process.c:
10411         Converted to the new debugging interface (done with the help of the
10412         script written by Patrik Stridvall).
10413         Some changes to the initialisation sequence for 32-bit processes.
10415         * */*.c:
10416         Converted to the new debugging interface (done with the help of the
10417         script written by Patrik Stridvall).
10419         * tools/make_debug, include/debugdefs.h, include/debugtools.h, misc/main.c:
10420         Misc fixes and improvements.
10422         * include/config.h.in, configure, configure.in:
10423         Added check for -lmmap for OS/2.
10425         * include/debugdefs.h, ole/hglobalstream.c, ole/stg_stream.c, ole/storage32.c:
10426         Francis Beaudet <francis@macadamian.com>
10427         Fixed a few bugs in the OLE storage implementation, added a new set of
10428         trace statements for the OLE storage related methods and introduced a
10429         new debug channel for the storage subsystem.
10431         * multimedia/time.c, objects/dib.c, objects/palette.c, include/wine/winuser16.h, misc/spooler.c:
10432         Michael Veksler <mveksler@techunix.technion.ac.il>
10433         Removed redundant include of winbase.h from winuser16.h.
10434         Moved types from winbase.h to winuser16.h .
10436         * include/winuser.h: Juergen Schmied <juergen.schmied@metronet.de>
10437         - default item handling
10438         - small drawing fixes
10440         * dlls/commdlg/cdlg_En.rc, dlls/commdlg/printdlg.c:
10441         Klaas van Gend <klaas@vangend.demon.nl>
10442         More implementation of PrintDlgA.
10443         Conversion of resource identifiers of Print32 window to comply to the
10444         M$ numbering.
10446         * server/thread.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10447         Don't crash if queuing an APC on a thread that doesn't wait.
10449         * windows/timer.c, windows/x11drv/event.c, include/message.h:
10450         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10451         Use SERVICES callback to implement Windows timers.
10452         Timer expiration handling removed from EVENT_WaitNetEvent loop.
10454         * memory/heap.c: Huw D M Davies <h.davies1@physics.ox.ac.uk>
10455         Call SetLastError in HeapCompact().
10457         * include/winbase.h: Ove Kaaven <ovek@arcticnet.no>
10458         Added prototype for TryEnterCriticalSection.
10460         * include/commdlg.h: Klaas van Gend <klaas@vangend.demon.nl>
10461         Make all structures packed and removal of some WINE_PACKED.
10463         * controls/button.c: Pavel Roskin <pavel_roskin@geocities.com>
10464         Pushbuttons should only be rounded in Win31 look.
10466         * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
10467         - default item handling
10468         - small drawing fixes
10470         * windows/winpos.c: Noel Borthwick <noel@macadamian.com>
10471         Fixed an unbalanced windows lock/unlock sequence in
10472         WINPOS_ActivateOtherWindow.
10474         * include/debugdefs.h: enhmetafile added
10476         * 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:
10477         Eric Pouech <Eric.Pouech@wanadoo.fr>
10478         - got rid of all the internal MM tweaks to load builtin MCI
10479           drivers. They are all seen as drivers, loaded as DLLs and standard
10480           module loadorder is used to know which type to use (builtin vs
10481           native).
10482         - first full working implementation of mmThread??? functions (to
10483           support gracefully native MCI drivers).
10484         - support of mmShowMMCPLPropertySheet.
10485         - fix of some heap validate bugs (thanks to Ulrich for reporting them).
10487         * loader/module.c: Guy Albertelli <galberte@neo.lrun.com>
10488         Fix CreateProcessA to implement correct actions on ambiguous command
10489         line names (try longer and longer strings).
10491         * 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:
10492         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
10493         Started implementing Enhanced MetaFile driver.
10495         * 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:
10496         Francis Beaudet <francis@macadamian.com>
10497         Implemented the OLE object default handler and data cache.
10499         * include/enhmetafile.h, include/wingdi.h, objects/enhmetafile.c:
10500         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
10501         Several improvements to Enhanced MetaFile playback.
10503         * loader/ne/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
10504         Only try to append ".dll" if a library is loaded implicitely.
10506         * dlls/shell32/shellord.c:
10507         Michael Veksler <mveksler@techunix.technion.ac.il>
10508         Fix TRACE formatting warnings.
10510         * dlls/shell32/shlfolder.c:
10511         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
10512         Fixed a small syntax problem.
10514         * windows/winpos.c: Juergen Schmied <juergen.schmied@metronet.de>
10515         - better stubs for Get/Set special (Progman/Taskman) window functions
10517         * relay32/user32.spec, windows/message.c:
10518         Juergen Schmied <juergen.schmied@metronet.de>
10519         - new SendMessageCallbackW
10520         - some fixme's for missing A<->W conversion
10522         * windows/dialog.c: Noel Borthwick <noel@macadamian.com>
10523         Fixed an unbalanced windows lock/unlock sequence in GetNextDlgTabItem.
10525         * misc/printdrv.c: Klaas van Gend <klaas@vangend.demon.nl>
10526         Bugfix for EnumPrinters level 2.
10528         * windows/x11drv/keyboard.c: Guy Albertelli <galberte@neo.lrun.com>
10529         Correct logic in GetKeyNameText.
10531         * documentation/bugreports:
10532         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
10533         Removed +snoop from documentation/bugreports.
10535 Sat May  1 10:41:02 1999  Alexandre Julliard  <julliard@winehq.com>
10537         * objects/bitmap.c: Pavel Roskin <pavel_roskin@geocities.com>
10538         LoadImageW fixed for hicolor displays.
10540         * include/mmsystem.h, include/multimedia.h, multimedia/mmsystem.c:
10541         Marcus Meissner <marcus@jet.franken.de>
10542         MCI_ANIM_OPEN_PARMSW should be LPCWSTR, MCI_DefYieldProc should be WINAPI.
10544         * dlls/comctl32/header.c: Chris Morgan <cmorgan@wpi.edu>
10545         James Abbatiello <abbeyj@wpi.edu>
10546         Fixed HEADER_InsertItemA and HEADER_InsertItemW null pointer checking
10547         to handle wide character strings properly.  Fix of our previous patch
10548         for null pointer checking.
10550         * ole/Makefile.in, ole/memlockbytes.c, ole/ole2stubs.c:
10551         Thuy Nguyen <thuy@macadamian.com>
10552         Implemented CreateILockBytesOnHGloba, GetHGlobalFromILockBytes and
10553         the ILockBytes interface based on an HGLOBAL.
10555         * ole/compobj.c: Francis Beaudet <francis@macadamian.com>
10556         Fixed a bug in CoRegisterClassObject.
10558         * dlls/comctl32/toolbar.c: Luc Tourangeau <luc@macadamian.com>
10559         Removed some flickering when inserting or deleting buttons.
10561         * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
10562         James Abbatiello <abbeyj@wpi.edu>
10563         Fixed LISTVIEW_GetItemChanges() to perform a more complete comparison
10564         between lpItem and lpLVItem.  Now compares the pszText string of the
10565         lpItem and lpLVItem structs.  Fixes a bug where the old and new item
10566         have the same attributes but their text differs and GetItemChanges()
10567         compares them as equal.
10569         * dlls/comctl32/propsheet.c, dlls/comctl32/propsheet.h, dlls/comctl32/rsrc.rc, dlls/comctl32/tab.c:
10570         Thuy Nguyen <thuy@macadamian.com>
10571         Added support for adding and removing pages dynamically from a
10572         property sheet.
10574         * controls/button.c, controls/combo.c, controls/desktop.c, controls/listbox.c:
10575         Marcus Meissner <marcus@jet.franken.de>
10576         Removed the gotos from the WndProcs, always use a small wrapper that
10577         locks the window, calls the real wndproc, unlocks the window.
10579         * dlls/shell32/contmenu.c:
10580         Juergen Schmied <juergen.schmied@metronet.de>
10581         Fixed default menu item.
10583         * win32/code_page.c, misc/ddeml.c:
10584         Juergen Schmied <juergen.schmied@metronet.de>
10585         Fixed typo.
10587         * windows/queue.c:
10588         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
10589         Added a missing LeaveCriticalSection.
10591         * windows/mdi.c: Francois Boisvert <francois@macadamian.com>
10592         Fixed a wrong usage of WIN_FindWndPtr/WIN_ReleaseWndPtr in
10593         TranslateMDISysAccel16.
10595         * misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
10596         Fixed off-by-one bug in async output buffers.
10598         * ole/ole2.c: Francis Beaudet <francis@macadamian.com>
10599         Fixed a little Drag and Drop bug.
10601 ----------------------------------------------------------------
10602 Mon Apr 26 14:58:59 1999  Alexandre Julliard  <julliard@winehq.com>
10604         * include/config.h.in, configure, configure.in:
10605         Marcus Meissner <marcus@jet.franken.de>
10606         Added autoconf check for "inline". You can now use it, it will be
10607         defined to (empty) for compilers that do not have it.
10609         * tools/wrc/parser.y: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
10610         Don't include alloca.h.
10612         * README, documentation/wine.man: James Juran <jrj120@psu.edu>
10613         Update to reflect recent changes and discussions.
10615         * loader/loadorder.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
10616         The load order parser should not always complain about extensions.
10618         * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
10619         - align magic buttons right
10620         - shortcuts alignment working again
10622         * loader/ne/module.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10623         Fixed loading of native NE dlls.
10625 Sun Apr 25 19:04:42 1999  Alexandre Julliard  <julliard@winehq.com>
10627         * memory/heap.c: Fixed __builtin_return_address arg.
10629         * */*:
10630         Patrik Stridvall <ps@leissner.se>
10631         Fixed ANSI compabillity.
10633         * */*:
10634         Bertho Stultiens <bertho@panter.soci.aau.dk>
10635         Built-in dlls now have resources attached via the PE-header like
10636         normal dlls. This enables the use of the resource API.
10638         * misc/registry.c:
10639         Use $HOME instead of getpwuid for user's home directory.
10640         Fixed messed up indentation.
10642         * graphics/x11drv/xfont.c:
10643         Use $HOME instead of getpwuid for user's home directory.
10645         * */*.h:
10646         Patrik Stridvall <ps@leissner.se>
10647         #pragma pack(?) changed to #include "*pack*.h"
10649         * 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:
10650         Jim Aston <jima@corel.ca>
10651         Added some missing #defines I've run across.
10653         * files/dos_fs.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
10654         Ignore trailing dots on file names.
10656         * 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:
10657         Ove Kaaven <ovek@arcticnet.no>
10658         Added a possibility to let the internal debugger use a separate
10659         heap. Not enabled by default, change #if in include/debugger.h to use
10660         this (the heap allocator is very slow).
10662         * loader/loadorder.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10663         wine.conf should not overrule content of burned in data in
10664         loadorder.c.
10666         * graphics/mapping.c: Karl Lessard <karll@corel.com>
10667         SetMapMode should not reset the window and viewport origins to 0.
10669         * tools/wineconf: Eric Pouech <Eric.Pouech@wanadoo.fr>
10670         Allow to automatically copy part of wine.ini into generated file.
10671         Small perl enhancement (work in strict mode).
10672         Small updates in heuristics.
10674         * wine.ini: Eric Pouech <Eric.Pouech@wanadoo.fr>
10675         Upgraded to have a decent multimedia DLLs configuration.
10677         * tools/wrc/wrc.h, tools/wrc/writeres.c, tools/wrc/CHANGES:
10678         Bertho Stultiens <bertho@akhphd.au.dk>
10679         - Fixed a counting bug in the win32 count and sort routine.
10680         - Fixed sort order of resources (must be name before ordinal).
10681         - Shuffled a couple of global variables so that built-in dlls now can
10682           load resources through the proper PE interface.
10684         * include/windef.h, include/winreg.h:
10685         Adrian Thurston <adriant@corel.ca>
10686         Added support for strict handles. Only works on machines where
10687         sizeof(UINT) == sizeof(void*).
10689         * scheduler/process.c:
10690         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10691         Initialize process critical section in the correct process context.
10693         * scheduler/critsection.c:
10694         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10695         Warn if wrong process tries to enter critical section.
10696         Better implementation of Reinitialize/UninitializeCriticalSection
10697         (still not quite correct).
10699         * loader/loadorder.c: Marcus Meissner <marcus@jet.franken.de>
10700         debug.h must be last in list of includes.
10702         * loader/ne/module.c:
10703         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10704         Return 32-bit module in GetModuleHandle16() if appropriate.
10706         * msdos/int2f.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10707         Fixed crash when status was read with cd-rom tray open.
10709         * windows/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10710         Fixed a bug in msg conversion.
10712         * dlls/comctl32/trackbar.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10713         Prevent crash when nMinRange > nMaxRange.
10715         * include/winuser.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
10716         Added some missing manifest constants for Queue Status functions (QS_????).
10718         * controls/button.c, controls/edit.c, windows/mdi.c:
10719         Eric Pouech <Eric.Pouech@wanadoo.fr>
10720         Added missing WIN_ReleaseWndPtr.
10722         * graphics/x11drv/xfont.c: Chris Morgan <cmorgan@wpi.edu>
10723         James Abbatiello <abbeyj@wpi.edu>
10724         More appropriate default size for fonts with invalid sizes.
10726         * dlls/comctl32/listview.c: Chris Morgan <cmorgan@wpi.edu>
10727         James Abbatiello <abbeyj@wpi.edu>
10728         Implemented SetColumnWidth for ListView control.
10730         * documentation/config: Adam Sacarny <magicbox@bestweb.net>
10731         Added new documentation for the configuration file.
10733         * misc/version.c:
10734         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
10735         Improved VERSION_GetVersion.
10737         * windows/x11drv/keyboard.c: Peter Bortas <peter@idonex.se>
10738         Added Swedish keyboard layout.
10740         * 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:
10741         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
10742         General tidy up of the MetaFile driver - make sure that everything
10743         goes through the DCFuncs table.
10745         * misc/toolhelp.c, if1632/kernel.spec:
10746         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
10747         Add a stub for GlobalMasterHandle.
10749         * tools/bug_report.pl: Adam Sacarny <magicbox@bestweb.net>
10750         Much nicer way to select wine's location.
10751         Option to disable creation of debugging output.
10752         Debugging output is now created in directory script was started in.
10754         * windows/x11drv/wnd.c: Noel Borthwick <noel@macadamian.com>
10755         Fixed a problem with managed mode, where popup windows with a WS_DLGFRAME
10756         style were appearing with a title bar. According to the docs for
10757         WS_DLGFRAME a window with this style cannot have a title bar.
10759         * loader/loadorder.c: Marcus Meissner <marcus@jet.franken.de>
10760         Use DllOverrides from wine.ini as defaults also in
10761         loadorder.c (merged in some MM dlls lines from Eric Poeuch).
10763         * windows/timer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10764         Fixed some bogus infinite expiration time.
10766         * windows/x11drv/event.c: David Luyer <luyer@ucs.uwa.edu.au>
10767         - consolidate both cases of !pending in WaitNetEvent
10768         - select() returns -1 not 0 on error in WaitNetEvent
10770         * memory/heap.c, include/heap.h: Ove Kaaven <ovek@arcticnet.no>
10771         Made HeapValidate threadsafe, and added some macros to track callerEIP
10772         a little better.
10773         Added HEAP_xrealloc.
10775 Sat Apr 24 12:02:15 1999  Alexandre Julliard  <julliard@winehq.com>
10777         * loader/loadorder.c, configure, configure.in, include/acconfig.h, include/config.h.in, include/elfdll.h, loader/elf.c, loader/elfdll.c:
10778         Marcus Meissner <marcus@jet.franken.de>
10779         autoconf fixes and cleanups (check for dlopen() in libc too).
10781         * ole/Makefile.in, ole/hglobalstream.c, ole/ole2stubs.c, ole/stg_stream.c:
10782         Francis Beaudet <francis@macadamian.com>
10783         Implemented CreateStreamOnHGLOBAL.
10785         * ole/compobj.c:
10786         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
10787         Let CoSetState() accept state == NULL.
10789         * dlls/shell32/pidl.c, dlls/shell32/pidl.h:
10790         Juergen Schmied <juergen.schmied@metronet.de>
10791         Made internal format more compatible.
10793         * dlls/shell32/shlfolder.c:
10794         Juergen Schmied <juergen.schmied@metronet.de>
10795         Small fixes.
10797         * windows/class.c, windows/dce.c, controls/combo.c:
10798         Guy Albertelli <galberte@neo.lrun.com>
10799         Fix locking with proper calls to WIN_ReleaseWndPtr.
10801         * multimedia/dsound.c: Ove Kaaven <ovek@arcticnet.no>
10802         Don't malloc/free for every mixing operation, use the same buffer over
10803         instead...
10805         * dlls/comctl32/header.c: Chris Morgan <cmorgan@wpi.edu>
10806         James Abbatiello <abbejy@wpi.edu>
10807         HEADER_InsertItemA and HEADER_InsertItemW now treat null pointers to
10808         text strings as null strings, as Windows does.  Fixes wine crash on
10809         startup of CuteFTP.
10811         * misc/registry.c: Noomen Hamza <noomen@macadamian.com>
10812         Set (when registry loaded) data to "\0" and length to 2 in empty
10813         string value case, in place of setting data to NULL and length to 0,
10814         and this is without initializing output buffer parameter of
10815         RegQueryValue*.
10817         * include/wingdi.h: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
10818         Added Panose defines and EXTLOGFONT[A|W].
10820 Thu Apr 22 16:27:53 1999  Alexandre Julliard  <julliard@winehq.com>
10822         * */*:
10823         Patrik Stridvall <ps@leissner.se>
10824         Fixed ANSI compabillity.
10826         * 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:
10827         Michael Veksler <mveksler@techunix.technion.ac.il>
10828         Removed some includes of 16 bit API.
10830         * dlls/shell32/pidl.c, dlls/shell32/shell32_main.h, include/oleobj.h, include/shlobj.h, dlls/shell32/dataobject.c:
10831         Adrian Thurston <adriant@corel.ca>
10832         ICOMization of remaining interfaces.
10834         * dlls/comctl32/tooltips.c: Noel Borthwick <noel@macadamian.com>
10835         Fixed bug with tooltips stealing focus whenever a tooltip was created,
10836         shown, hidden or tracked. The SetWindowPos calls needed to have the
10837         SWP_NOACTIVATE flag set additionally.
10839         * objects/clipping.c: Karl Lessard <karll@corel.com>
10840         Fixed coordinates conversion in OffsetClipRgn.
10842         * include/objbase.h: Adrian Thurston <adriant@corel.ca>
10843         Clean up objbase.h. Makes the STDMETHOD set of macros available to the winelib user.
10845         * relay32/kernel32.spec, scheduler/handle.c:
10846         Marcus Meissner <marcus@jet.franken.de>
10847         CreateSocketHandle,GetHandleContext,SetHandleContext stubs added.
10849         * 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:
10850         Juergen Schmied <juergen.schmied@metronet.de>
10851         Moved stuff to the right place.
10853         * windows/syscolor.c: Gerard Patel <g.patel@wanadoo.fr>
10854         Fixed syscolors for win 3.1.
10856         * files/profile.c, if1632/kernel.spec:
10857         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10858         Added missing profile KERNEL routines (call 32-bit versions).
10860         * if1632/builtin.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10861         Bugfix: BUILTIN_GetEntryPoint16 didn't work correctly with the new
10862         entry table layout.
10864         * include/wingdi.h: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
10865         Add Enhanced MetaFile record structures.
10867         * dlls/comctl32/commctrl.c, dlls/comctl32/propsheet.c, include/resource.h, resources/sysres_En.rc:
10868         Thuy Nguyen <thuy@macadamian.com>
10869         First patch implementing property sheets.
10871         * relay32/gdi32.spec:
10872         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10873         Bugfix: GDI32.100-104 are ordinal-only routines.
10874         Added stubs for some Win98 GDI32 routine.
10875         Re-numbered all named exports (lexicographically).
10877         * graphics/driver.c:
10878         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10879         Added prototypes (stubs) for GDI32.100-104.
10881         * 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:
10882         Juergen Schmied <juergen.schmied@metronet.de>
10883         - more checks for valid pidl formats
10885         * relay32/shell32.spec, dlls/shell32/shellord.c, include/shlobj.h:
10886         Juergen Schmied <juergen.schmied@metronet.de>
10887         - corrected parameter count for SHGetSettings
10888         - stub SHValidateUNC
10890         * loader/elf.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
10891         #else branch compile fix.
10893         * include/elfdll.h, loader/elfdll.c, loader/loadorder.c:
10894         Bertho Stultiens <bertho@panter.soci.aau.dk>
10895         Change wine's dlopen search-patch strategy not using the environment
10896         and added #if:s to seperate the code out if libdl isn't availble.
10898         * ole/compobj.c: Francis Beaudet <francis@macadamian.com>
10899         Added a check for a NULL pointer in CoFreeUnusedLibraries.
10901         * relay32/builtin32.c:
10902         Marcus Meissner <msmeissn@stud.informatik.uni-erlangen.de>
10903         Include debug.h last (ERR() macro problem on Solaris).
10905         * controls/combo.c: Francis Beaudet <francis@macadamian.com>
10906         Fixed a sizing bug in the combobox control.
10908         * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
10909         Bugfix: Internal NE entry point tables were bad (one huge bundle).
10911         * misc/registry.c: Noomen Hamza <noomen@macadamian.com>
10912         Initialize the output buffer parameters to 0 in RegQueryValue*
10913         functions. This is important specially when there's no data to return.
10915         * loader/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
10916         Do not increment module refCount if self is loaded from within
10917         DllEntryPoint during the attach notification.
10919 Wed Apr 21 14:27:37 1999  Alexandre Julliard  <julliard@winehq.com>
10921         * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
10922         - protect TRACE against NULL-ptr
10923         - rewrote GetMenuItemID/GetSubMenu to use MENU_FindItem (hmenu=0xffff fix).
10925         * dlls/comctl32/toolbar.c:
10926         Juergen Schmied <juergen.schmied@metronet.de>
10927         Fixed typo.
10929         * loader/ne/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
10930         Reimplementation of GetModuleHandle16 according to how win95 handles
10931         it (thanks to Marcus Meissner <marcus@jet.franken.de>).
10933         * if1632/builtin.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
10934         Corrected wrong return values of built-in loader to work with the
10935         loadorder stuff.
10937 Mon Apr 19 16:45:24 1999  Alexandre Julliard  <julliard@winehq.com>
10939         * graphics/metafiledrv/bitblt.c, graphics/metafiledrv/init.c, include/bitmap.h, include/metafiledrv.h, objects/dib.c, objects/metafile.c:
10940         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
10941         Implemented recording of StretchDIBits and SetDIBitsToDevice and
10942         playback of SetDIBitsToDevice. Cleaned up PlayMetaFileRecord a bit.
10944         * include/elfdll.h, loader/elf.c, loader/elfdll.c, loader/loadorder.c:
10945         Bertho Stultiens <bertho@panter.soci.aau.dk>
10946         Removed non-portable hacks and replaced them with more general
10947         versions.
10949         * windows/dce.c: Paul Millar <paulm@astro.gla.ac.uk>
10950         Code added to re-evaluate stale DC information in DCE cache.
10952         * loader/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
10953         Attach notifications must be send after all recursive dependencies are
10954         loaded and not before.
10956         * graphics/x11drv/palette.c: Patrik Stridvall <ps@leissner.se>
10957         Fixed typo.
10959         * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
10960         Fixed playing position when required by track number.
10962         * win32/device.c: Marcus Meissner <marcus@jet.franken.de>
10963         Added MMDEVLDR DeviceIoctl(5) stub (msacm32 is a bit happier now).
10965         * wine.ini: Marcus Meissner <marcus@jet.franken.de>
10966         Native toolhelp will not work (missing GLOBALMASTERHANDLE).
10968         * BUGS, README: Marcus Meissner <marcus@jet.franken.de>
10969         Updated.
10971         * controls/edit.c: Gerard Patel <g.patel@wanadoo.fr>
10972         Test for static was reversed.
10974         * */*:
10975         Patrik Stridvall <ps@leissner.se>
10976         New debug scheme with explicit debug channels declaration.
10978 Sun Apr 18 14:44:26 1999  Alexandre Julliard  <julliard@winehq.com>
10980         * loader/ne/module.c: Removed extra call to TASK_StartTask.
10982         * include/acconfig.h, include/config.h.in, configure, configure.in:
10983         Removed check for union semun; cleaned up a bit.
10985         * include/server.h, server/process.c, server/trace.c, tools/make_requests:
10986         Added env ptr to new_process request
10988         * relay32/user32.spec, windows/mdi.c, controls/menu.c, include/menu.h, include/winuser.h:
10989         Juergen Schmied <juergen.schmied@metronet.de>
10990         - use fonts/fontsizes given by SystemParametersInfo
10991         - drawing/alignment fixes, win98 style for menubar
10992         - ownerdrawn menus are working now for the first time
10993         - complete constants magic items
10994         - use right owner for popupmenus
10995         - new: Get/SetMenuInfo
10996         - implemented: Get/SetMenuContextHelpId
10997         - more flags for Get/SetMenuItemInfo
10999         * files/dos_fs.c: robert w hall <bobh@n-cantrell.demon.co.uk>
11000         Make DOSFS_MatchLong match a search string ending in '*.' to a zero
11001         extension file name, allowing Mathcad to run.
11003         * loader/loadorder.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11004         Fixed memory freeing.
11006         * programs/cmdlgtst/Attic/cmdlgr.h, programs/cmdlgtst/cmdlgr.rc, programs/cmdlgtst/cmdlgtst.c, programs/cmdlgtst/cmdlgtst.h:
11007         Renamed cmdlgr.h to cmdlgtst.h.
11009         * scheduler/critsection.c: Added timeout to critical section waiting.
11011         * include/thread.h, scheduler/sysdeps.c:
11012         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11013         Merged Linux/FreeBSD reentrant errno handler, added Solaris.
11014         Preliminary support for Solaris low-level threads (LWPs) added.
11016         * configure, configure.in, include/acconfig.h, include/config.h.in:
11017         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11018         Reentrant libc check for Solaris added.
11019         Fixed reentrant X11 check for FreeBSD and Solaris.
11020         Added check for Solaris low-level thread routines.
11022         * loader/ne/module.c:
11023         Fixed toolhelp routines usage in GetModuleFromPath (reported by Bertho
11024         Stultiens).
11026         * tools/wineinstall: Ove Kaaven <ovek@arcticnet.no>
11027         Automatic install script, which automatically configures and compiles
11028         wine and regapi, runs tools/wineconf to generate a configuration file
11029         if one does not already exist, and uses regapi to install the default
11030         registry.
11032         * documentation/gui, windows/win.c, windows/winpos.c:
11033         Eric Pouech <Eric.Pouech@wanadoo.fr>
11034         Properly handling cases like calling SetWindowPos while processing
11035         WM_NCCREATE.
11037         * graphics/x11drv/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11038         Fixed a few bugs (typos from cut & paste & invalid heap block
11039         freeing).
11041         * misc/wsprintf.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11042         Bug fix in GetLen.
11044         * 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:
11045         Bertho Stultiens <bertho@panter.soci.aau.dk>
11046         Reorganization of the loader to correctly load and free libraries and
11047         implementation of load order to load different types of libraries.
11049         * documentation/wine.man: Bertho Stultiens <bertho@panter.soci.aau.dk>
11050         Updated commandline changes of -dll option and wine.conf entries.
11052         * wine.ini: Bertho Stultiens <bertho@panter.soci.aau.dk>
11053         Updated the example with the new configuration entries.
11055         * dlls/shell32/shell32_main.c:
11056         Bertho Stultiens <bertho@panter.soci.aau.dk>
11057         Bugfix: free loaded library not before exit.
11059         * include/elfdll.h, include/loadorder.h, loader/elfdll.c, loader/loadorder.c:
11060         Bertho Stultiens <bertho@panter.soci.aau.dk>
11061         New files to support load order and partial stubs for elfdlls.
11063         * graphics/metafiledrv/objects.c, graphics/x11drv/dib.c, include/bitmap.h, objects/brush.c, objects/cursoricon.c, objects/dib.c:
11064         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
11065         Fixes for upside-down DIBs.
11067         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
11068         Changed 'GetDisplayMode' to return the mode previously set by
11069         'SetDisplayMode' (and not the current monitor mode).
11071         * include/tab.h, dlls/comctl32/tab.c:
11072         Luc Tourangeau <luc@macadamian.com>
11073         -Implemented TCS_BUTTONS, TCS_FIXEDWIDTH, TCM_GETITEMRECT,
11074         TCM_SETITEMSIZE and TCM_DELETEITEM.
11076         * objects/cursoricon.c: Pavel Roskin <pavel_roskin@geocities.com>
11077         LookupIconIdFromDirectoryEx16() fixed: if GetSystemPaletteEntries()
11078         returns 0, it is interpreted as if it were 256.
11080         * loader/module.c, scheduler/process.c:
11081         Kevin Holbrook <kwh@neosoft.com>
11082         Fix ambiguous else warning.
11084         * windows/syscolor.c: Juergen Schmied <juergen.schmied@metronet.de>
11085         Loading color values from the registry fixed.
11087         * graphics/ddraw.c: Brian Gerst <bgerst@quark.vpplus.com>
11088         - Removed all floating point math.
11089         - Implemented stretching in X and Y directions for 8, 16, and 32 bit color.
11090         - Implemented source and dest color-keying for 8, 16, and 32 bit color.
11091         - Implemented some trivial raster operations.
11092         - Minimized inner loops for maximum speed.
11093         - Use memcpy whenever possible.
11095         * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11096         Reduced fragment size.
11097         Reorganized wodOpen (with support for WAVE_QUERY_FORMAT).
11098         Fixed buffer underrun recovery.
11099         Fixed bug in wodReset()/wodClose().
11101         * ole/storage32.c: Michael Veksler <mveksler@techunix.technion.ac.il>
11102         Simplify propertyNameCmp() and fix a warning in the way by removing
11103         CRTDLL__wcsupr() calls.
11105         * misc/ddeml.c: Keith Matthews <keith_m@sweeney.demon.co.uk>
11106         DdeNameService: expansion of stub to trap unused instanceids at start of run.
11107         DdeGetLastError: catch 'not initialized' situation and return correct response.
11108         DdeFreeStringHandle: complete test for error set by previous call of
11109         something and ignore it, also release handle table mutex on normal exit.
11110         DdeQueryStringA, DdeQueryStringW, DdeCreateStringHandleW: Release
11111         handle table mutex on normal exit.
11113         * include/wnet.h, misc/network.c:
11114         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
11115         Don't announce the WNetDirectoryNotify capability WNetGetConnection.
11116         Change the return value for local files.
11118         * windows/mouse.c: Michael Veksler <mveksler@techunix.technion.ac.il>
11119         Add "win.h" to fix implicit function declaration warnings.
11121         * console/interface.c, include/console.h:
11122         Marcus Meissner <marcus@jet.franken.de>
11123         Only declare console "driver" once, use external refs elsewhere.
11125         * controls/listbox.c: Luc Tourangeau <luc@macadamian.com>
11126         When the vertical scrollbar is removed, the background was not
11127         properly repainted.
11129         * loader/signal.c: Marcus Meissner <marcus@jet.franken.de>
11130         Disable AC bit on receiving alignment exceptions.
11132         * misc/main.c: Juergen Schmied <juergen.schmied@metronet.de>
11133         SystemParametersInfo SPI_GETNONCLIENTMETRICS: implemented menu part.
11135         * windows/x11drv/event.c: Noel Borthwick <noel@macadamian.com>
11136         While handling the WM_DELETEWINDOW client message check if a window
11137         has been disabled and if so prevent an SC_CLOSE message from being
11138         sent.
11140         * windows/dce.c: Noel Borthwick <noel@macadamian.com>
11141         Make access to the DCE list thread safe by ensuring we have acquired
11142         the Windows lock before using it.
11144 Fri Apr 16 15:19:14 1999  Alexandre Julliard  <julliard@winehq.com>
11146         * resources/.cvsignore: Changed for renamed files
11148         * misc/winsock_async.c, msdos/dosconf.c, windows/user.c:
11149         Michael Veksler <mveksler@techunix.technion.ac.il>
11150         Fixed warnings.
11152         * 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:
11153         Pablo Saratxaga <pablo.sarachaga@ping.be>
11154         Added walon language support (I also moved Cz -> Cs, Sw -> Sv, and Po
11155         -> Pt; to conform to standard names for those languages).
11157         * configure, configure.in, relay32/Makefile.in:
11158         Marcus Meissner <marcus@jet.franken.de>
11159         Add -fno-builtin when compiling with gcc in relay32/ subdir.
11161         * include/module.h, loader/ne/module.c, loader/ne/segment.c, tools/build.c, if1632/builtin.c:
11162         Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
11163         - Implemented proper ("real", compressed) Win16 entry tables.
11164         - Fixed MyAlloc (AKA NE_AllocateSegment).
11165         - Implemented PatchCodeHandle16.
11167         * tools/Attic/make_os2.sh, tools/make_os2.cmd, graphics/path.c, graphics/psdrv/graphics.c, include/sig_context.h:
11168         Robert Pouliot <krynos@clic.net>
11169         A few patches to help Wine to compile on OS/2.
11171 Thu Apr 15 16:46:51 1999  Alexandre Julliard  <julliard@winehq.com>
11173         * 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:
11174         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
11175         Change (32 bit) HMETAFILEs to GDI objects (HMETAFILE16s remain as
11176         global memory handles).  Fixed disk-based MetaFiles.  Better
11177         separation between MetaFile playback and the metafiledrv.
11179         * misc/crtdll.c: Ove Kaaven <ovek@arcticnet.no>
11180         _CIpow argument order was confirmed with Starcraft v1.05.
11182         * documentation/keyboard: Ove Kaaven <ovek@arcticnet.no>
11183         Clarified a few points.
11185         * msdos/int21.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
11186         Added IOCTL function 0x440d/0x72.
11188         * relay32/kernel32.spec, scheduler/critsection.c:
11189         Bertho Stultiens <bertho@panter.soci.aau.dk>
11190         UnitializeCriticalSection partial stub implementation.
11192         * include/winbase.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
11193         Added missing proto for GetExitCodeThread.
11195         * include/driver.h, include/wine/keyboard16.h:
11196         Michael Veksler <mveksler@techunix.technion.ac.il>
11197         Added missing windef.h includes.
11199         * windows/input.c, include/winuser.h:
11200         Zygo Blaxell <uj22kfbc@umail.furryterror.org>
11201         ReleaseCapture() is supposed to return a BOOL value.
11203         * configure, configure.in, include/config.h.in, loader/signal.c:
11204         Marcus Meissner <marcus@jet.franken.de>
11205         FreeBSD 3 multithreading final fix. Do not use libc_r, libc is just as
11206         reentrant concerning errno. Revert unneeded FreeBSD hack to
11207         loader/signal.c from last patch.
11209         * windows/x11drv/keyboard.c:
11210         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
11211         index == 3 corresponds to Alt-Gr + Shift.
11213         * misc/ddeml.c: Keith Matthews <keith_m@sweeney.demon.co.uk>
11214         More of DdeCreateStringHandleA, DdeFreeStringHAndle, DdeQueryStringA
11215         and DdeCreateStringHandleW and tidy up of RemoveHSZNodes, and
11216         DdeCreateStringHandleA.
11218         * windows/x11drv/main.c, graphics/x11drv/bitblt.c, graphics/x11drv/palette.c, include/x11drv.h:
11219         Pavel Roskin <pavel_roskin@geocities.com>
11220         Fixed ugly disabled controls and black background in Write and Lotus
11221         Notes.
11223         * controls/button.c, include/button.h, include/winuser.h:
11224         Pascal Lessard <pascal@macadamian.com>
11225         Implement the button with bitmaps.
11227         * include/wine/obj_storage.h, ole/stg_stream.c, ole/storage32.c:
11228         Stephane Lussier <stephane@macadamian.com>
11229         Implementation of IStorage::CopyTo and IStream::CopyTo.
11231         * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11232         Bugfix: Always release the Win16Lock in TASK_Reschedule.
11234         * windows/x11drv/event.c: Francois Boisvert<francois@macadamian.com>
11235         Solved a deadlock between global lock and wnd lock in event.c.
11237         * dlls/shell32/iconcache.c: Marcus Meissner <marcus@jet.franken.de>
11238         Typo that broke Solaris compile fixed.
11240         * controls/desktop.c: Francois Boisvert<francois@macadamian.com>
11241         Add a WIN_ReleaseDesktop in DESKTOP_IsSingleWindow.
11243         * windows/x11drv/keyboard.c: Guy Albertelli <galberte@neo.lrun.com>
11244         Fix scancodes for NumLock and Num-/.
11245         Fix MapVirtualKey() (maptype=2) to return proper ascii code.
11246         Reworked GetKeyNameText() again.
11248         * graphics/psdrv/font.c:
11249         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
11250         Limit lastChar to 0xff in PSDRV_GetCharWidth.
11252         * windows/user.c: Marcus Meissner <marcus@jet.franken.de>
11253         Missing WINAPI for RegisterSystemThread.
11255 Sun Apr 11 18:48:17 1999  Alexandre Julliard  <julliard@winehq.com>
11257         * msdos/int10.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
11258         Fixed "Display Combination" call.
11260         * misc/comm.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
11261         Fixed a crash due to invalid OpenComm return value for busy comm port.
11262         Cleaned up/fixed several things.
11264         * windows/win.c: Francois Boisvert<francois@macadamian.com>
11265         Enabled thread safeness for wnd structure code.
11267         * debugger/dbg.y: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11268         Use CLIENT_DebuggerRequest to freeze/unfreeze threads.
11270         * server/request.c, server/thread.c, server/trace.c, include/server.h, include/server/request.h, include/server/thread.h, scheduler/client.c:
11271         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11272         Added new CLIENT_DebuggerRequest routine, implemented support for
11273         DEBUGGER_FREEZE_ALL/DEBUGGER_UNFREEZE_ALL requests.
11274         Run wine server in the main wine process.
11275         Bugfix: never free initial thread!
11277         * scheduler/process.c, include/process.h:
11278         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11279         Non-functional PROCESS_Suspend/ResumeOtherThreads removed.
11281         * windows/timer.c: Ove Kaaven <ovek@arcticnet.no>
11282         Teached TIMER_GetNextExpiration that a timer that has already expired
11283         (but not processed yet) HAS already expired...
11285         * winedefault.reg: Ove Kaaven <ovek@arcticnet.no>
11286         Default values for registry.
11288         * graphics/x11drv/dib.c: Karl Lessard <karll@corel.ca>
11289         Optimized code for SetImageBits_X, making bitmap creation faster.
11291         * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
11292         The MEASUREITEMSTRUCT and DRAWITEMSTRUCT were filled wrong.
11294         * configure.in, include/config.h.in, include/sig_context.h, loader/signal.c, scheduler/sysdeps.c, configure:
11295         Marcus Meissner <marcus@jet.franken.de>
11296         - Started multithreading for FreeBSD (incomplete, but some
11297           applications now at least start up again).
11298         - Use _thread_sys_sigaction/_thread_sys_sigaltstack.
11299         - CR2 on pagefault gets passed in sc_err (some kind of kludge in
11300           FreeBSD owns fault handling we can use)
11302         * include/selectors.h, memory/global.c, memory/selector.c:
11303         Made SELECTOR_ReallocBlock preserve the current selector access rights
11304         (problem reported by Andreas Mohr).
11306         * misc/system.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11307         Use services thread instead of timer signals.
11309         * server/thread.c, scheduler/synchro.c:
11310         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11311         Allow user APCs with NULL 'func' (just wake up the thread).
11313         * include/services.h, loader/main.c, scheduler/Makefile.in, scheduler/services.c:
11314         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11315         Implemented 'kernel services thread'.
11317         * include/winspool.h, misc/printdrv.c, relay32/winspool.spec:
11318         Klaas van Gend <klaas@vangend.demon.nl>
11319         Added stub for PrinterProperties.
11321         * dlls/ntdll/rtlstr.c, include/ntddk.h, relay32/ntdll.spec, dlls/ntdll/nt.c:
11322         Juergen Schmied <juergen.schmied@metronet.de>
11323         Implemented NtTerminateProcess and NtDisplayString.
11325         * loader/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
11326         FreeLibrary partial implementation.
11328         * misc/crtdll.c, relay32/crtdll.spec: Ove Kaaven <ovek@arcticnet.no>
11329         Made _ftol take argument from FPU stack. Starcraft v1.04 (*not* Brood
11330         Wars) now works perfectly with Wine's crtdll. Wrote a test
11331         implementation of _CIpow too, which those who do have Brood Wars can
11332         report on, so it can be implemented correctly.
11334         * windows/x11drv/keyboard.c: Guy Albertelli <galberte@neo.lrun.com>
11335         Partial implementation for GetKeyNameText for new keyboard structure.
11337         * dlls/tapi32/phone.c: Kevin Holbrook <kwh@neosoft.com>
11338         Fixed warning.
11340         * include/wine/obj_storage.h: Marcus Meissner <marcus@jet.franken.de>
11341         Added missing ReadClassStg prototype.
11343         * misc/wsprintf.c: Michael Veksler <mveksler@techunix.technion.ac.il>
11344         - Fix comments after the big renaming (xxxx32y --> xxxxy).
11345         - Declare the WPRINTF_DATA union, and use it instead of LPCVOID and WORD.
11346           Avoid ugly type casting, and fix compilation warnings of wsprintf.c
11348         * documentation/status/dde:
11349         Keith Matthews <keith_m@sweeney.demon.co.uk>
11350         Status document for DDE/Ddeml.
11352         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11353         Added event callback mechanism.
11354         Introduction of MCI yield procs.
11355         Updated (prepare|unprepare)header functions (wave, midi) to allow
11356         correct callback mechanisms.
11357         Made midiStreamXXX functions working.
11358         First try at mmThreadXXX functions.
11360         * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11361         Updated (prepare|unprepare)header functions to allow correct callback
11362         mechanisms.
11364         * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11365         Small enhancement.
11367         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11368         New method for structure conversion (16 <-> 32).
11369         More MCI structures correctly mapped.
11370         Introduction of MCI yield proc and break facility.
11372         * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11373         Updated (prepare|unprepare)header functions to allow correct callback
11374         mechanisms.  Implemented waveOut playback as asynchronous.
11376         * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
11377         Started implementation of mmThreadXXX functions.
11379         * include/mmsystem.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
11380         Added a few missing defines (MIDI, WAVE, callbacks).
11381         Structures for midiStreamXXX functions.
11383         * if1632/mmsystem.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
11384         Updated (prepare|unprepare)header functions (wave, midi) to allow
11385         correct callback mechanisms. Added wine specific entry for mmThreadXXX
11386         functions thread starting point.
11388         * include/wine/obj_storage.h:
11389         Michael Veksler <mveksler@techunix.technion.ac.il>
11390         Introduce STATSTG16 - a 16 bit variant of STATSTG.
11392         * ole/storage.c: Michael Veksler <mveksler@techunix.technion.ac.il>
11393         Fix IStorage16_fnStat() to use STATSTG16 (it is a 16 bit interface).
11395         * controls/menu.c: Paul Millar <paulm@astro.gla.ac.uk>
11396         Fixed menu type setting in SetMenuItemInfo32_common().
11398         * include/process.h, loader/ne/module.c, loader/task.c, scheduler/process.c, scheduler/thread.c:
11399         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11400         Send USIG_PROCESS_CREATE signal.
11401         Bugfix: GetProcessDword offset -8 should return parent process ID.
11403         * relay32/user32.spec, windows/user.c:
11404         Bertho Stultiens <bertho@panter.soci.aau.dk>
11405         Added RegisterSystemThread stub.
11407         * include/wine/obj_misc.h, ole/compobj.c, relay32/ole32.spec, include/winerror.h:
11408         Francis Beaudet <francis@macadamian.com>
11409         Implemented the CoCreateInstanceEx method.
11411         * misc/registry.c: David Gay <dgay@CS.Berkeley.EDU>
11412         Fixed crash due to a value of name length 0, value length 0 at the end
11413         of the registry.
11415         * windows/winpos.c: Francois Boisvert <francois@macadamian.com>
11416         Check if pTempActiveWindow in WINPOS_SetWindowPos is valid after the
11417         QUEUE_Lock.
11419         * multimedia/dplay.c: Francois Gouget <fgouget@psn.net>
11420         - updated because of the splitting of interface/implementation
11421         - updated to use ICOM_THIS
11423         * include/dplay.h, include/dplobby.h, ole/guid.c:
11424         Francois Gouget <fgouget@psn.net>
11425         - use the latest ICOM macros
11426         - moved the IDirectPlayLobby interface to dplobby.h
11427         - removed all the implementation aspects since they need to be
11428         separate
11430         * include/dsound.h, multimedia/dsound.c:
11431         Francois Gouget <fgouget@psn.net>
11432         ICOMisation of the DirectSound API.
11434         * dlls/shell32/folders.c, dlls/shell32/iconcache.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, include/shlobj.h:
11435         Juergen Schmied <juergen.schmied@metronet.de>
11436         - reorganised icon extracing from files
11437         - made extracting from ne and ico files working
11438         - IPersistFile interface for IExtractIcon
11440         * misc/shell.c: Juergen Schmied <juergen.schmied@metronet.de>
11441         Fixed buffer overrun.
11443         * include/cursoricon.h, objects/cursoricon.c:
11444         Juergen Schmied <juergen.schmied@metronet.de>
11445         Changed ressource dir structures.
11446         Adapted FindBestIccon/FindBestCursor.
11448         * windows/syscolor.c: Juergen Schmied <juergen.schmied@metronet.de>
11449         Loading the color schema for registry.
11451 Sat Apr 10 16:58:55 1999  Alexandre Julliard  <julliard@winehq.com>
11453         * include/winsock.h, misc/Attic/winsock_dns.c, misc/Makefile.in, misc/winsock.c, misc/winsock_async.c:
11454         Marcus Meissner <marcus@jet.franken.de>
11455         Reimplemented winsock asynchronous DNS services. No longer use a
11456         fork()ed process, but either a service thread or inline blocking calls
11457         for non-threading architectures. (Makes Free Agent16 work again.)
11459         * programs/cmdlgtst/Attic/cmdlgr.h, programs/cmdlgtst/cmdlgr.rc, programs/cmdlgtst/cmdlgtst.c:
11460         <ewill@ncal.verio.com>
11461         - color and font dialogs now actually do something interesting,
11462           and force a redraw when successful.  Background color is adjustable.
11463           Text color is also adjustable, but the user has to set the CF_EFFECTS
11464           flag first.
11465         - text is output left-right centered, baseline, at the middle
11466           of the window, and moves with the window.  Text font is adjustable.
11467         - Success and failure MessageBox calls for Color, Font, Open,
11468           and Save have been removed or suppressed.  They annoyed me after
11469           awhile, and I suspect they annoyed others, too.  Use my tool! :-)
11470         - cmdlgtst now has the full pathname in the upper left corner; which may
11471           assist in debugging certain problems -- or it may not. :-)
11472         - usage dialog added
11474         * ole/ole2nls.c: Juergen Schmied <juergen.schmied@metronet.de>
11475         Corrected debug output.
11477         * windows/driver.c, relay32/winmm.spec:
11478         Eric Pouech <Eric.Pouech@wanadoo.fr>
11479         Better error handling ; a few bug fixes ; now OpenDriver16 can load 32
11480         bit drivers.
11481         Added stub for GetDriverFlags.
11483         * windows/user.c, relay32/user32.spec:
11484         Sergey Turchanov <turchanov@usa.net>
11485         Stubs for CloseDesktop and CloseWindowStation.
11487         * loader/ne/module.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
11488         GetModuleFromPath now checks for loaded modules via filenames which
11489         were specified without a path.
11491         * misc/registry.c, include/winreg.h:
11492         Sylvain St.Germain <sylvain@macadamian.com>
11493         Implementation of HKU key saving and loading. Add new supported data
11494         type in debug_print_value.
11496         * dlls/shell32/shlview.c, include/docobj.h, ole/guid.c:
11497         Juergen Schmied <juergen.schmied@metronet.de>
11498         New interfaces for IOleCommandTarget, IDropTarget, IViewObject.
11499         Small change how to get icons for listview.
11501         * include/shlobj.h, relay32/shell32.spec:
11502         Juergen Schmied <juergen.schmied@metronet.de>
11503         ILLoadFromString and SHGetSettings implemented.
11505         * dlls/shell32/shellord.c:
11506         Juergen Schmied <juergen.schmied@metronet.de>
11507         SHGetSettings implemented.
11508         ExitWindowsDialog() simulated by Messagebox.
11510         * dlls/shell32/pidl.c: Juergen Schmied <juergen.schmied@metronet.de>
11511         ILLoadFromString implemented.
11513         * graphics/x11drv/init.c, graphics/ttydrv/init.c, graphics/ttydrv/palette.c:
11514         Richard Mortimer <remitrom@my-dejanews.com>
11515         Added missing *IsDark entries into PALETTE_Driver instance
11516         initialisation.
11518         * windows/x11drv/mouse.c: Brian Gerst <bgerst@quark.vpplus.com>
11519         Fixed X11DRV_MOUSE_WarpPointer initial value.
11521         * objects/bitmap.c: Luc Tourangeau <luc@macadamian.com>
11522         Ensure that the bitmap is properly initialized when created with the
11523         LR_CREATEDIBSECTION flag.
11525         * dlls/comctl32/treeview.c: Sylvain St.Germain <sylvain@macadamian.com>
11526         Fixed the messaging problem of the edit box for node label edition.
11527         Substituted WM_PAINT for InvalidateRect.
11528         Some graphical fixes.
11530         * misc/main.c: James Juran <jrj120@psu.edu>
11531         Check for drivers==NULL before trying to delete them at exit.  This
11532         could happen if the emulator initialization failed for some reason and
11533         the drivers hadn't been initialized yet.
11535         * if1632/thunk.c, include/callback.h, misc/callback.c, miscemu/main.c:
11536         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11537         Call InitApp16 (using Callout) for initial process.
11539         * miscemu/instr.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11540         Clear invalid selectors also in CallTo16 relay code.
11542         * programs/notepad/Es.rc:
11543         Jose Marcos López Caravaca <jose.lopez@upcnet.upc.es>
11544         Revised Spanish resources.
11546         * windows/mdi.c: Gerard Patel <g.patel@wanadoo.fr>
11547         Fixed window locking bug in CalcChildScroll.
11549         * multimedia/time.c: Ove Kaaven <ovek@arcticnet.no>
11550         Fixed fake multimedia timers. Grim Fandango is now able to start up
11551         when under favorable conditions. The preview movie on the Brood Wars
11552         disc now plays, too.
11554         * misc/printdrv.c: Klaas van Gend <klaas@vangend.demon.nl>
11555         Bugfix EnumPrintersA: lpbPrinters=NULL or cbBuf=0 would crash Wine,
11556         instead of returning the right buffersize.
11558 Tue Apr  6 07:14:09 1999  Alexandre Julliard  <julliard@winehq.com>
11560         * files/directory.c: galberte <galberte@neo.rr.com>
11561         Fixed SearchPathA return value.
11563         * graphics/d3d_private.h, graphics/d3dtexture.c, graphics/ddraw.c, graphics/ddraw_private.h:
11564         Lionel Ulmer <ulmer@directprovider.net>
11565         - clean-up of texture 'loading'
11566         - added SetColorKey callback for already loaded textures
11568         * include/wine/obj_storage.h: Francois Gouget <fgouget@psn.net>
11569         Fixed a problem pointed out by Kevin Holbrook.
11571         * include/commctrl.h: Francois Gouget <fgouget@psn.net>
11572         commctrl.h must include prsht.h.
11574         * include/wine/obj_oleaut.h: Francois Gouget <fgouget@psn.net>
11575         Warning fix.
11577         * include/wine/obj_base.h: Francois Gouget <fgouget@psn.net>
11578         Added a new implementation of the ICOM macros that use Microsoft style
11579         virtual methods to implement the COM interfaces in C++.
11581         * misc/ddeml.c: Keith Matthews <keith_m@sweeney.demon.co.uk>
11582         Correction of Mutex handling in DdeInitializeW for cases other than
11583         1st call. Addition of instance handling to DdeCreateStringHandleA,
11584         DdeCreateStringHandleW, RemoveHSZNodes, FreeAndRemoveHSZNodes.  1st
11585         cut implementation of DdeUnitialize, move of internal structure defs
11586         in from ddeml.h. Removed non-ANSI comment.
11588         * include/ddeml.h: Keith Matthews <keith_m@sweeney.demon.co.uk>
11589         Moved internal structures to ddeml.c, also removed non-ANSI comments,
11590         and added spec for DdeQueryConfInfo and DdeQueryConvInfo16.
11592         * multimedia/mmsystem.c: Chris Morgan <cmorgan@wpi.edu>
11593         James Abbatiello <abbeyj@wpi.edu>
11594         Fixed memory leaks in mixerOpen16/mixerClose,
11595         midiOutOpen16/midiOutClose16, waveInOpen16/waveInClose16,
11596         midiInOpen16/midiInClose16.
11598         * tools/bug_report.pl: Adam Sacarny <magicbox@bestweb.net>
11599         Added sanity check for whitespace in file names, various other fixups.
11601 Sun Apr  4 12:48:21 1999  Alexandre Julliard  <julliard@winehq.com>
11603         * controls/listbox.c: Luc Tourangeau <luc@macadamian.com>
11604         WM_MOUSEMOVE implementation bug fix.
11606         * windows/x11drv/keyboard.c:
11607         José Marcos López <jose.lopez@upcnet.upc.es>
11608         Added Spanish keyboard layout.
11610         * misc/comm.c: Lawson Whitney <lawson_whitney@juno.com>
11611         Fixed the modem control part of EscapeCommFunction16.
11613         * controls/combo.c: Gerard Patel <g.patel@wanadoo.fr>
11614         Added missing goto.
11616         * ole/ole2nls.c, relay32/kernel32.spec, include/winnls.h:
11617         Marcus Meissner <marcus@jet.franken.de>
11618         EnumCalendarInfoA stub.
11620 Sat Apr  3 16:27:54 1999  Alexandre Julliard  <julliard@winehq.com>
11622         * windows/mouse.c, windows/keyboard.c:
11623         Francois Boisvert <francois@macadamian.com>
11624         Suspend the window locks before DefKeybEventProc and
11625         DefMouseEventProc.
11627         * include/wnaspi32.h, programs/view/globals.h, include/aspi.h, include/mmsystem.h, include/winaspi.h, include/winioctl.h, include/winnt.h:
11628         Joerg Mayer <jmayer@telesun2.telemation.de>
11629         More #pragma fixes (idea Ove Kaaven, mistakes are mine).
11631         * windows/win.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11632         No longer sending atoms in ((CREATESTRUCT*)lParam)->lpszName of
11633         WM_CREATE messages.
11635         * loader/module.c: Marcus Meissner <marcus@jet.franken.de>
11636         Added some SetLastError()s in GetProcAddress() and LoadLibrary().
11638         * misc/crtdll.c, relay32/crtdll.spec:
11639         Christian Schlaile <up9n@rz.uni-karlsruhe.de>
11640         Implemented makepath, rand() returns correct range, fixed fputc.
11642         * files/file.c, include/file.h, msdos/int21.c:
11643         Mask off unsupported attributes in _lcreat (bug reported by Andreas Mohr).
11644         Moved _lcreat16_uniq to int21.c
11646         * libtest/hello3.c, libtest/hello3res.rc, libtest/hello4.c, libtest/new.c, libtest/rolex.c, libtest/vartest.c, libtest/volinfo.c:
11647         Pavel Roskin <pavel_roskin@geocities.com>
11648         Casts to (SEGPTR) removed. They did nothing anyway.
11649         Includes added or removed where necessary.
11650         Win16 functions replaced with their Win32 counterparts. Comments added
11651         where it was impossible.
11652         CALLBACK added where necessary. Some declarations fixed.
11653         Constructs like "#if WINDOWS" corrected. Using "#ifdef __unix__" instead.
11654         DlgProc in hello3 uses EndDialog() instead of DestroyWindow().
11655         Listbox enabled in hello3.
11657         * windows/x11drv/keyboard.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11658         Updated French keyboard.
11660         * libtest/hello.c: Alex Korobka <alex@aikea.ams.sunysb.edu>
11661         Fancier version of hello.c courtesy of Huw Davies.
11663         * programs/control/control.c: Pavel Roskin <pavel_roskin@geocities.com>
11664         Fixed compilation of the Control panel.
11666         * windows/x11drv/keyboard.c: Ove Kaaven <ovek@arcticnet.no>
11667         'Realigned' the layout table a bit. Applied the non-latin-1 stuff and
11668         the dead key mapping stuff to the actual mapping code too.  Prettied
11669         up the fixme message. Added a check where if the keys of two layouts
11670         match exactly, the one with the best-matching keycode order is chosen,
11671         so that the QWERTY and Dvorak layouts can be distinguished.
11673         * win32/device.c, relay32/kernel32.spec:
11674         Eric Pouech <Eric.Pouech@wanadoo.fr>
11675         Added (empty) stub for OpenVxDHandle.
11677         * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11678         mmioOpen() now handles correctly MMIO_PARSE flag.
11680         * controls/edit.c: Luc Tourangeau <luc@macadamian.com>
11681         Background color fix when disabled or read only.
11683         * windows/win.c: Francois Boisvert <francois@macadamian.com>
11684         Transfered the window struct memory release from WIN_DestroyWindow to
11685         WIN_ReleaseWndPtr.
11687         * include/winuser.h: Thuy Nguyen <thuy@macadamian.com>
11688         DLGITEMTEMPLATE structure had one too many member.
11690         * debugger/db_disasm.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11691         Prevent crash in debugger.
11693 Fri Apr  2 10:37:42 1999  Alexandre Julliard  <julliard@winehq.com>
11695         * controls/combo.c, controls/listbox.c, include/combo.h:
11696         Francis Beaudet <francis@macadamian.com>
11697         Implemented the Win95 look and feel.
11699         * windows/defwnd.c: Francis Beaudet <francis@macadamian.com>
11700         Wrote a basic implementation of the WM_PRINT message.
11702         * windows/dce.c, windows/win.c, windows/winproc.c, misc/callback.c:
11703         Francois Boisvert <francois@macadamian.com>
11704         Suspend all windows locks before the control is passed to the
11705         application.
11706         Also fixed some bugs in dce.c
11708         * Make.rules.in, Makefile.in:
11709         Joerg Mayer <jmayer@telesun2.telemation.de>
11710         - Remove some old rc make stuff
11711         - "make clean" omitted some include subdirs
11713         * relay32/ddraw.spec, graphics/ddraw.c:
11714         Lionel Ulmer <ulmer@directprovider.net>
11715         Added DllClassFactory to DirectDraw.
11717 Thu Apr  1 12:05:44 1999  Alexandre Julliard  <julliard@winehq.com>
11719         * windows/x11drv/keyboard.c: Marcus Meissner <marcus@jet.franken.de>
11720         Split off keysym/deadchar -> char mapping, use it in DetectLayout.
11722         * 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:
11723         Alex Korobka <alex@aikea.ams.sunysb.edu>
11724         Fixes for ignored WVR_[VH]REDRAW flags, made minimization in managed
11725         mode go through window manager, small bugfixes for menu and window
11726         code, extended clipboard driver model to handle formats other than
11727         text.
11729         * controls/edit.c: Pavel Roskin <pavel_roskin@geocities.com>
11730         EC_USEFONTINFO means es->char_width/3, not es->char_width. This is
11731         true for multiline controls too, as my tests show.
11733         * dlls/comctl32/listview.c, include/listview.h:
11734         Luc Tourangeau <luc@macadamian.com>
11735         Added support for icon and smallicon views.
11737         * loader/dos/dosvm.c: Ove Kaaven <ovek@arcticnet.no>
11738         Made DOSVM_GetTimer survive EAGAIN errors...
11740         * include/comm.h, misc/comm.c: Ove Kaaven <ovek@arcticnet.no>
11741         Implemented async comm buffers (but probably not bugfree), and along
11742         with them, the functionality of async event notifications, mong them
11743         EnableCommNotification. Removed a previous hack that was faking the
11744         buffers, since we now have real buffers...
11746         * include/wine/winuser16.h: Ove Kaaven <ovek@arcticnet.no>
11747         Added CN_* flags used in WM_COMMNOTIFY.
11749         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
11750         Implement the EnumAttachedSurface method.
11752         * ole/ole2.c: Noel Borthwick <noel@macadamian.com>
11753         Implementation for OleCreateMenuDescriptor, OleSetMenuDescriptor and
11754         OleDestroyMenuDescriptor along with a bunch of internally used methods
11755         and data structures.
11757         * ole/guid.c, include/initguid.h, include/shlguid.h, include/wine/obj_olefont.h, include/wtypes.h:
11758         Adrian Thurston <adriant@corel.ca>
11759         initguid.h should only contain the macro that defines the guids.
11760         Added olectl.h to guid.c so some needed guids get defined.
11761         Made GUID_NULL an actual guid set to 0,0,0...
11763         * if1632/gdi.spec, objects/gdiobj.c:
11764         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11765         Added GdiSignalProc() stub.
11767         * 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:
11768         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11769         Added USER32.UserSignalProc to Callout table.
11770         Implemented built-in UserSignalProc().
11771         Don't announce Win3.1-style USER handler any more.
11773         * win32/ordinals.c, include/process.h, loader/ne/module.c, loader/ne/segment.c, loader/task.c, scheduler/process.c, scheduler/thread.c:
11774         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11775         Implemented PROCESS_CallUserSignalProc().
11776         Send USER signals at various appropriate places.
11777         Moved [GS]etProcessDword() to scheduler/process.c.
11779         * 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:
11780         Juergen Schmied <juergen.schmied@metronet.de>
11781         All 19 FileMenu_* functions, some as stubs, some implemented.
11783         * dlls/shell32/shellole.c, dlls/shell32/shellord.c:
11784         Juergen Schmied <juergen.schmied@metronet.de>
11785         SHCLSIDFromString, StrToOleStr implemented.
11786         RLBuildListOfPaths stub.
11788         * dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h:
11789         Juergen Schmied <juergen.schmied@metronet.de>
11790         DllGetVersion (not yet exported).
11791         Small change to SHAppBarMessage.
11793         * relay32/winmm.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
11794         Added DrvClose, DrvDefDriverProc, DrvOpen, DrvOpenA, DrvSendMessage.
11796         * if1632/mmsystem.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
11797         Added StackEnter() and StackLeave() stubs
11799         * multimedia/mci.c, multimedia/mmsystem.c:
11800         Eric Pouech <Eric.Pouech@wanadoo.fr>
11801         Starting implementation of MCI creator tasks
11802         Fixed bug in MCI_OPEN handling (thanks to Adam for reporting this one)
11803         Better implementation of mmTaskCreate16
11805         * include/multimedia.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
11806         Added creator task to MCI struct.
11808         * dlls/commdlg/filedlg.c: Pavel Roskin <pavel_roskin@geocities.com>
11809         Replaced 0xC000 by symbolic constants.
11811         * dlls/comctl32/imagelist.c: Francis Beaudet <francis@macadamian.com>
11812         Fixed small ==, != mixup.
11814         * windows/defdlg.c, windows/defwnd.c:
11815         Luc Tourangeau <luc@macadamian.com>
11816         Implemented WM_NOTIFYFORMAT.
11818         * loader/elf.c: Marcus Meissner <marcus@mud.de>
11819         "foo" was not translated to "foo.so" in elf loader.
11821         * include/bitmap.h, objects/bitmap.c:
11822         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11823         LoadBitmap16()/LoadImage16() calling sequence simplified.
11825         * loader/module.c, loader/ne/resource.c, misc/callback.c, if1632/wprocs.spec:
11826         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11827         Allow NULL NE resource handler; call the default handler directly.
11828         Removed WPROCS / Callbacks support for WineLib resource handlers.
11830         * include/process.h, relay32/utthunk.c:
11831         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11832         Made Universal Thunk list per-process, not system global.
11834         * include/commctrl.h: Paul Quinn <paulq@corel.ca>
11835         Additional macro definitions.
11837         * dlls/comctl32/tab.c: Francis Beaudet <francis@macadamian.com>
11838         Implemented TCM_ADJUSTRECT.
11840         * msdos/int09.c, msdos/ioports.c:
11841         Michael Veksler <mveksler@techunix.technion.ac.il>
11842         Removed "implicit declaration" warnings.
11844         * graphics/d3d_private.h: Lionel Ulmer <ulmer@directprovider.net>
11845         Fixed OpenGL devices implementation.
11847         * windows/queue.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
11848         In UserYield16, when current thread is a 32 bit one which hold the
11849         Win16Lock, must take care of a LockCount > 1.
11851         * */*.c:
11852         Patrik Stridvall <ps@leissner.se>
11853         More code moved to the X11 driver (bitmap and palette and misc).
11855 ----------------------------------------------------------------
11856 Sun Mar 28 15:20:00 1999  Alexandre Julliard  <julliard@winehq.com>
11858         * include/winbase.h, include/wingdi.h:
11859         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
11860         Move DM* defines from winbase.h -> wingdi.h.
11862         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
11863         Fixed QueryInterface functions for IDirect3D 1 and 2.
11865         * ole/nls/Attic/dnk.nls: Apparently no longer needed.
11867         * 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:
11868         Dimitrie O. Paun <dimi@cs.toronto.edu>
11869         Changed some debug messages from one channel to another, to clean up a
11870         bit the debug channel usage.
11872         * loader/module.c: Jess Haas <paranoid07@hotmail.com>
11873         Fixed CreateProcessA so it can handle commandlines with arguments and
11874         no .exe.
11876         * loader/ne/module.c: Jess Haas <paranoid07@hotmail.com>
11877         Fixed GetModuleHandle16.
11879         * windows/x11drv/keyboard.c: Pavel Roskin <pavel_roskin@geocities.com>
11880         Added Russian keyboard support.
11882         * include/winuser.h, relay32/user32.spec, windows/user.c:
11883         Lionel Ulmer <ulmer@directprovider.net>
11884         Added stub for SetSystemCursor.
11886         * win32/file.c: Steffen Moeller <moeller@ebi.ac.uk>
11887         SetFileAttributesA: "implemented" setting of directory flag as test of
11888         compatibility.
11890         * windows/x11drv/keyboard.c: Pavel Roskin <pavel_roskin@geocities.com>
11891         Changes in X11DRV_KEYBOARD_DetectLayout in order to implement Russian
11892         keyboard support.
11894         * 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:
11895         Paul Quinn <paulq@corel.ca>
11896         Aaron Barnes <aaronb@corel.ca>
11897         Adrian Thurston <adriant@corel.ca>
11898         Bundle of new stubs.
11900         * misc/crtdll.c, misc/ddeml.c, ole/ole2disp.c:
11901         Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
11902         Added missing WINAPIs.
11904         * relay32/kernel32.spec, win32/newfns.c:
11905         Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
11906         Added CreateIoCompletionPort stub.
11908         * windows/queue.c, windows/message.c:
11909         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
11910         Call EVENT_Pending() to flush X11 output queue before blocking in
11911         MsgWaitForMultipleObjects().
11912         Don't call EVENT_WaitNetEvent in MSG_PeekHardwareMsg.
11913         Protect system queue access in hardware_event().
11915         * 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:
11916         Francois Boisvert<francois@macadamian.com>
11917         Fixed some bugs in thread safeness for wnd struct.
11919         * libtest/Makefile.in, libtest/hello3.c, libtest/hello3res.rc:
11920         Pavel Roskin <pavel_roskin@geocities.com>
11921         Made libtest/hello3 work again, now with Windows-compatible resource
11922         loading.
11924         * include/imm.h, include/mmsystem.h, include/msacm.h, include/windef.h, include/wtypes.h:
11925         Jiuming Luo <jiuming_luo@yahoo.com>
11926         Moved macro DECLARE_HANDLE() (in msacm.h and wtypes.h) to windef.h,
11927         then deleted the duplicated typedefs (in imm.h and mmsystem.h).
11929         * misc/printdrv.c: Klaas van Gend <klaas@vangend.demon.nl>
11930         Rewrote EnumPrintersA, added CriticalSection around Registry reads and
11931         implemented PRINTER_INFO_2 request.
11933         * windows/x11drv/keyboard.c: Jonathan Naylor <g4klx@pop.agri.ch>
11934         Added Swiss German keyboard layout.
11936         * 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:
11937         Juergen Schmied <juergen.schmied@metronet.de>
11938         - adjusted printing of refcounts to be equal
11939         - cleaning up icon cache on PROCESS_DETACH
11940         - fixed ascii/unicode use in SH/ILCreateFromPath
11941         - fixed small memory leak in shellview
11943         * loader/dos/dosvm.c: Marcus Meissner <marcus@jet.franken.de>
11944         Empty DOSVM_QueueEvent for !MZ_SUPPORTED.
11946         * programs/cmdlgtst/cmdlgtst.c:
11947         Pavel Roskin <pavel_roskin@geocities.com>
11948         Fixed warnings.
11950         * include/commdlg.h: Pavel Roskin <pavel_roskin@geocities.com>
11951         Changed CHOOSECOLOR[AW].Flags from UINT to DWORD.
11953         * 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:
11954         Alex Korobka <alex@aikea.ams.sunysb.edu>
11955         Moved hrgnUpdate from client to window coordinates, made nonclient
11956         painting depend on the update region, reworked SetWindowPos() and
11957         RedrawWindow() to speed up update region calculation, made -desktop
11958         work properly, added WM_CANCELMODE here and there, fixed several
11959         window activation bugs that crept in since the last time.
11961         * windows/message.c: Alex Korobka <alex@aikea.ams.sunysb.edu>
11962         Fixed occasional loss of SendMessage() return value.
11964         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
11965         Added initialisation of the pixmap_depth field in
11966         Xlib_DirectDrawCreate.
11968         * msdos/ioports.c: Jess Haas <paranoid07@hotmail.com>
11969         Fixed a warning.
11971         * msdos/int2f.c: Jess Haas <paranoid07@hotmail.com>
11972         Added stub for int2f 4b.
11974         * multimedia/mmsystem.c: Chris Morgan <cmorgan@wpi.edu>
11975         James Abbatiello <abbeyj@wpi.edu>
11976         Fixed memory leak in waveOutOpen/waveOutClose.
11978         * graphics/psdrv/escape.c:
11979         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
11980         More Escapes for the PostScript driver.
11982 Sat Mar 27 16:56:13 1999  Alexandre Julliard  <julliard@winehq.com>
11984         * graphics/d3dcommon.c, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c:
11985         Francois Gouget <fgouget@psn.net>
11986         Adapted to the interface/implementation separation.
11987         Now uses ICOM_THIS to access the implementation structures.
11988         Replaced 'this' with 'This' for ICOM_THIS.
11989         Direct access to the virtual table has been eliminated too.
11991         * graphics/d3d_private.h, graphics/ddraw_private.h:
11992         Francois Gouget <fgouget@psn.net>
11993         Updated to include all the implementation aspects that were previously
11994         in the public includes.
11996         * graphics/vga.c: Francois Gouget <fgouget@psn.net>
11997         Removed direct access to the virtual table
11999         * include/d3d.h, include/ddraw.h: Francois Gouget <fgouget@psn.net>
12000         Removed all implementation aspects.
12001         Modified to use the latest ICOM macros.
12002         Added the macros for use in C.
12003         Added the method parameter names (when I had them).
12005         * include/module.h, include/pe_image.h, include/thread.h, loader/module.c, loader/pe_image.c, scheduler/process.c, scheduler/thread.c:
12006         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12007         Fixed sequence of DLL_PROCESS_DETACH notification calls.
12008         Moved PE_MODREF flags to WINE_MODREF level.
12009         Better handling of LoadLibraryEx flags.
12010         PE_InitTls() changed to work only on the current thread.
12012         * include/server.h, scheduler/process.c, server/trace.c:
12013         Added cmd line in new_process request.
12015         * scheduler/thread.c:
12016         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12017         All threads created with CreateThread are 32-bit threads.
12019         * dlls/shell32/Makefile.in, dlls/shell32/regstream.c, dlls/shell32/shellord.c:
12020         Juergen Schmied <juergen.schmied@metronet.de>
12021         Reading of binary streams implemented (SHOpenRegStream).
12023         * msdos/int25.c, msdos/int26.c:
12024         Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12025         Fixed int25 & int26 error code.
12027         * loader/task.c, windows/queue.c:
12028         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12029         Allow UserYield16 to be called from 32-bit thread.
12031         * include/oledlg.h, include/winbase.h:
12032         Albert Den Hann <albertd@corel.ca>
12033         Additional macro definitions.
12035         * graphics/x11drv/bitmap.c, include/bitmap.h, objects/bitmap.c:
12036         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
12037         Fixed {S|G}etBitmapBits in x11drv.  Removed BITMAP_GetPadding.
12039         * objects/metafile.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
12040         Fixed metafile recording of CreatePatternBrush.
12042 Thu Mar 25 16:42:28 1999  Alexandre Julliard  <julliard@winehq.com>
12044         * dlls/comctl32/imagelist.c, dlls/comctl32/toolbar.c, include/commctrl.h, include/toolbar.h, dlls/comctl32/commctrl.c:
12045         Pascal Lessard <pascal@macadamian.com>
12046         Change the AddBitmap function. Implement flat toolbar. Change
12047         CreateToolbarEx. Implement partially the hot buttons for toolbar.
12049         * msdos/int16.c:
12050         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
12051         Implemented Get Shift Flags function.
12053         * dlls/comctl32/treeview.c: Marcus Meissner <marcus@jet.franken.de>
12054         Missing WINAPI.
12056         * graphics/painting.c: David Luyer <luyer@ucs.uwa.edu.au>
12057         Changed stdlib.h to string.h.
12059         * dlls/ntdll/time.c: David Luyer <luyer@ucs.uwa.edu.au>
12060         Added string.h.
12062         * misc/ddeml.c, multimedia/msvideo.c, ole/safearray.c, programs/avitools/aviinfo.c, programs/avitools/aviplay.c, programs/avitools/icinfo.c, win32/console.c:
12063         David Luyer <luyer@ucs.uwa.edu.au>
12064         Changed "strings.h" to "string.h".
12066         * graphics/x11drv/bitblt.c, windows/nonclient.c:
12067         Randy Weems <rweems@home.com>
12068         Fixed off-by-one error if bitblt width or height is negative.
12070         * dlls/comctl32/tab.c, include/tab.h:
12071         Francis Beaudet <francis@macadamian.com>
12072         Implemented:
12073         - showing the selected tab as highlighted
12074         - support for drawing the focus rectangle
12075         - basic keyboard support
12076         - support for a tab with horizontal scrolling.
12078         * files/profile.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12079         Thread-safe implementation of profile functions (Windows and Wine).
12081         * include/message.h, loader/main.c, windows/timer.c:
12082         Stephane Lussier <stephane@macadamian.com>
12083         Made the timer code thread safe.
12085         * windows/dialog.c: Francis Beaudet <francis@macadamian.com>
12086         Fixed possible endless loop.
12088         * controls/listbox.c: Francis Beaudet <francis@macadamian.com>
12089         Fixed LB_GETCURSEL message to return LB_ERR on empty list.
12091         * 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:
12092         Juergen Schmied <juergen.schmied@metronet.de>
12093         Use the new header for COM definitions.
12095         * dlls/shell32/shellord.c, relay32/shell32.spec:
12096         Juergen Schmied <juergen.schmied@metronet.de>
12097         New stub shell_654.
12099         * include/treeview.h, dlls/comctl32/treeview.c:
12100         Sylvain St.Germain <sylvain@macadamian.com>
12101         Implementation of TVM_SORTCHILDRENCB.
12102         Implementation of TVI_SORT insertion.
12103         Fix display problem when TVIF_IMAGE|TVIF_SELECTEDIMAGE were not set.
12104         Fix problems related to TVIS_EXPANDEDONCE.
12106         * dlls/comctl32/comctl32undoc.c:
12107         Sylvain St.Germain <sylvain@macadamian.com.epfl.ch>
12108         Fix problem in DPA_QuickSort where the sort order was inverted.
12110         * include/dosexe.h, include/winbase.h, loader/dos/dosvm.c, loader/dos/module.c:
12111         Ove Kaaven <ovek@arcticnet.no>
12112         Added infrastructure and definitions for general-purpose event and IRQ
12113         handling for the Wine dos box. Removed the obsolete MZ_Tick. Added
12114         event message loop, message handling, CLI/STI handling, and minimal
12115         PIC support.
12117         * loader/dos/dosmod.c: Ove Kaaven <ovek@arcticnet.no>
12118         Added handling of SIGUSR2 for the new event interruption handling,
12119         bumping up the protocol revision. Made some debug messages not be
12120         output when it's not necessary.
12122         * msdos/ioports.c: Ove Kaaven <ovek@arcticnet.no>
12123         Added port 0x60 for int 0x09, and port 0x20 for PIC handling.
12125         * include/miscemu.h, msdos/Makefile.in, msdos/interrupts.c:
12126         Ove Kaaven <ovek@arcticnet.no>
12127         Added int 0x09 and int 0x33.
12129         * msdos/int33.c: Ove Kaaven <ovek@arcticnet.no>
12130         Implemented a int 0x33 handler, with a minimal implementation of the
12131         mouse routines, including callbacks.
12133         * msdos/int09.c: Ove Kaaven <ovek@arcticnet.no>
12134         Implemented a int 0x09 handler, and a scancode queue that simulates
12135         IRQ 1 in the dos box.
12137         * include/docobj.h: Paul Quinn <paulq@corel.ca>
12138         Creation of docobj.h.
12140         * objects/dib.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
12141         Allow depth of DIB to differ from depth of bitmap in GetDIBits.
12143 Wed Mar 24 15:07:20 1999  Alexandre Julliard  <julliard@winehq.com>
12145         * debugger/editline.c: Abort on input error.
12147         * include/oledlg.h: Adrian Thurston <adriant@corel.ca>
12148         Population of oledlg.
12150         * windows/x11drv/event.c, windows/painting.c:
12151         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12152         Add IsWindow() checks after SendMessage() returns.
12154         * msdos/int10.c: Jess Haas <paranoid07@hotmail.com>
12155         Fixed a small bug in int10.
12157         * controls/combo.c: Pascal Lessard <pascal@macadamian.com>
12158         COMBO_Size: maintain the height of the RectCombo when the window is
12159         resized.
12161         * include/hook.h, include/winuser.h: Adrian Thurston <adriant@corel.ca>
12162         Paul Quinn <paulq@corel.ca>
12163         Added various definitions.
12164         Moved CWPSTRUCT from hook.h to winuser.h to conform to the SDK.
12166         * include/windef.h: Jim Aston <jima@corel.ca>
12167         Added a few empty macros.
12169         * include/cursoricon.h, objects/cursoricon.c:
12170         Marcus Meissner <marcus@jet.franken.de>
12171         CURSORICON_Destroy: missing WINAPI added.
12173         * misc/winsock.c: Marcus Meissner <marcus@jet.franken.de>
12174         Added translation for SO_RCVTIMEO (as seen by IE4).
12176 Tue Mar 23 17:04:10 1999  Alexandre Julliard  <julliard@winehq.com>
12178         * server/process.c: Create startup info for the initial process.
12180         * include/server.h, scheduler/client.c, scheduler/process.c, scheduler/sysdeps.c, scheduler/thread.c, server/request.c, server/trace.c:
12181         Added server pid and tid in init_thread request, and use them in
12182         CLIENT_InitThread.
12184         * 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:
12185         Noomen Hamza <noomen@macadamian.com>
12186         Implemented:
12187         - IMoniker interface for FileMoniker,ItemMoniker,AntiMoniker and
12188           GenericCompositeMoniker
12189         - IRunningObjectTable interface, and
12190         - IBindCtx interface.
12192         * graphics/psdrv/bitmap.c, graphics/psdrv/ps.c, include/psdrv.h:
12193         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
12194         Added StretchDIBits for the PostScript driver.
12196         * include/miscemu.h: Ove Kaaven <ovek@arcticnet.no>
12197         Added missing ending pragma pack.
12199         * misc/comm.c: Rein Klazes <rklazes@casema.net>
12200         Corrected small bug in GetCommState16. Parity check can be disabled
12201         even when a parity bit is used. SetCommState16() can override baudrate
12202         setting in wine.conf.
12204 Mon Mar 22 17:47:36 1999  Alexandre Julliard  <julliard@winehq.com>
12206         * loader/module.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12207         Bugfix: cope with quoted arguments for CreateProcess().
12209         * loader/resource.c:
12210         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12211         Fixed typo in SizeofResource().
12213         * memory/string.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12214         lstrcpyA can't use strcpy.
12216         * relay32/builtin32.c, if1632/builtin.c, include/module.h, misc/main.c, miscemu/main.c:
12217         Marcus Meissner <marcus@jet.franken.de>
12218         Added -dll option for winelib programs. (Note: will not print warnings
12219         on failure currently).
12221         * relay32/ntdll.spec: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12222         Added strlwr.
12224         * loader/pe_image.c, msdos/int21.c:
12225         Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12226         Cosmetics.
12228         * if1632/mmsystem.spec, relay32/winmm.spec:
12229         Eric Pouech <Eric.Pouech@wanadoo.fr>
12230         Added new stubs (mmTaskXXX, mmThreadXXX, mciExecute).
12232         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12233         Started calling mixer as a 32 bit low level driver (no longer 16 bit)
12234         Added support for yield proc in mci struct
12235         Added mmTaskXXX16 and mmThreadXXX16 functions
12236         Refreshed implementation of 16 bit native & asynchronous MCI driver
12237         command (through mmtask.tsk).
12239         * multimedia/mixer.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12240         Fixed a few bugs. Started implementing mixerMessage as a 32 bit
12241         function (no longer 16 bit).
12243         * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12244         Implemented mciExecute.
12246         * include/multimedia.h, multimedia/mci.c:
12247         Eric Pouech <Eric.Pouech@wanadoo.fr>
12248         Added yield proc members to mci struct.
12250         * include/mmsystem.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
12251         Added mixer specfic error codes, fixed type in function name.
12253         * windows/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12254         Fixed return codes for default driver proc.
12256         * controls/listbox.c: Lawson Whitney <lawson_whitney@juno.com>
12257         Made LB_GETCURSEL return focus_item if no item has been selected.
12259         * windows/x11drv/keyboard.c:
12260         Kalevi J Hautaniemi <oh3fg@oh3tr.ele.tut.fi>
12261         Added Finnish keyboard layout.
12263         * 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:
12264         Veksler Michael <mveksler@techunix.technion.ac.il>
12265         Removed winuser16.h from x11drv.h.
12267         * include/winspool.h, misc/printdrv.c:
12268         Klaas van Gend <klaas@vangend.demon.nl>
12269         Implementation of EnumPrintersA, info level 4 and 5.
12271         * tools/bug_report.pl: Adam Sacarny <magicbox@bestweb.net>
12272         Check if the build is stripped, and die if it is.
12273         Check for Bash 2.0, and if so use different STDERR->STDOUT redirctor
12274         (thanks Ryan Cumming!).
12276         * windows/mdi.c: Veksler Michael <mveksler@techunix.technion.ac.il>
12277         Fixed "reached end of non void..." warnings.
12279         * documentation/debugging: Marcus Meissner <marcus@jet.franken.de>
12280         MessageBox32A -> MessageBoxA
12282         * loader/module.c, relay32/kernel32.spec:
12283         Sergey Turchanov <turchanov@usa.net>
12284         Implementation for FreeLibraryAndExitThread.
12285         Made GetBinaryType = GetBinaryTypeA.
12287         * include/task.h, loader/task.c, scheduler/process.c, scheduler/thread.c:
12288         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12289         Run Win32 processes in their own threads.
12290         Process exit sequence adapted.
12292 Sun Mar 21 19:26:26 1999  Alexandre Julliard  <julliard@winehq.com>
12294         * scheduler/sysdeps.c, scheduler/thread.c, include/thread.h, loader/module.c, scheduler/client.c, scheduler/process.c:
12295         Changed process initialisation to use the new server requests.
12296         Started to move the process init to the right context, not finished yet.
12298         * 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:
12299         Added new_process and init_process request.
12300         Split out process creation from thread creation.
12301         Changed server initialisation to ensure that we always have a current
12302         thread.
12304         * windows/x11drv/keyboard.c: Robert Pouliot <krynos@clic.net>
12305         One small error corrected and the 102th key...
12307         * misc/comm.c, include/comm.h: Ove Kaaven <ovek@arcticnet.no>
12308         Made commerror and eventmask local to each port (for win16), made the
12309         win16 routines use port indices instead of UNIX fds (this should make
12310         some Visual Basic stuff and similar garbage start working), moved some
12311         stuff around (win16 routines at top of file, win32 routines at
12312         bottom), made a couple of win32 routines use win32 handles, and added
12313         a few hints as to how to implement asynchronous buffers, based on
12314         which EnableCommNotification can eventually be implemented.
12316         * include/winuser.h: Ove Kaaven <ovek@arcticnet.no>
12317         Fixed prototypes of a couple of comm routines.
12319         * loader/ne/module.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12320         Fixed typo.
12322         * windows/win.c: Francis Beaudet <francis@macadamian.com>
12323         Clear update region before WM_NCDESTROY.
12325         * include/heap.h, memory/heap.c, relay32/utthunk.c, windows/queue.c:
12326         Got rid of SYSTEM_LOCK macros.
12328 Sat Mar 20 07:18:26 1999  Alexandre Julliard  <julliard@winehq.com>
12330         * misc/main.c: No longer need to delete system heap critical section.
12332 Fri Mar 19 17:04:25 1999  Alexandre Julliard  <julliard@winehq.com>
12334         * dlls/shell32/shell32_main.c: Francis Beaudet <francis@macadamian.com>
12335         Added a check for desktop in SHGetFileInfo.
12337         * multimedia/mci.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12338         Fixed some bugs in MCI message mapping (32A => 16).
12340         * windows/win.c: Pavel Roskin <pavel_roskin@geocities.com>
12341         Fixed WIN_SendDestroyMsg.
12343         * include/winsock.h: Pavel Roskin <pavel_roskin@geocities.com>
12344         Removed definitions for FIONREAD and FIONBIO.
12346         * windows/driver.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12347         Fixes some return values for DefDriverProc.
12349         * programs/regapi/regFixer.pl:
12350         Sylvain St.Germain <sylvain@macadamian.com>
12351         Removed the chop command that was there to get rid of dos ^M.
12352         The script now process only unix file format.
12354         * windows/dialog.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12355         Hide dialog windows created by CreateDialog* in EndDialog just as
12356         Windows does.
12358         * ole/variant.c: Stephane Lussier <stephane@macadamian.com>
12359         Set type of destination variant in VariantChangeTypeEx function.
12361         * windows/x11drv/keyboard.c:
12362         Bertho Stultiens <bertho@panter.soci.aau.dk>
12363         Fixed Danish keyboard layout.
12365 Thu Mar 18 17:39:58 1999  Alexandre Julliard  <julliard@winehq.com>
12367         * 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:
12368         Marcus Meissner <marcus@jet.franken.de>
12369         Lots of warning fixed, one missing WINAPI in ddraw.c added.
12371         * dlls/comctl32/treeview.c: Sylvain St.Germain <sylvain@macadamian.com>
12372         Implements +/-, PgUp/PgDown, Home/End, Left/Right, Up/Down.
12374         * relay32/msvfw32.spec: Marcus Meissner <marcus@jet.franken.de>
12375         msvfw32.spec brought up to date (forgot it in last msvfw32 patch).
12377         * relay32/kernel32.spec, misc/toolhelp.c:
12378         Marcus Meissner <marcus@jet.franken.de>
12379         Added Module32* stubs.
12381 Wed Mar 17 15:54:44 1999  Alexandre Julliard  <julliard@winehq.com>
12383         * windows/x11drv/keyboard.c:
12384         Bruno Afonso <bruno.afonso@camoes.rnl.ist.utl.pt>
12385         Added Portuguese keytable.
12387         * windows/x11drv/keyboard.c: Robert Pouliot <krynos@clic.net>
12388         Added Canadian French keyboard layout.
12390         * windows/x11drv/keyboard.c:
12391         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
12392         Added UK keyboard layout.
12394         * msdos/int10.c, msdos/int16.c, msdos/int21.c, msdos/int2f.c:
12395         <paranoid07@hotmail.com>
12396         Fixed/implemented various interrupt functions.
12398         * controls/menu.c, dlls/shell32/dataobject.c, dlls/shell32/shlfolder.c, graphics/metafiledrv/text.c, include/winioctl.h, win32/kernel32.c:
12399         Marcus Meissner <marcus@jet.franken.de>
12400         Fixed some warnings. removed some unneccessary includes, removed one
12401         direct WND* access in controls/menu.c.
12403         * windows/win.c: Francis Beaudet <francis@macadamian.com>
12404         Implemented a more defensive version of WIN_SendDestroyMsg.
12406         * include/Makefile.in: Alexander V. Lukyanov <lav@long.yar.ru>
12407         Install headers from $(SRCDIR).
12409         * include/wine/obj_base.h: Francois Gouget <fgouget@psn.net>
12410         Removed the obsolete ICOM macros.
12412         * include/vfw.h: Francois Gouget <fgouget@psn.net>
12413         Moved the APIs closer to the corresponding COM interface, removed two
12414         duplicates and added 2-3 macros for A/W APIs.
12416         * msdos/int15.c: <paranoid07@hotmail.com>
12417         Added some stubs for int15 functions.
12419         * windows/message.c, windows/queue.c:
12420         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12421         Inter-thread SendMessage() bugfixes:
12422         - Insert new message to be received at the *end* of the SM_PENDING_LIST.
12423         - Do *not* process received messages in ReplyMessage().
12424         - Clear the QS_SMRESULT flag only immediatedly before waiting.
12426         * ole/storage32.c: Thuy Nguyen <thuy@macadamian.com>
12427         Return error if not a valid OLE compound file.
12429         * dlls/version/install.c: Douglas Ridgway <ridgway@winehq.com>
12430         Fix crash if lpuCurDirLen or lpuDestDirLen==0.
12432         * misc/cdrom.c: Marcus Meissner <marcus@jet.franken.de>
12433         Make cdrom.c compile on FreeBSD (FreeBSD does not seem to have *SEEK,
12434         strange).
12436 Tue Mar 16 16:29:26 1999  Alexandre Julliard  <julliard@winehq.com>
12438         * 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:
12439         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12440         Pass CreateProcess() SECURITY_ATTRIBUTES through to PROCESS_Create().
12442         * include/process.h, include/thread.h, scheduler/process.c, scheduler/thread.c:
12443         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12444         Pass new arguments (suspend/inherit) to the server.
12446         * include/server.h, include/server/thread.h, scheduler/client.c, server/request.c, server/thread.c, server/trace.c:
12447         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12448         Handle suspend/resume_thread requests in phase STARTING correctly.
12449         Set initial suspend count for threads created with CREATE_SUSPENDED.
12450         Set 'inheritable' flag for process/thread handles.
12452         * 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:
12453         Marcus Meissner <marcus@jet.franken.de>
12454         Removed no longer necessary win.h include, added now necessary other
12455         includes (win.h used only by UPDOWN now).
12457         * misc/comm.c: Marcus Meissner <marcus@jet.franken.de>
12458         debug.h must be last, or we get ERR() macro problems again.
12460         * dlls/comctl32/tooltips.c: Francis Beaudet <francis@macadamian.com>
12461         Fixed a slight bug that was included in the change from WND ptr to
12462         hwnd last week.
12464         * loader/main.c, misc/callback.c:
12465         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12466         Fix compiler warnings.
12468         * dlls/comctl32/imagelist.c, dlls/comctl32/treeview.c, include/treeview.h:
12469         Sylvain St.Germain <sylvain@macadamian.com>
12470         Fixed some graphical problems of the treeview and added support LMB
12471         click on +/- sign to open and close.
12472         Fixed a bug in imagelist where the last image could not be displayed.
12474         * windows/x11drv/event.c:
12475         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12476         Avoid unnecessary error messages.
12478         * windows/hook.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12479         Ignore HIWORD of boolean return values of 16-bit hook procedures, to
12480         match buggy Windows behaviour.
12482         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
12483         Corrected bug in enumeration function.
12485         * windows/win.c: Pavel Roskin <pavel_roskin@geocities.com>
12486         Fixed bug introduced in WIN_FindWindow.
12488         * dlls/comctl32/tab.c: Thuy Nguyen <thuy@macadamian.com>
12489         0 is a valid index for a tab item.
12490         CreateSolidBrush takes a COLORREF as a parameter.
12491         Tab controls were always displayed in the top left corner.
12493 Mon Mar 15 16:15:17 1999  Alexandre Julliard  <julliard@winehq.com>
12495         * include/wine/obj_dragdrop.h, include/wine/obj_inplace.h:
12496         Francois Gouget <fgouget@psn.net>
12497         Updated the interfaces to use the latest ICOM macros.
12499         * documentation/status/multimedia: Eric Pouech <Eric.Pouech@wanadoo.fr>
12500         Updated.
12502         * if1632/mmsystem.spec, include/mmsystem.h, include/multimedia.h, multimedia/Makefile.in, multimedia/mci.c, multimedia/mcistring.c, multimedia/mmsystem.c, relay32/winmm.spec:
12503         Eric Pouech <Eric.Pouech@wanadoo.fr>
12504         Moved all MCI internal functions/variables/macros to mci.c.
12505         Changed some interface names.
12507         * include/digitalv.h, multimedia/mciavi.c:
12508         Eric Pouech <Eric.Pouech@wanadoo.fr>
12509         Make use of digitalv.h file.
12511         * multimedia/init.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12512         Changed how list of loadable MCI drivers is obtained.
12514         * documentation/keyboard: Ove Kaaven <ovek@arcticnet.no>
12515         Describes in newbie terms how to add new keyboard layouts.
12517         * windows/x11drv/keyboard.c: Ove Kaaven <ovek@arcticnet.no>
12518         Better comments, and added ANSI codepages in table.
12519         US keyboard contributed by Uwe Bonnes.
12520         French keyboard contributed by Eric Pouech.
12521         German keyboard contributed by Ulrich Weigand.
12522         Danish keyboard contributed by Bertho Stultiens.
12524         * 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:
12525         Klaas van Gend <klaas@vangend.demon.nl>
12526         - Reimplementation of the CommDlg ExtendedError mechanism using TLS.
12527         - Some header inclusion cleanup.
12529         * multimedia/mcimidi.c, multimedia/mciwave.c, multimedia/mmio.c:
12530         Eric Pouech <Eric.Pouech@wanadoo.fr>
12531         Cosmetic fixes.
12533         * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12534         Makes use of new CDAUDIO_Seek() function.
12536         * msdos/int2f.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
12537         Various fixes for MSCDEX traps.
12539         * misc/cdrom.c, include/cdrom.h: Eric Pouech <Eric.Pouech@wanadoo.fr>
12540         Added new function CDAUDIO_Seek().
12542         * include/driver.h, windows/driver.c:
12543         Eric Pouech <Eric.Pouech@wanadoo.fr>
12544         Better 16/32 bit driver messages mapping and handling.
12545         Better protection against bad handles.
12547         * include/peexe.h, loader/resource.c:
12548         Marcus Meissner <marcus@jet.franken.de>
12549         Use MESSAGE_RESOURCE_* defines from SDK headers, updated LoadMessage*
12550         code.
12552         * include/Makefile.in: Niels Kristian Bech Jensen <nkbj@image.dk>
12553         Fixed make install.
12555 ----------------------------------------------------------------
12556 Sun Mar 14 17:25:33 1999  Alexandre Julliard  <julliard@winehq.com>
12558         * include/win.h, ipc/dde_proc.c, misc/spy.c, windows/class.c, windows/dce.c, windows/defdlg.c, windows/defwnd.c, windows/dialog.c, windows/dinput.c, windows/focus.c, windows/input.c, windows/mdi.c, windows/nonclient.c, windows/painting.c, windows/property.c, windows/queue.c, windows/scroll.c, windows/win.c, windows/winpos.c, windows/winproc.c, windows/x11drv/clipboard.c, windows/x11drv/event.c, windows/x11drv/mouse.c, windows/x11drv/wnd.c, controls/button.c, controls/combo.c, controls/desktop.c, controls/edit.c, controls/icontitle.c, controls/listbox.c, controls/menu.c, controls/scroll.c, controls/static.c, dlls/comctl32/updown.c, graphics/ddraw.c, if1632/thunk.c:
12559         Francois Boisvert <francois@macadamian.com>
12560         Made access to the wnd struct thread-safe.
12562         * */*: Jim Aston <asto0001@algonquinc.on.ca>
12563         Renamed wintypes.h to windef.h.
12565         * memory/heap.c: Make the system heap critical section global.
12567         * Make.rules.in:
12568         Fixed Makefile up-to-date check to avoid relinking all the object
12569         files.
12571         * windows/dinput.c: Patrik Stridvall <ps@leissner.se>
12572         Reimplemented some code without using X11.
12574         * graphics/ddraw.c, relay32/ddraw.spec:
12575         Patrik Stridvall <ps@leissner.se>
12576         Added functions DirectDrawEnumerateW and DirectDrawEnumerateExW.
12578         * include/peexe.h, loader/pe_image.c: Theodore S. Hetke <tsh@gte.net>
12579         Added tracing for delayed imports and removed the fixme.
12581         * files/dos_fs.c: Peter Ganten <ganten@uni-bremen.de>
12582         Better implementation of GetShortPathNameA/W.
12584         * misc/registry.c, wine.ini: Nathan Zorich <wfilardo@fuse.net>
12585         Allow the file names and paths for the registry files (user.reg and
12586         system.reg) to be specified in a [Registry] section of wine.ini or
12587         other config file.
12589         * memory/string.c: Gerard Patel <g.patel@wanadoo.fr>
12590         Fix OemToAnsiBuff for real Win31 behavior.
12592         * windows/x11drv/keyboard.c: Ove Kaaven <ovek@arcticnet.no>
12593         First attempt at supporting different keyboard layouts with their
12594         correct scancode mapping.
12596         * configure, configure.in, programs/Makefile.in, programs/regapi/.cvsignore, programs/regapi/Makefile.in, programs/regapi/README, programs/regapi/regFixer.pl, programs/regapi/regRestorer.pl, programs/regapi/regSet.sh, programs/regapi/regapi.c:
12597         Sylvain St.Germain <sylvain@macadamian.com>
12598         Added command line tool to access the registry.
12600         * rc/winerc.c: Fixed compilation.
12602         * rc/.cvsignore: Patrik Stridvall <ps@leissner.se>
12603         Ignore generated files.
12605         * programs/notepad/lcc.h: Fixed make depend.
12607         * ole/ole2.c, ole/olefont.c, include/ole.h, include/ole2.h, include/oleauto.h, include/olectl.h, include/wine/obj_control.h, include/wine/obj_dataobject.h, include/wine/obj_dragdrop.h, include/wine/obj_inplace.h, include/wine/obj_moniker.h, include/wine/obj_oleaut.h, include/wine/obj_olefont.h, include/wine/obj_oleobj.h, include/wine/obj_oleundo.h, include/wine/obj_oleview.h, include/wine/obj_picture.h, include/wine/obj_shelllink.h, include/wine/obj_storage.h, include/winerror.h, include/wingdi.h, include/winsock.h, include/winuser.h, include/wtypes.h:
12608         Paul Quinn <paulq@linuxmaster.hungrycats.org>
12609         Many new defines, and structs to help compile MFC. As well as a few
12610         OLE corrections from earlier.
12612         * loader/ne/module.c:
12613         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
12614         Make GetModuleHandle16 only look for module names, not path names.
12616         * msdos/int10.c: Jess Haas <desmoke@hotmail.com>
12617         Added some more vga video modes.
12619         * windows/x11drv/wnd.c: Pavel Roskin <pavel_roskin@geocities.com>
12620         Prevent X11 errors when XCreateWindow is called with zero width or
12621         height.
12623         * objects/metafile.c: Caolan McNamara <Caolan.McNamara@ul.ie>
12624         Added metafile support for ExtFloodFill.
12626         * controls/button.c:
12627         Dirk Thierbach <thierbach@mathematik.tu-darmstadt.de>
12628         Paint gray text on gray background in checkboxes/radiobuttons by
12629         stippling. Also changed the brush used in this case to give better
12630         readability with X fonts.
12632         * include/debugdefs.h, include/tapi.h, misc/Attic/tapi32.c, misc/Makefile.in, relay32/tapi32.spec, Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/tapi32/.cvsignore, dlls/tapi32/Makefile.in, dlls/tapi32/assisted.c, dlls/tapi32/line.c, dlls/tapi32/phone.c, include/debug.h:
12633         Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12634         Implemented (nearly) all TAPI functions as stubs.
12636         * include/wine/winuser16.h, misc/comm.c, files/dos_fs.c, include/winbase.h:
12637         Michael McCormack <Michael.McCormack@alcatel.com.au>
12638         Basic support for WIN32 serial communications API.
12639         Modify DOSFS_OpenDevice to allow opening of COM ports.
12640         Change Win32 comm functions to accept file handle.
12641         Add declaration of COMSTAT32 structure.
12643         * graphics/vga.c: Ove Kaaven <ovek@arcticnet.no>
12644         Fixed a silly VGA-emulation palette bug.
12646         * msdos/int10.c: Ove Kaaven <ovek@arcticnet.no>
12647         Fixed a couple of ugly warnings (caused by ugly errors).
12649         * msdos/dosmem.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12650         Bug fix.
12652         * dlls/shell32/brsfolder.c, dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, dlls/shell32/enumidlist.c, dlls/shell32/shell32_main.h, dlls/shell32/shellguid.c, dlls/shell32/shlfolder.c, include/shlguid.h, include/shlobj.h, include/wine/obj_enumidlist.h, include/wine/obj_shellfolder.h, ole/guid.c:
12653         Juergen Schmied <juergen.schmied@metronet.de>
12654         - IShellFolder and IEnumIDList are using the new COM headers
12655         - fixed sort order for folders and drives
12657         * README: Ove Kaaven <ovek@arcticnet.no>
12658         Corrected location of FAQ.
12660         * msdos/int21.c: Ove Kaaven <ovek@arcticnet.no>
12661         Fully implemented Direct Console Input.
12663 Sat Mar 13 18:20:27 1999  Alexandre Julliard  <julliard@winehq.com>
12665         * windows/queue.c, dlls/shell32/shlfolder.c, if1632/thunk.c, scheduler/sysdeps.c:
12666         Marcus Meissner <marcus@jet.franken.de>
12667         Fixed newly introduced and some leftover warnings.
12669         * include/wingdi.h: Francois Gouget <fgouget@psn.net>
12670         It is now possible to use the standard macros for GetTextExtentPoint
12671         and GetTextExtentPoint32.
12673         * include/prsht.h: Francois Gouget <fgouget@psn.net>
12674         Fixed some SendMessage32A that escaped the renaming.
12676         * include/ole2.h: Francois Gouget <fgouget@psn.net>
12677         On windows ole2.h includes oleauto.h and some programs depend on this.
12679         * include/oleauto.h, ole/ole2disp.c: Francois Gouget <fgouget@psn.net>
12680         Fixes in the SysAllocString functions prototypes. It's mostly 'const'
12681         problems that prevent regular code from compiling.
12683         * dlls/commdlg/filedlg.c, graphics/x11drv/oembitmap.c, include/bitmaps/Attic/obm_cdrom, include/bitmaps/Attic/obm_drive, include/bitmaps/Attic/obm_folder, include/bitmaps/Attic/obm_folder2, include/bitmaps/Attic/obm_harddisk, include/bitmaps/oic_cdrom, include/bitmaps/oic_floppy, include/bitmaps/oic_folder, include/bitmaps/oic_folder2, include/bitmaps/oic_hdisk, include/bitmaps/oic_network, include/winuser.h:
12684         Pavel Roskin <pavel_roskin@geocities.com>
12685         File open dialog now uses icons instead of bitmaps.
12687         * include/vfw.h: Marcus Meissner <marcus@jet.franken.de>
12688         Updated AVI* class interface to new ICOM_ methods.
12690         * multimedia/msvideo.c: Marcus Meissner <marcus@jet.franken.de>
12691         Some fixes and additions.
12693         * dlls/avifil32/.cvsignore, dlls/avifil32/Makefile.in, dlls/avifil32/avifile.c, include/debug.h, include/debugdefs.h, relay32/avifil32.spec, Makefile.in, configure, configure.in, dlls/Makefile.in:
12694         Marcus Meissner <marcus@jet.franken.de>
12695         Started on avifil32 implementation (only stubs currently).
12697         * graphics/painting.c: Patrik Stridvall <ps@leissner.se>
12698         Reimplemented DrawFocusRect without using X11.
12700         * include/miscemu.h, msdos/dosmem.c, msdos/int10.c:
12701         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
12702         Implemented mode setting things as well as VESA additions and other
12703         things. Cleaned up DOSMEM_BiosData handling.
12705         * include/wine/obj_olefont.h, ole/olefont.c:
12706         Francis Beaudet <francis@macadamian.com>
12707         Implemented the IPersistStream interface on the OLE font object.
12709         * miscemu/emulate.c:
12710         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
12711         Make function BX=6 round ST0 to integer.
12713         * include/commctrl.h, include/wingdi.h: Paul Quinn <paulq@corel.ca>
12714         Adrian Thurston <adriant@corel.ca>
12715         - Changed LVM_SETITEMPOSITION -> LVM_SETITEMPOSITION32
12716                   LVM_SETITEMPOSITION16 -> LVM_SETITEMPOSITION
12717         - Added some missing structures and definitions to wingdi.h
12718         - Added proper defines for GetCharWidthsXXX
12719         - Added c++ protection to wingdi.h
12721         * dlls/shell32/iconcache.c, dlls/shell32/pidl.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlview.c, include/shell.h, relay32/shell32.spec:
12722         Juergen Schmied <juergen.schmied@metronet.de>
12723         - mostly cleanup after the renaming
12724         - implemented SHILCreateFromPath
12725         - small changed to SHGetFileInfo
12727         * include/prsht.h, include/winuser.h:
12728         Bertho Stultiens <bertho@panter.soci.aau.dk>
12729         Changed the DLGTEMPLATE and DLGITEMTEMPLATE types to adhere to the AW
12730         structure for compatibility.
12732         * dlls/commdlg/printdlg.c, include/cderr.h, include/commdlg.h, dlls/commdlg/colordlg.c, dlls/commdlg/filedlg.c, dlls/commdlg/fontdlg.c:
12733         Bertho Stultiens <bertho@panter.soci.aau.dk>
12734         Moved error codes to cderr.h.
12736         * loader/module.c: Peter Ganten <ganten@uni-bremen.de>
12737         Fix CreateProcess to handle lpCommandline better.
12739         * win32/init.c: Peter Ganten <ganten@uni-bremen.de>
12740         Change GetStartupInfoA/W to return the real StartupInfo.
12742         * windows/mdi.c: Guy Albertelli  <<galberte@neo.lrun.com>>
12743         Handle null wndPtr for mdi window.
12745         * include/winbase.h: Dave Pickles <davep@nugate.demon.co.uk>
12746         Fixed a couple of missing #defines for Win32 API functions with
12747         ASCII/Unicode versions.
12749         * win32/newfns.c, if1632/kernel.spec, if1632/thunk.c, if1632/wprocs.spec, include/callback.h, misc/callback.c, relay32/Makefile.in, relay32/utthunk.c:
12750         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12751         Implemented UTRegister and UTUnRegister.
12753         * if1632/ddeml.spec, include/ddeml.h, include/winnt.h, misc/ddeml.c, relay32/user32.spec:
12754         <keith_m@sweeney.demon.co.uk>
12755         Added coded stubs for DdeQueryConvInfo (16 & 32 bit), DdeAddData (32
12756         bit), DdeAbandonTransaction (32 bit), DdeImpersonateClient (32)
12757         DdeSetQualityOfService, DdeSetUserHandle.
12758         Corrected heap handling in DdeInitializeW, refined CreateMutex error
12759         handling.
12760         General tidying.
12762         * if1632/olecli.spec, include/ole.h, ole/olecli.c:
12763         Pavel Roskin <pavel_roskin@geocities.com>
12764         Added prototypes for OleQueryLinkFromClip, OleQueryCreateFromClip,
12765         OleCreateLinkFromClip, OleCreateFromClip, OleQueryType,
12766         OleRevertClientDoc, OleEnumObjects.
12768         * relay32/olecli32.spec: Pavel Roskin <pavel_roskin@geocities.com>
12769         Definition for OleCreateLinkFromClip was incorrect.
12771         * loader/resource.c: Marcus Meissner <marcus@jet.franken.de>
12772         Mask out the upper 12 bits from the resourceid, just like win95 does.
12774         * BUGS: Ove Kaaven <ovek@arcticnet.no>
12775         Updated bug list by my knowledge of them.
12777         * ole/storage32.c: Thuy Nguyen <thuy@macadamian.com>
12778         StgCreateDocfile accepts NULL as a file name.
12780         * objects/metafile.c: Caolan McNamara <Caolan.McNamara@ul.ie>
12781         Added support for alternate DIBBITBLT layout.
12783         * debugger/msc.c: Sergey Turchanov <turchanov@usa.net>
12784         Buffer size bug in LocateDebugInfoFile.
12786         * graphics/ddraw.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
12787         Improved "error" message readability.
12789         * server/process.c: Fixed process_signaled (thanks to Uwe Bonnes).
12791         * dlls/comctl32/listview.c: Fixed make depend
12793 Fri Mar 12 17:42:50 1999  Alexandre Julliard  <julliard@winehq.com>
12795         * 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/monthcal.c, dlls/comctl32/nativefont.c, dlls/comctl32/pager.c, dlls/comctl32/rebar.c, dlls/comctl32/status.c, dlls/comctl32/toolbar.c, dlls/comctl32/tooltips.c, dlls/comctl32/trackbar.c, include/ipaddress.h, include/updown.h:
12796         Eric Kohl <ekohl@abo.rhein-zeitung.de>
12797         Replaced direct access to the WND structure by corresponding calls to
12798         Win32 functions.
12800         * dlls/comctl32/commctrl.c, dlls/comctl32/progress.c, dlls/comctl32/updown.c, include/commctrl.h:
12801         Eric Kohl <ekohl@abo.rhein-zeitung.de>
12802         Fixed some bugs introduced by the automated renaming.
12804         * resources/.cvsignore: Added sysres_Ru.s
12806         * dlls/comctl32/header.c, dlls/comctl32/listview.c, include/commctrl.h, include/listview.h:
12807         Luc Tourangeau <luc@macadamian.com>
12808         Changed the listview control to add the report view and fix some bugs
12809         for the list view.
12811         * misc/shell.c: Marcus Meissner <marcus@jet.franken.de>
12812         Removed use of WND struct.
12814         * dlls/ntdll/rtlstr.c: Marcus Meissner <marcus@jet.franken.de>
12815         Added #ifdef HAVE_WCTYPE_H.
12817         * dlls/comctl32/tab.c: Thuy Nguyen <thuy@macadamian.com>
12818         Removed direct access to the WND struct.
12820         * windows/winproc.c: Juergen Schmied <juergen.schmied@metronet.de>
12821         Message translation for WM_WININICHANGE.
12823         * windows/nonclient.c: Pavel Roskin <pavel_roskin@geocities.com>
12824         obm_closed_95 should not be drawn inverted.
12826         * dlls/comctl32/treeview.c: Sylvain St.Germain <sylvain@macadamian.com>
12827         Removed direct access to the WND struct.
12829         * ole/stg_bigblockfile.c, ole/storage32.c, ole/storage32.h:
12830         Thuy Nguyen <thuy@macadamian.com>
12831         Improved performance.
12833         * windows/dce.c: Stephane Lussier <Stephane@macadamian.com>
12834         Create a new DC in GetDCEx when none are available.
12836         * ole/ole2disp.c, ole/variant.c, relay32/oleaut32.spec:
12837         Stephane Lussier <stephane@macadamian.com>
12838         Implemented DosDateTimeToVariant() and SysAllocStringByteLen() functions.
12840         * controls/combo.c: Pavel Roskin <pavel_roskin@geocities.com>
12841         Changed the button state to "up" as soon as it is known that the
12842         selection has been cancelled, so the button is redrawn in the "up"
12843         state.
12845         * miscemu/instr.c: Marcus Meissner <marcus@jet.franken.de>
12846         Emulate (well, ignore) mov cr0,eax and mov eax,cr0.
12848 Wed Mar 10 18:03:54 1999  Alexandre Julliard  <julliard@winehq.com>
12850         * include/wine/obj_inplace.h, include/wine/obj_oleaut.h, include/wine/obj_oleobj.h, include/wine/obj_oleundo.h, include/wine/obj_oleview.h, include/wine/obj_picture.h, include/wine/obj_property.h, ole/compobj.c, ole/guid.c, ole/ole2disp.c, ole/olecli.c, ole/oledlg.c, ole/oleobj.c, dlls/shell32/dataobject.c, dlls/shell32/pidl.c, dlls/shell32/shlfolder.c, include/Attic/wintypes.h, include/commdlg.h, include/imm.h, include/oaidl.h, include/objbase.h, include/ocidl.h, include/ole.h, include/ole2ver.h, include/oleauto.h, include/olectl.h, include/oleidl.h, include/shlguid.h, include/shlobj.h, include/winbase.h, include/wine/obj_base.h, include/wine/obj_control.h, include/wine/obj_dataobject.h, include/wine/obj_dragdrop.h, include/winnt.h, include/wtypes.h:
12851         Paul Quinn <paulq@corel.ca>
12852         Added a lot of new OLE interfaces.
12854         * documentation/languages, documentation/wine.man, include/options.h, misc/main.c, ole/ole2nls.c, resources/Makefile.in, resources/sysres.c, resources/sysres_Ru.rc:
12855         Alexander Kanavin <ak@cave.hop.stu.neva.ru>
12856         Added support for Russian language.
12858         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12859         Temporary fix: Activate 16-bit system timer callback routines, but
12860         skip calling them if timer signal occured while current thread was
12861         holding the Win16Lock (to prevent 16-bit stack corruption).
12863         * include/syslevel.h, scheduler/syslevel.c:
12864         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12865         Implemented _ConfirmWin16Lock (KERNEL32.96).
12867         * graphics/ddraw.c, include/ddraw.h:
12868         Lionel Ulmer <ulmer@directprovider.net>
12869         - some clean up in handling of depth
12870         - more depth conversion routines for X11 (15, 16 and 32 -> 8)
12872         * include/queue.h, windows/message.c, windows/queue.c:
12873         Stephane Lussier <stephane@macadamian.com>
12874         Implemented SendMessageTimeout() functions.
12876         * programs/notepad/ChangeLog, programs/notepad/Makefile.in, programs/notepad/search.c:
12877         Marcel Baur <mbaur@g26.ethz.ch>
12878         Added Boyer-Moore text search.
12880         * if1632/thunk.c, if1632/user.spec, include/callback.h, misc/callback.c:
12881         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12882         Added USER.DestroyIcon32 to Callout struct.
12884         * include/module.h, loader/ne/convert.c:
12885         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12886         Deleted NE_FreePEResource().
12888         * include/user.h, loader/main.c, loader/module.c, windows/user.c:
12889         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12890         Adapted to cursor/icon handling changes.
12892         * loader/ne/resource.c, loader/resource.c:
12893         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12894         Allow accessing both NE and PE resources with both 16- and 32-bit API.
12895         Hook cursor/icon destruction into FreeResource (like Win95).
12897         * include/cursoricon.h, objects/cursoricon.c:
12898         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12899         Implemented Win95-style shared cursor/icon cache.
12900         Merged NE and PE resource handling.
12902         * graphics/x11drv/oembitmap.c, include/bitmaps/Attic/obm_folder, include/bitmaps/Attic/obm_folder2:
12903         Pavel Roskin <pavel_roskin@geocities.com>
12904         Fixed folder bitmap colors for 8bpp.
12906         * graphics/x11drv/graphics.c: Caolan McNamara <Caolan.McNamara@ul.ie>
12907         Windows doesnt allow dashed and dotted lines > 1.
12909         * ole/compobj.c: Francis Beaudet <francis@macadamian.com>
12910         Fixed a reference-counting problem in the external lock mechanism.
12912         * dlls/shell32/dataobject.c: Francis Beaudet <francis@macadamian.com>
12913         Fixed a simple bug in the implementation of the ShellView objects.
12915         * dlls/shell32/shell32_main.c, include/shell.h:
12916         Sergey Turchanov <turchanov@usa.net>
12917         Added some extra CSIDLs.
12919         * loader/module.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12920         Bugfix: Allow lpCommandLine == NULL in CreateProcess().
12922         * windows/x11drv/keyboard.c:
12923         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12924         Bugfix: ToAscii should not generate ASCII code when key-up flag is set.
12926         * graphics/x11drv/bitblt.c, graphics/x11drv/bitmap.c, windows/x11drv/event.c:
12927         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12928         Avoid unnecessary GraphicsExpose events.
12930         * ole/safearray.c: Francis Beaudet <francis@macadamian.com>
12931         Fixed index calculations of the upper and lower bounds of a safearray.
12932         Fixed a wrong initialization of the VT sizes array.
12934         * ole/ole2.c, relay32/ole32.spec:
12935         Francis Beaudet <francis@macadamian.com>
12936         Implementation of the ReleaseStgMedium method.
12938 Tue Mar  9 17:47:51 1999  Alexandre Julliard  <julliard@winehq.com>
12940         * dlls/ntdll/Makefile.in, 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, relay32/advapi32.spec, relay32/ntdll.spec:
12941         Juergen Schmied <juergen.schmied@metronet.de>
12942         - sorted API by groups
12943         - new stubs:  NtQueryDirectoryFile,  ZwQueryDirectoryFile
12944         - impl.: RtlAllocateHeap, RtlCreateHeap, RtlDestroyHeap, RtlFreeHeap,
12945           RtlGetDaclSecurityDescriptor, RtlGetSaclSecurityDescriptor
12946         - impl. by Rex Jolliff (rex@lvcablemodem.com): RtlTimeToTimeFields,
12947           RtlTimeFieldsToTime
12949         * include/ntddk.h, include/ntdef.h, include/winnt.h:
12950         Juergen Schmied <juergen.schmied@metronet.de>
12951         Many new prototypes.
12953         * loader/resource.c, include/module.h:
12954         Juergen Schmied <juergen.schmied@metronet.de>
12955         Fix use of wrong prototype from ntdll.h.
12957         * dlls/advapi32/security.c:
12958         Juergen Schmied <juergen.schmied@metronet.de>
12959         Make more functions just calling down to ntdll.
12960         New: GetSecurityDescriptorSacl.
12962         * graphics/psdrv/afm.c:
12963         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
12964         Accept "Normal" as a valid AFM weight.
12966         * ole/storage32.c, ole/storage32.h: Thuy Nguyen <thuy@macadamian.com>
12967         Smarter way of searching for a free block.
12969         * windows/message.c:
12970         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
12971         Bugfix: DirectedYield() only to 16-bit tasks in ReplyMessage().
12973         * libtest/hello5.c: Marcus Meissner <marcus@jet.franken.de>
12974         Corrected cast so hello5 compiles again.
12976         * dlls/commdlg/filedlg.c: Norman Stevens <norman@arcady.u-net.com>
12977         Don't copy lpstrFileTitle if given NULL pointer for this.
12978         Delphi 2.0 passes NULL for lpstrFileTitle to GetOpen/SaveFileName.
12980         * misc/winsock.c, include/winsock.h:
12981         Marcus Meissner <marcus@jet.franken.de>
12982         Fix broken _convert_sockopt for IPPROTO_TCP cases, added TCP_NODELAY.
12984         * msdos/dpmi.c: Marcus Meissner <marcus@jet.franken.de>
12985         __asm__ fix as suggested by <daniel@mat.utfsm.cl> Daniel Serpell,
12986         removed additional "eax" from clobber list, so egcs-current likes it.
12988         * memory/virtual.c: Marcus Meissner <marcus@jet.franken.de>
12989         CreateFileMapping SetLastError(0)s on newly created mappings.
12991 Sun Feb 28 20:05:12 1999  Alexandre Julliard  <julliard@winehq.com>
12993         * dlls/commdlg/.cvsignore, dlls/commdlg/Makefile.in, dlls/commdlg/colordlg.c, dlls/commdlg/filedlg.c, dlls/commdlg/finddlg.c, dlls/commdlg/fontdlg.c, dlls/commdlg/generic.c, dlls/commdlg/printdlg.c, misc/Attic/commdlg.c, misc/Makefile.in, Makefile.in, configure, configure.in, dlls/Makefile.in:
12994         Klaas van Gend <Klaas@vangend.demon.nl>
12995         Create a new subdirectory for the common dialog box DLL and move all
12996         code from /misc/commdlg.c to this directory.  Also made a start in
12997         documenting the API calls.
12999         * misc/winsock.c, debugger/break.c, debugger/dbg.y, debugger/dbgmain.c, debugger/editline.c, debugger/expr.c, debugger/hash.c, debugger/info.c, debugger/memory.c, debugger/msc.c, debugger/registers.c, debugger/source.c, debugger/stack.c, debugger/types.c, include/Attic/wintypes.h:
13000         Marcus Meissner <marcus@jet.franken.de>
13001         More include optimizations.
13003         * windows/driver.c, windows/winproc.c, dlls/comctl32/toolbar.c, dlls/comctl32/treeview.c, loader/pe_image.c, msdos/dpmi.c, multimedia/audio.c, multimedia/mmsystem.c, objects/dc.c, ole/storage32.c, controls/menu.c, dlls/comctl32/hotkey.c:
13004         Marcus Meissner <marcus@jet.franken.de>
13005         Fixed a lot of warnings using WINE_UNUSED, casts, commenting out and
13006         additional {}. Rewrote GetCreationModeFromSTGM so we don't get
13007         "possible use of uninitialized variable".
13009         * include/mmsystem.h, include/multimedia.h:
13010         Marcus Meissner <marcus@jet.franken.de>
13011         MCI_OPEN_DRIVER_PARMS - Add win32 version of structure.
13013         * files/directory.c, msdos/int21.c:
13014         Marcus Meissner <marcus@jet.franken.de>
13015         Changed CreateDirectory LastError returns to match Win32 (found out by
13016         experiment). Adapted int21 CreateDirectory call to still return the
13017         correct DOS error codes according to Ralph Brown.
13019         * graphics/ddraw.c, relay32/ddraw.spec:
13020         Lionel Ulmer <ulmer@directprovider.net>
13021         - added function DirectDrawEnumerateEx
13022         - added (or corrected) check for the return value of the enumeration functions
13024         * configure, configure.in: Lionel Ulmer <ulmer@directprovider.net>
13025         Better detection of old (i.e. non OpenGL 1.2 compliant) version of Mesa.
13027         * multimedia/mcicda.c:
13028         Marcus Meissner <msmeissn@stud.informatik.uni-erlangen.de>
13029         Added missing <sys/types.h>.
13031         * include/winuser.h: Klaas van Gend <klaas@vangend.demon.nl>
13032         Added the button states as returned by IsDlgButtonChecked().
13034         * loader/module.c:
13035         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
13036         Added support for quoted file names in CreateProcess().
13038         * files/file.c, scheduler/client.c, scheduler/event.c, scheduler/mutex.c, scheduler/semaphore.c, server/file.c, win32/console.c:
13039         CLIENT_WaitReply: don't clear last error on success; fixed callers
13040         accordingly (based on a patch by Juergen Schmied).
13042         * msdos/int10.c: Jess Haas <desmoke@hotmail.com>
13043         Added some support and stubs for VESA to msdos/int10.c.
13045         * ole/bindctx.c, ole/filemoniker.c, ole/ifs.c, ole/itemmoniker.c, ole/moniker.c, ole/ole2.c, ole/ole2disp.c, ole/ole2nls.c, ole/olecli.c, ole/oledlg.c, ole/olefont.c, ole/oleobj.c, ole/olesvr.c, ole/safearray.c, ole/stg_bigblockfile.c, ole/stg_stream.c, ole/storage.c, ole/storage32.c, ole/typelib.c, ole/variant.c, tools/fnt2bdf.c, windows/display.c, dlls/shell32/dataobject.c, dlls/shell32/shlfolder.c, include/oleobj.h, include/shlobj.h, include/wine/obj_channel.h, include/wine/obj_clientserver.h, include/wine/obj_control.h, include/wine/obj_dataobject.h, include/wine/obj_dragdrop.h, include/wine/obj_inplace.h, include/wine/obj_marshal.h, include/wine/obj_misc.h, include/wine/obj_moniker.h, include/wine/obj_oleaut.h, include/wine/obj_olefont.h, include/wine/obj_propertystorage.h, include/wine/obj_storage.h, include/wine/winuser16.h, library/winestub.c, memory/string.c, misc/sound.c, multimedia/mmsystem.c, controls/menu.c:
13046         Marcus Meissner <marcus@jet.franken.de>
13047         More include optimisations and fixes.
13049         * server/process.c: Juergen Schmied <juergen.schmied@metronet.de>
13050         open_object should return ERROR_FILE_NOT_FOUND when the named object
13051         is not found.
13053         * files/directory.c: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
13054         Better error message.
13056         * scheduler/Attic/k32obj.c, scheduler/Makefile.in, scheduler/client.c, scheduler/critsection.c, scheduler/event.c, scheduler/handle.c, scheduler/mutex.c, scheduler/pipe.c, scheduler/process.c, scheduler/semaphore.c, scheduler/synchro.c, scheduler/sysdeps.c, scheduler/thread.c, win32/console.c, win32/device.c, files/change.c, files/dos_fs.c, files/file.c, include/Attic/k32obj.h, include/file.h, include/process.h, include/thread.h, loader/task.c, memory/virtual.c, misc/toolhelp.c:
13057         Use server handles directly for Win32 handles. Removed use of K32OBJ.
13059         * windows/defwnd.c, windows/msgbox.c, windows/x11drv/monitor.c, objects/brush.c, objects/clipping.c, objects/pen.c, objects/region.c, objects/text.c, ole/olefont.c, ole/oleobj.c, scheduler/Attic/k32obj.c, scheduler/event.c, scheduler/mutex.c, scheduler/semaphore.c, server/file.c, server/request.c, debugger/dbg.y, debugger/registers.c, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dtexture.c, graphics/escape.c, graphics/win16drv/font.c, loader/ne/convert.c, misc/network.c, misc/port.c, miscemu/main.c, multimedia/audio.c, multimedia/dplay.c, multimedia/init.c, multimedia/mciwave.c, multimedia/mixer.c, multimedia/mmaux.c, console/xterm.c, controls/listbox.c:
13060         David Luyer <luyer@ucs.uwa.edu.au>
13061         - fixed missing stdlib.h and string.h includes everywhere
13062         - removed a couple of unneeded stdlib.h and stdio.h includes
13064         * include/process.h, include/thread.h, loader/task.c, scheduler/process.c, scheduler/sysdeps.c, scheduler/thread.c, windows/queue.c, windows/win.c, windows/winproc.c:
13065         Process and thread id now use the server-side id instead of an
13066         obfuscated pointer.
13068         * libtest/guitest.c, libtest/guitest.rc, libtest/guitest.rh:
13069         Ove Kaaven <ovek@arcticnet.no>
13070         The Windows GUI behaviour tester used on the Windows computer.  It was
13071         used with Borland C++ 4.52, but should be easy to adapt to Winelib by
13072         whoever feels like it; I haven't, I just released this useful test app
13073         in case it would benefit other developers.
13075         * documentation/gui: Ove Kaaven <ovek@arcticnet.no>
13076         This file details the results (message traces) the GUI behaviour
13077         tester app gave under real Windows for various events. It was useful
13078         for some of my debugging at least, perhaps it could be of some use to
13079         other Wine GUI debuggers as well.
13081         * configure, configure.in, include/config.h.in, include/sig_context.h, include/winnls.h, misc/winsock.c, misc/winsock_dns.c, multimedia/dsound.c:
13082         Marcus Meissner <msmeissn@stud.informatik.uni-erlangen.de>
13083         Some Solaris fixes. <resolv.h> needs <arpa/nameser.h>, sig_context.h
13084         needs to define HANDLER_CONTEXT, wctype.h does not like 'wsprintf'
13085         defined, msdos/dpmi.c needs "stackframe.h" too, and multimedia/dsound.c
13086         needs "winuser.h".
13088         * win32/kernel32.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
13089         GetBinaryType[AW] moved to loader/module.c, modified to recognize .COM
13090         and .PIF files.
13092         * loader/dos/module.c, miscemu/main.c, msdos/dpmi.c, include/dosexe.h, include/pe_image.h, loader/main.c, loader/pe_image.c:
13093         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
13094         Adapted to CreateProcess changes.
13096         * loader/ne/module.c:
13097         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
13098         NE modules adapted to CreateProcess changes.
13099         LoadModule16/LoadLibrary16 reorganization.
13101         * include/module.h, include/task.h, loader/module.c, loader/task.c, scheduler/process.c, scheduler/thread.c:
13102         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
13103         Process creation sequence reorganized:
13104         - Removed instance data segment for all but NE modules.
13105         - Check binary type in CreateProcess before loading module.
13106         - Unix process creation moved from WinExec to CreateProcess.
13107         - Bugfix: fill in thdb->teb.htask16 member correctly.
13109         * windows/input.c: Guy Albertelli <galberte@neo.lrun.com>
13110         - Code to return default language code as keyboard layout.
13111         - Implemented other stubs associated with keyboard layout:
13112           GetKeyboardLayoutNameA, ActivateKeyboardLayout,
13113           LoadKeyboardLayout[AW], GetKeyboardLayoutList.
13115         * include/commdlg.h, include/resource.h, misc/Attic/commdlg.c, resources/sysres_En.rc:
13116         Klaas van Gend <klaas@vangend.demon.nl>
13117         Preliminary implementation of the PrintDlgA stub.
13119         * ole/nls/nld.nls: Klaas van Gend <klaas@vangend.demon.nl>
13120         Now compliant to the Dutch standards.
13122         * windows/win.c: Juergen Schmied <juergen.schmied@metronet.de>
13123         FIND_WndPtr should not set ERROR_INVALID_WINDOW_HANDLE when hWnd=0.
13125         * msdos/dosmem.c: Ove Kaaven <ovek@arcticnet.no>
13126         Fixed a couple of dosmem block resize bugs.
13128         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
13129         - no more 3D capabilities if Direct3D support is not compiled in
13130         - some debug messages clean-up (replaced fprintfs by DUMPs)
13132         * misc/main.c: Marcus Meissner <marcus@jet.franken.de>
13133         We got passed a NULL Dialect ptr and accessed it unprotected.
13135         * server/file.c, server/mapping.c, include/server/object.h, memory/virtual.c:
13136         Added support for mappings with no associated file.
13138         * include/server.h, include/server/process.h, scheduler/client.c, server/process.c, server/request.c, server/trace.c:
13139         Removed dst_handle in duplicate_handle request.
13140         Added inherit flag in create_mapping request.
13142         * include/oaidl.h, include/wine/obj_oleaut.h, ole/safearray.c, ole/variant.c:
13143         Francis Beaudet <francis@macadamian.com>
13144         Implemented support for arrays and safe arrays in VARIANT data
13145         structures. Also moved the SAFEARRAY definition (yet again) to the
13146         obj_oleaut.h file.
13148         * wine.ini: Andreas Mohr <cipam895@cip1.ind.uni-stuttgart.de>
13149         Fixed Filesystem documentation.
13151         * include/bitmaps/Attic/obm_folder, include/bitmaps/Attic/obm_folder2:
13152         Pavel Roskin <pavel_roskin@geocities.com>
13153         Made folder icons gray-yellow instead of blue.
13155         * windows/message.c: Francis Beaudet <francis@macadamian.com>
13156         Order of send message processing was not respected and the message
13157         stacked last finished after the message stacked first.
13159         * windows/winpos.c: Francis Beaudet <francis@macadamian.com>
13160         Added checks to guard against NULL active window.
13162         * windows/dialog.c: Norman Stevens <norman@arcady.u-net.com>
13163         Don't check children of disabled or invisible controls for dialog
13164         keyboard accelerators. Fixes problems with dialogs with tab boxes.
13166         * ole/compobj.c, relay32/ole32.spec:
13167         Francis Beaudet <francis@macadamian.com>
13168         Implemented the CoTaskMemRealloc API. Also clean-up around that API
13169         call.
13171         * ole/storage32.c: Thuy Nguyen <thuy@macadamian.com>
13172         Added a missing Release.
13173         STGM_CREATE should translate to CREATE_ALWAYS.
13175 ----------------------------------------------------------------
13176 Fri Feb 26 12:33:21 1999  Alexandre Julliard  <julliard@winehq.com>
13178         * DEVELOPERS-HINTS: Updated for new naming conventions.
13180         * */*: Large-scale renaming of all Win32 functions and types to
13181         use the standard Windows names.
13183 ----------------------------------------------------------------
13184 Thu Feb 25 18:11:40 1999  Alexandre Julliard  <julliard@winehq.com>
13186         * misc/main.c: Albert den Haan <albertd@corel.ca>
13187         For various reasons some of our libwine executables must have a "." in
13188         their file names. The "." causes trouble when the file name is used as
13189         the class name for an X resource as wine does for command line parsing
13190         under X.
13192         * windows/win.c:
13193         Make GetWindowLong(GWL_HWNDPARENT) return the same thing as
13194         GetParent32; suggested by Dave Pickles <davep@nugate.demon.co.uk>.
13196         * include/gdi.h, include/heap.h, include/wintypes.h:
13197         David Luyer <luyer@ucs.uwa.edu.au>
13198         Added __attribute__ ((unused)) on static inline functions declared in
13199         header files.
13201         * documentation/bugreports: Adam the Jazz Guy <magicbox@bestweb.net>
13202         Added "The Easy Way" and "The Hard Way", largely favoring the easy way,
13203         which uses my bug_report.pl script.
13204         Added info on a command that can be run on all shells to print debug
13205         msgs to a file and not to xterm.
13207         * msdos/dpmi.c:
13208         Marcus Meissner <msmeissn@stud.informatik.uni-erlangen.de>
13209         Needs thread.h for non-Linux.
13211         * include/win.h, windows/win.c:
13212         Francois Boisvert <francois@macadamian.com>
13213         Adding of new functions to make the wnd struct thread safe. Adding of
13214         irefCount in wnd struct.
13216         * configure, configure.in, console/ncurses.c, include/acconfig.h, include/config.h.in:
13217         Michael Veksler <mveksler@techunix.technion.ac.il>
13218         Added configure check for getbkgd and define HAVE_GETBKGD.
13220         * include/ocidl.h, include/ole2.h, include/oleidl.h, include/wine/obj_cache.h, include/wine/obj_connection.h, include/wine/obj_control.h, include/wine/obj_inplace.h, include/wintypes.h, ole/olefont.c:
13221         Paul Quinn <paulq@corel.ca>
13222         Many interface declarations that originated from oleidl.h, oaidl.h and
13223         ocidl.h separated into somewhat relevant obj_* files.
13225         * files/drive.c, ole/compobj.c, resources/sysres.c:
13226         Michael Veksler <mveksler@techunix.technion.ac.il>
13227         Fixed warning and compilation errors.
13229         * include/windows.h: Michael Veksler <mveksler@techunix.technion.ac.il>
13230         Removed includes of wine/* headers.
13232         * loader/resource.c: Pavel Roskin <pavel_roskin@geocities.com>
13233         Made message "Resource not found" WARN.
13235         * dlls/shell32/contmenu.c, include/shlobj.h:
13236         Adrian Thurston <adriant@COREL.CA>
13237         - Use the new COM definition macros in the header.
13238         - Put the implementation of the object in the contmenu.c.
13239         - Make appropriate name changes in contmenu.c.
13241         * misc/registry.c, include/winreg.h: Paul Quinn <paulq@corel.ca>
13242         Zygo Blaxell <zygob@corel.ca>
13243         Modifies parameter list of a couple of functions to comply with SDK.
13245         * windows/scroll.c: Pascal Lessard <pascal@macadamian.com>
13246         ScrollDC32 modified to return rect in logical coordinate.
13248         * include/wine/obj_oleaut.h: Adrian Thurston <adriant@COREL.CA>
13249         Adds C++ nameless union support to tagVARIANT.
13251         * include/mmsystem.h, include/oaidl.h, include/oleauto.h:
13252         Adrian Thurston <adriant@COREL.CA>
13253         Moved some definitions out of oleauto.h and into oaidl.h to conform to the SDK.
13254         Removed a redundant include.
13255         Added some c++ protection.
13257 Wed Feb 24 15:58:51 1999  Alexandre Julliard  <julliard@winehq.com>
13259         * dlls/shell32/enumidlist.c, dlls/shell32/pidl.c, dlls/shell32/pidl.h, dlls/shell32/shlfolder.c, include/shlobj.h:
13260         Juergen Schmied <juergen.schmied@metronet.de>
13261         Changed pidl structure to match the pidl's used in lnk-files.
13263         * dlls/shell32/shelllink.c:
13264         Juergen Schmied <juergen.schmied@metronet.de>
13265         Implemented reading of *.lnk-files.
13267         * include/wine/obj_shelllink.h:
13268         Juergen Schmied <juergen.schmied@metronet.de>
13269         new file, including the IShellLink definition.
13271         * include/module.h, include/pe_image.h, loader/elf.c, loader/main.c, loader/module.c, loader/pe_image.c, loader/pe_resource.c, loader/resource.c, loader/task.c, scheduler/thread.c:
13272         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
13273         Modified process creation sequence: call PE_CreateModule in the
13274         context of the new process (in TASK_CallToStart).
13275         Changed all PE/Module routines so as to always operate on the current
13276         process; adapted all callers.
13278         * msdos/dosconf.c, msdos/dosmem.c, msdos/dpmi.c, msdos/int16.c, msdos/int21.c, msdos/int2a.c, msdos/interrupts.c, msdos/ioports.c, msdos/vxd.c, msdos/xms.c, ole/storage.c, ole/typelib.c, programs/avitools/icinfo.c, relay32/relay386.c, tools/build.c, windows/clipboard.c, windows/input.c, dlls/shell32/contmenu.c, dlls/shell32/enumidlist.c, dlls/shell32/folders.c, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, dlls/shell32/shlview.c, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c, loader/main.c, memory/atom.c, misc/lstr.c:
13279         Marcus Meissner <marcus@jet.franken.de>
13280         Optimized away more includes, readded some #includes for necessary
13281         prototypes.
13283         * msdos/int2f.c: <smil@mechatronika.hu>
13284         Added low-level Netware installation check.
13286         * include/console.h, console/interface.c, console/ncurses.c:
13287         Joseph Pranevich <jpranevich@lycos.com>
13288         Added GetBackgroundColor call to the console struct. Will be used
13289         later.
13291         * msdos/int10.c: Joseph Pranevich <jpranevich@lycos.com>
13292         Bugfixes for INT 10/0B (SetBackgroundColor) to work properly.
13293         (Interrupt list did not have correct.)
13295         * windows/dinput.c: Lionel Ulmer <ulmer@directprovider.net>
13296         Added stubs for two missing methods of DInput.
13298         * ole/stg_bigblockfile.c: Thuy Nguyen <thuy@macadamian.com>
13299         Fixed a bug.
13301         * ole/storage32.c, ole/storage32.h: Thuy Nguyen <thuy@macadamian.com>
13302         Added support for larger files.
13304         * objects/dib.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
13305         Fixes buffer overrun problems with GetDIBits.
13307         * windows/message.c: Stephane Lussier <stephane@macadamian.com>
13308         Fixed some SendMessage bugs.
13310         * ole/compobj.c: Sylvain St.Germain <sylvain@macadamian.com>
13311         Fix COM_ExternalLockFreeList to do not fail with an empty list.
13313 Mon Feb 22 10:21:56 1999  Alexandre Julliard  <julliard@winehq.com>
13315         * misc/Makefile.in, misc/string.c:
13316         Zygo Blaxell <zblaxell@furryterror.org>
13317         Implemented some CRTDLL string functions.
13319         * objects/enhmetafile.c, objects/linedda.c, objects/metafile.c, objects/text.c, windows/caret.c, windows/clipboard.c, windows/dialog.c, windows/driver.c, windows/hook.c, windows/input.c, windows/keyboard.c, windows/mdi.c, windows/mouse.c, windows/multimon.c, windows/rect.c, windows/scroll.c, windows/timer.c, windows/user.c, windows/winproc.c, include/menu.h, include/mmsystem.h, include/sysmetrics.h, include/vfw.h, multimedia/audio.c, multimedia/dplay.c, multimedia/dsound.c, multimedia/init.c, multimedia/joystick.c, multimedia/mcianim.c, multimedia/mcicda.c, multimedia/mcimidi.c, multimedia/mcistring.c, multimedia/mciwave.c, multimedia/midi.c, multimedia/mixer.c, multimedia/mmaux.c, multimedia/mmio.c, multimedia/mmsystem.c, multimedia/time.c, objects/cursoricon.c:
13320         Marcus Meissner <marcus@jet.franken.de>
13321         Some more recursive include fixes/optimizations.
13323         * dlls/shell32/contmenu.c, dlls/shell32/enumidlist.c, dlls/shell32/iconcache.c, dlls/shell32/pidl.h, dlls/shell32/shell32_main.c, dlls/shell32/shlview.c:
13324         Juergen Schmied <juergen.schmied@metronet.de>
13325         - eliminated one element of the pidl struct (dwSFGAO)
13326         - changed some superflous FIXME
13328         * dlls/shell32/shlfolder.c, include/wine/obj_dragdrop.h:
13329         Juergen Schmied <juergen.schmied@metronet.de>
13330         - header uses the last macros now
13331         - rewrote IDropTarget according to the new COM headers
13332           (was local declared not using the already written prototypes)
13333         - corrected Drop method (wrong parameter count)
13335         * windows/dinput.c: Francois Gouget <fgouget@psn.net>
13336         Updated to use the latest COM macros, ICOM_VTABLE and ICOM_THIS.
13337         Added the interface implementation structures.
13338         I remembered from an email that even when asked for a
13339         IDirectInputDeviceA what was returned was an IDirectInputDevice2A so I
13340         considered that we would only implement the latter. The
13341         IDirectInputDeviceA_xxx methods have been renamed to
13342         IDirectInputDevice2A_xxx, and we always return our IDirectInputDevice2A
13343         implementation as before.
13344         Renamed the implementation structures to XxxImpl.
13346         * include/dinput.h: Francois Gouget <fgouget@psn.net>
13347         Use latest COM macros
13348         Defined the IDirectInputDeviceA interface independently from
13349         IDirectInputDevice2A.
13350         Removed the 32 suffix of the interfaces. Hopefully this will not
13351         cause any problem with the renaming.
13352         Moved the implementation specific stuff to dinput.c (well, the
13353         interfaces at least).
13355 Sun Feb 21 18:35:28 1999  Alexandre Julliard  <julliard@winehq.com>
13357         * scheduler/process.c, scheduler/sysdeps.c, include/process.h, include/thread.h:
13358         Changed initial process creation to avoid memory allocations.
13359         Removed a few unused fields in PDB and THDB.
13361         * scheduler/client.c, scheduler/thread.c:
13362         Removed thread queue functions.
13363         Changed initial thread creation to avoid memory allocations.
13364         Moved server startup to THREAD_CreateInitialThread.
13366         * scheduler/synchro.c:
13367         Removed use of per-thread wait_struct, cleaned up a bit.
13369         * scheduler/k32obj.c, memory/virtual.c: Removed MEM_MAPPED_FILE_Ops.
13371         * include/winnt.h: Added a few exception codes.
13373         * windows/win.c, include/mmsystem.h, include/path.h, include/progress.h, include/queue.h, include/resource.h, include/struct32.h, include/updown.h, include/windows.h, include/winpos.h, loader/main.c, misc/commdlg.c, misc/winsock_dns.c, multimedia/mmsystem.c, include/cursoricon.h, include/dde_atom.h, include/ddraw.h, include/dispdib.h, include/dosexe.h, include/dsound.h, controls/menu.c:
13374         Michael Veksler <mveksler@techunix.technion.ac.il>
13375         - Fix headers to include less or smaller header files.
13376         - Fix header and source files to include missing header files to avoid
13377           warnings and errors.
13379         * loader/signal.c, memory/ldt.c, misc/port.c:
13380         Marcus Meissner <marcus@jet.franken.de>
13381         Change "g" (general regs) into "r" (hardregs) in clone / modify_ldt /
13382         wine_sigaction __PIC__ cases, since "g" will not work with
13383         -fomit-frame-pointer ("g" is referenced using %esp which was
13384         invalidated before). Bug found and (other) fix suggested by
13385         <daniel@mat.utfsm.cl> Daniel Serpell.
13387         * ole/olefont.c: Marcus Meissner <marcus@jet.franken.de>
13388         Added missing WINAPIs.
13390         * windows/x11drv/event.c, windows/x11drv/init.c, loader/task.c, windows/event.c, windows/ttydrv/event.c, windows/ttydrv/init.c, include/message.h, include/ttydrv.h, include/x11drv.h:
13391         Stephane Lussier <stephane@macadamian.com>
13392         Fix problem where you need mouse activity to unlock some 16 bits
13393         thread with multi-threaded apps.
13395 Sat Feb 20 16:48:54 1999  Alexandre Julliard  <julliard@winehq.com>
13397         * relay32/oleaut32.spec, include/Attic/interfaces.h, include/oaidl.h, include/ocidl.h, include/ole.h, include/oleauto.h, include/olectl.h, include/wine/obj_oleaut.h, include/wine/obj_olefont.h, include/wtypes.h, ole/Makefile.in, ole/guid.c, ole/ole2disp.c, ole/olefont.c, ole/typelib.c:
13398         Francis Beaudet <francis@macadamian.com>
13399         Implemented the OleCreateFontIndirect method and the associated COM
13400         object. That object supports the IFont and IDispatch interfaces.
13402         * configure, configure.in, include/config.h.in, misc/port.c, misc/winsock.c, misc/winsock_dns.c:
13403         Marcus Meissner <marcus@jet.franken.de>
13404         Problems reported by Donald Page, PR 105-107.
13406         * console/ncurses.c: Joseph Pranevich <jpranevich@lycos.com>
13407         More commenting, better debugging of color problems, and support for
13408         the new TerminalType option in wine.ini. This allows us to select
13409         which terminal type we are really using so that we can, for example,
13410         use its color capabilities.
13412         * console/interface.c, include/console.h:
13413         Joseph Pranevich <jpranevich@lycos.com>
13414         Support for the new InitialRows andf InitialColumns options in wine.ini
13415         (Generic replacement for XtermResolution option...)
13417         * msdos/int10.c: Joseph Pranevich <jpranevich@lycos.com>
13418         Fix *DUH* problem causing lots and lots of unnecessary AllocColor errors.
13420         * console/xterm.c: Joseph Pranevich <jpranevich@lycos.com>
13421         Removal of obsolete XtermResolution option.
13423         * documentation/console, wine.ini:
13424         Joseph Pranevich <jpranevich@lycos.com>
13425         Add information about the new wine.conf options.
13427         * debugger/stack.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
13428         Fixed backtrack issue on 16bit code.
13430         * debugger/msc.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
13431         Changed LocateDebugInfoFile to reduce stack consumption (from 13k to 2k !!)
13433         * debugger/info.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
13434         Fixed comment for Wine documentation.
13436         * include/server.h, include/server/request.h, server/request.c, server/trace.c:
13437         Added get/set_handle_info request.
13439         * graphics/x11drv/dib.c:
13440         Fixed end-of-line bug in X11DRV_DIB_SetImageBits_RLE4.
13442         * tools/wrc/CHANGES, tools/wrc/genres.c, tools/wrc/newstruc.c, tools/wrc/parser.y, tools/wrc/wrc.h, tools/wrc/wrctypes.h, tools/wrc/writeres.c:
13443         Bertho Stultiens <bertho@panter.soci.aau.dk>
13444         Fix a couple of 64bit platform problems and speed up compilation. See
13445         tools/wrc/CHANGES for details.
13447         * multimedia/mmio.c: Marcus Meissner <marcus@jet.franken.de>
13448         mmioDescend: debugoutput enhanced, FINDLIST/FINDRIFF should Check the
13449         correct ckid (LIST/RIFF) too. (verified against mciavi32.dll)
13451         * Makefile.in: Zygo Blaxell <zblaxell@furryterror.org>
13452         Added a check for the existence of wine.sym before installing it.
13454         * include/ole2.h, ole/ole2.c, relay32/ole32.spec:
13455         Francis Beaudet <francis@macadamian.com>
13456         Added some new stubs for the OLE menu descriptor methods.
13458 Fri Feb 19 16:50:24 1999  Alexandre Julliard  <julliard@winehq.com>
13460         * windows/queue.c: Martin Walker <mwalker@caci.co.uk>
13461         Fixed message filtering check.
13463         * relay32/advapi32.spec, dlls/advapi32/security.c, dlls/ntdll/nt.c, dlls/ntdll/rtl.c, include/ntddk.h, include/ntdef.h, include/ntdll.h, include/queue.h, include/winbase.h, include/winnt.h, include/winreg.h, ole/oleobj.c:
13464         Juergen Schmied <juergen.schmied@metronet.de>
13465         - made the security functions consistent. advapi calls down to ntdll now
13466         - new SetSecurityDescriptorGroup,  SetSecurityDescriptorOwner,
13467           SetSecurityDescriptorSacl, GetSecurityDescriptorDacl
13468         - nt-header cleanup
13470         * dlls/ntdll/rtl.c, if1632/builtin.c, misc/cpu.c, win32/kernel32.c:
13471         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
13472         Fixed a few broken includes.
13474         * windows/nonclient.c: Reverted broken close button change.
13476         * dlls/comctl32/header.c, dlls/comctl32/rebar.c, dlls/comctl32/tab.c, dlls/comctl32/toolbar.c, dlls/comctl32/tooltips.c, dlls/comctl32/updown.c, dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, graphics/path.c, graphics/psdrv/init.c, tools/wrc/newstruc.c, controls/button.c, controls/edit.c, controls/widgets.c, dlls/advapi32/advapi.c, dlls/advapi32/security.c:
13477         Jeff Garzik <jgarzik@pobox.com>
13478         Added missing string.h include.
13480         * loader/ne/module.c:
13481         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
13482         Only append .dll if no extension yet.
13484         * windows/message.c: Francis Beaudet <francis@macadamian.com>
13485         Temporary fix suggested by Ulrich to allow the
13486         MsgWaitForMultipleObject method to be called from 16 bit threads.
13488         * windows/winproc.c: Ove Kaaven <ovek@arcticnet.no>
13489         Initialized return value of 16->32 conversion of WM_MDIGETACTIVE in
13490         case it's sent to a window that doesn't handle it (i.e. not MDI
13491         client).
13493         * include/dce.h, windows/dce.c, windows/winpos.c:
13494         Ove Kaaven <ovek@arcticnet.no>
13495         Added extra child arguments to DCE_GetVisRgn() to be able to handle
13496         PARENTDC class style combined with CLIPCHILDREN window style, to
13497         prevent mis-redraws in Free Agent 16-bit.
13499         * dlls/version/info.c: Lawson A. Whitney <lawson_whitney@juno.com>
13500         Don't hang on the last child if it's not wanted.
13502         * win32/kernel32.c, relay32/kernel32.spec: Ian Schmidt <irsman@iag.net>
13503         Partial stub implementation of undocumented KERNEL routine PK16FNF,
13504         needed by Win98 EXPLORER. Thanks to Ulrich Weigand for information.
13506         * misc/commdlg.c: Ove Kaaven <ovek@arcticnet.no>
13507         Fix redraw problems for ChooseColor dialog.
13509         * */*.c: Marcus Meissner <marcus@jet.franken.de>
13510         Removed a lot of occurences of windows.h (and added necessary other
13511         includes).
13513         * include/objidl.h, include/wine/obj_moniker.h, ole/compobj.c, dlls/shell32/dataobject.c, dlls/shell32/enumidlist.c:
13514         Francois Gouget <fgouget@psn.net>
13515         Small fixes.
13517         * include/dsound.h, multimedia/dsound.c:
13518         Francois Gouget <fgouget@psn.net>
13519         Changed the first parameter from LPGUID (Windows headers) to REFGUID.
13520         This makes it a 'const GUID*' which means DirectSoundCreate must not
13521         change it.
13523         * dlls/shell32/shell32_main.h: Francois Gouget <fgouget@psn.net>
13524         Removed redundant definitions of IsEqualIID and IsEqualCLSID (see
13525         include/wine/obj_base.h)
13527 Thu Feb 18 17:34:10 1999  Alexandre Julliard  <julliard@winehq.com>
13529         * relay32/user32.spec, windows/message.c, windows/queue.c, windows/user.c, include/queue.h:
13530         Stephane Lussier <stephane@macadamian.com>
13531         - New implementation of SendMessage, ReceiveMessage, ReplyMessage functions
13532           to support thread-safeness, and nested SendMessage.
13533         - Addition of ReplyMessage32.
13535         * windows/x11drv/wnd.c:
13536         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
13537         Bugfix: Cope with NULL pDriverData in X11DRV_WND_GetXWindow.
13539         * misc/commdlg.c, resources/sysres_En.rc:
13540         Pascal Lessard <pascal@macadamian.com>
13541         Applied the changes of the resulting color of the choose color dialog.
13542         Initialize values in the choose color dialog.
13544         * include/wine/obj_base.h, include/wine/obj_marshal.h:
13545         Francois Gouget <fgouget@psn.net>
13546         Removed references to ICOM_INHERITS.
13548         * ole/stg_bigblockfile.c, ole/storage32.c, ole/storage32.h:
13549         Thuy Nguyen <thuy@macadamian.com>
13550         Fixed bug with read-only files.
13552         * multimedia/mciavi.c, multimedia/mcimidi.c:
13553         Marcus Meissner <marcus@jet.franken.de>
13554         Removed superflous WINAPI (mismatch with prototype) in *_DriverProc32.
13556         * include/dosexe.h: Marcus Meissner <marcus@jet.franken.de>
13557         dosexe.h depends on winbase.h (for LPSTARTUPINFO32A)
13559         * dlls/shell32/shelllink.c, ole/bindctx.c, ole/filemoniker.c, ole/itemmoniker.c, ole/stg_stream.c, ole/storage32.c, ole/storage32.h:
13560         Francois Gouget <fgouget@psn.net>
13561         Modified so that they do not use the VTABLE_FUNC macros that performed
13562         casts of all methods put in the jump table. I find it too risky to use
13563         such macros because nothing guarantees that you actually put the right
13564         method at the right place or that the prototype is right.
13566         * include/wine/obj_moniker.h, include/wine/obj_storage.h, ole/storage.c:
13567         Francois Gouget <fgouget@psn.net>
13568         Updated to use the latest COM macros. Defined more interfaces and API
13569         functions.
13571         * controls/menu.c, graphics/x11drv/oembitmap.c, include/winuser.h, windows/nonclient.c:
13572         Francois Boisvert<francois@macadamian.com>
13573         Implementation of the pushed close button.
13575 Wed Feb 17 17:45:54 1999  Alexandre Julliard  <julliard@winehq.com>
13577         * include/mapidefs.h, include/objbase.h, include/ole.h, include/oleauto.h, include/winbase.h, include/wine/obj_moniker.h, include/wine/obj_propertystorage.h, include/winnt.h, include/wintypes.h, include/wtypes.h, ole/compobj.c:
13578         Francois Gouget <fgouget@psn.net>
13579         Moved some definitions to their proper include file.
13581         * include/wine/obj_clientserver.h, include/wine/obj_misc.h:
13582         Francois Gouget <fgouget@psn.net>
13583         Fixed some ICOM_INHERIT stuff and added new related API functions.
13585         * include/wine/obj_base.h: Francois Gouget <fgouget@psn.net>
13586         Added new API. Part of it was in 'include/objbase.h' before and part
13587         of it is new. Now it also contains 'WINE_StringFromCLSID'. It's not
13588         perfect but it's better than having it in 'include/objbase.h'.
13590         * dlls/advapi32/crypt.c, dlls/ntdll/nt.c, graphics/x11drv/graphics.c, scheduler/synchro.c, controls/scroll.c:
13591         Francois Gouget <fgouget@psn.net>
13592         Fixed a number of warnings concerning the matching of the printf
13593         format string and the associated parameters (actually it's mostly
13594         TRACE and FIXMEs).
13596         * include/mmsystem.h, multimedia/mmio.c, multimedia/mmsystem.c, relay32/winmm.spec:
13597         Marcus Meissner <marcus@jet.franken.de>
13598         mmioDescend: fixed FIND_xxxx, verified with mciavi32.dll.
13599         mciLoadCommandResource32: second arg is wide string
13600         mciGetDriverData: spec has just one long argument
13602         * ole/compobj.c, ole/ifs.c, ole/ifs.h, ole/storage.c, dlls/shell32/shellole.c, include/wine/obj_base.h, include/wine/obj_dataobject.h, multimedia/dsound.c, dlls/shell32/dataobject.c, dlls/shell32/shelllink.c:
13603         Francois Gouget <fgouget@psn.net>
13604         Changed ICOM_THIS definition.
13606         * dlls/version/info.c, include/ver.h:
13607         Bertho Stultiens <bertho@panter.soci.aau.dk>
13608         Renamed VS_VERSION_INFOxx structure to VS_VERSION_INFO_STRUCTxx.
13609         The VS_VERSION_INFO is a simple define and would cause confusion.
13610         Also corrected the VS_xx_INFO defines not to use MAKEINTRESOURCE16 for win32.
13612         * configure, configure.in: Steffen Moeller <moeller@ebi.ac.uk>
13613         "Configure finished" message suggests to call make when make depend
13614         was successful.
13616         * */*: Marcus Meissner <marcus@jet.franken.de>
13617         Optimized include/*.h: (recursively) include all headers needed by
13618         this .h file, but only those. Necessary fixes to a lot of .c files,
13619         started optimizing "windows.h" away from some of them. Moved
13620         GetCurrentTask prototype to wine/winbase16.h.
13622         * include/commctrl.h, include/listview.h, dlls/comctl32/listview.c:
13623         Luc Tourangeau <luc@macadamian.com>
13624         Preliminary listview control implementation.
13626         * controls/menu.c: Francois Boisvert <francois@macadamian.com>
13627         Give the context menu its proper behaviour and modify TrackPopupMenu
13628         to comply with windows API.
13630         * windows/painting.c: Dave Pickles <davep@nugate.demon.co.uk>
13631         GetUpdateRect should return client coordinates unless the window was
13632         created with the CS_OWNDC style and the mapping mode is not MM_TEXT,
13633         in which case the result should be in logical coordinates.
13635         * include/wine/obj_channel.h: Francois Gouget <fgouget@psn.net>
13636         Added the actual definitions of the interfaces.
13638         * include/servprov.h: Francois Gouget <fgouget@psn.net>
13639         Converted to the new COM declaration 'standard' for better
13640         compatibility with C code implementating that interface.
13642         * misc/wsprintf.c: Francis Beaudet <francis@macadamian.com>
13643         Changed WPRINTF_ExtractVAPtr to take the address of the va_list to be
13644         able to modify it.
13646         * dlls/shell32/shlfolder.c: Sylvain St.Germain <sylvain@macadamian.com>
13647         Defined IDropTarget for ShellFolder.  Implemented the Constructor,
13648         Destructor, AddRef, Release and QueryInterface methods.
13650         * memory/selector.c, if1632/kernel.spec:
13651         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
13652         Change type of mode argument to GETVDMPOINTER32W from DWORD to Word
13654 Mon Feb 15 15:24:20 1999  Alexandre Julliard  <julliard@winehq.com>
13656         * include/msacm.h, include/winuser.h:
13657         Douglas Ridgway <ridgway@winehq.com>
13658         c2man doesn't like extra semicolons.
13660         * windows/winpos.c: Ove Kaaven <ovek@arcticnet.no>
13661         Resetting X focus should not be done with SetFocus32. Called
13662         the windowing (X11) driver's SetFocus routine directly instead.
13663         This apparently fixes a big heap of user interface problems.
13665 ----------------------------------------------------------------
13666 Sun Feb 14 14:09:42 1999  Alexandre Julliard  <julliard@winehq.com>
13668         * graphics/painting.c, include/winuser.h, objects/cursoricon.c, windows/dialog.c, windows/painting.c, windows/rect.c, windows/win.c, windows/winpos.c:
13669         Eric Pouech <Eric.Pouech@wanadoo.fr>
13670         Changed some functions prototypes (were returning void).
13672         * misc/main.c, include/winuser.h: Paul Quinn <paulq@corel.ca>
13673         Fixed some Winelib names.
13675         * include/clipboard.h, include/console.h, include/desktop.h, include/keyboard.h, include/ttydrv.h, include/x11drv.h:
13676         Juergen Schmied <juergen.schmied@metronet.de>
13677         Corrected prototypes func() ->func(void).
13679         * multimedia/init.c, multimedia/midi.c, debugger/memory.c:
13680         Brian Joseph Czapiga <root@glacid.com>
13681         Fixed a few #ifdefs.
13683         * windows/scroll.c, windows/x11drv/wnd.c:
13684         Jerome Vouillon <vouillon@claranet.fr>
13685         Make a correct use of clipping rectangles.
13687         * include/bitmaps/ocr_cross:
13688         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
13689         Added white border.
13691         * debugger/db_disasm.c: Juergen Schmied <juergen.schmied@metronet.de>
13692         Implemented better output for indirect calls.
13694         * relay32/winmm.spec: Eric Pouech <Eric.Pouech@wanadoo.fr>
13695         Fixed typo in winmm.spec.
13697         * include/wintypes.h, include/wrc_rsc.h, misc/lstr.c, misc/wsprintf.c, relay32/builtin32.c, relay32/relay386.c, relay32/snoop.c:
13698         Gavriel State <gavriels@COREL.CA>
13699         A few non-x86 Winelib fixes.
13701         * miscemu/main.c: Marcus Meissner <marcus@jet.franken.de>
13702         Do not print 'wine: no executeable found' if we did execute something.
13704         * programs/notepad/*:
13705         Marcel Baur <mbaur@g26.ethz.ch>
13706         - Added new IDS_NOTSAVED ressource (needs translation in *.rc)
13707         - Improved printing support (not yet complete)
13708         - Improved file drag and drop (should now work)
13709         - General code cleanup
13711         * include/multimedia.h, multimedia/mcimidi.c, multimedia/mciwave.c, multimedia/mmsystem.c:
13712         Eric Pouech <Eric.Pouech@wanadoo.fr>
13713         Fixed bugs on MCI notification (callback info are copied before
13714         asynchronous return) - make use of it in MCI wave and midi.
13715         Implemented mci(Set|Get)DeviceID(16|32) functions.
13717         * windows/x11drv/wnd.c: Ove Kaaven <ovek@arcticnet.no>
13718         Since SetParent now hides/shows, explicitly invalidating DCs in the
13719         parent change operation should no longer be necessary.
13721         * windows/dialog.c: Gerard Patel <G.Patel@Wanadoo.fr>
13722         Fix if EndDialog called in WM_INITDIALOG (DIALOG_DoDialogBox).
13724         * msdos/ioports.c:
13725         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
13726         Moved VGA port access check at the beginning in order to improve
13727         performance a little bit.
13729         * server/file.c: Juergen Schmied <juergen.schmied@metronet.de>
13730         Implemented flag FILE_FLAG_DELETE_ON_CLOSE.
13732         * msdos/int10.c: Joseph Pranevich <jpranevich@lycos.com>
13733         Added comments. Think I've fixed INT 10/08 (Get Character and
13734         Attribute at Cursor).
13736         * console/xterm.c: Joseph Pranevich <jpranevich@lycos.com>
13737         Added configuration options XtermProgram and XtermResolution.
13738         Fixed a warning.
13740         * documentation/console, wine.ini:
13741         Joseph Pranevich <jpranevich@lycos.com>
13742         New examples/documentation for console configuration options.
13744         * misc/main.c, windows/x11drv/main.c, console/generic.c, console/interface.c, console/ncurses.c, console/tty.c, include/console.h, include/options.h, loader/main.c:
13745         Joseph Pranevich <jpranevich@lycos.com>
13746         Moved initialization until later. Also moved around code a bit to be
13747         consistant.
13749         * include/debugger.h: Marcus Meissner <marcus@jet.franken.de>
13750         Added possibility to load .stabs/.stabstr sections from PE dlls.
13751         Unfortunately my samples use currently typedefs which wine-dbg does
13752         not understand, so no actual parsing.
13754         * dlls/msacm/msacm_main.c, dlls/msacm32/format.c, dlls/msacm32/stream.c, include/mmreg.h, include/mmsystem.h, include/msacm.h, include/msacmdrv.h, include/winbase.h:
13755         Bertho Stultiens <bertho@panter.soci.aau.dk>
13756         Change a couple of names that would conflict after all 32[AW] suffixes
13757         are removed. Structures defined in both mmreg.h and mmsystem.h are
13758         protected with #ifdef:s as in MS' headers.
13760         * misc/imm.c: Patrik Stridvall <ps@leissner.se>
13761         Fixed wrong typecasts.
13763         * programs/progman/grpfile.c: Stefan Leichter <sle@camline.com>
13764         Compilation fix.
13766         * configure.in, configure: Ove Kaaven <ovek@arcticnet.no>
13767         Fix for X11 includes detection.
13769         * debugger/hash.c, debugger/msc.c, debugger/stabs.c:
13770         Marcus Meissner <marcus@jet.franken.de>
13771         Added possibility to load .stabs/.stabstr sections from PE dlls.
13772         Unfortunately my samples use currently typedefs which wine-dbg does
13773         not understand, so no actual parsing.
13775         * multimedia/dplay.c, documentation/status/directdraw, graphics/d3dviewport.c, graphics/ddraw.c, include/d3d.h:
13776         Marcus Meissner <marcus@jet.franken.de>
13777         Some ddraw/d3d bugfixes, updated Diablo/WC4 ddraw status.
13779         * ole/ole2nls.c, relay32/kernel32.spec, include/winnls.h:
13780         Juergen Schmied <juergen.schmied@metronet.de>
13781         Implementation of ConvertDefaultLocale32.
13783         * windows/mdi.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
13784         WIN31 Look still needs a close button on the left of the menu bar.
13786         * windows/winpos.c: Francois Boisvert <francois@macadamian.com>
13787         Changed SetWindowPos32 to force the update of the non-client area.
13789 Sat Feb 13 17:56:28 1999  Alexandre Julliard  <julliard@winehq.com>
13791         * dlls/shell32/shell32_main.h, include/mmsystem.h, include/ole.h, include/wingdi.h, include/winsock.h:
13792         Bertho Stultiens <bertho@panter.soci.aau.dk>
13793         Fixed a couple of faulty names used in wine and typos so that it will
13794         compile again after conversion from 32[AW] naming to [AW] naming.
13796         * if1632/Attic/signal.c, if1632/Makefile.in, include/debugger.h, include/dosexe.h, include/miscemu.h, include/sig_context.h, loader/dos/dosvm.c, loader/signal.c, miscemu/instr.c, miscemu/main.c, graphics/ddraw.c:
13797         Marcus Meissner <marcus@jet.franken.de>
13798         Moved the if1632/signal.c stuff into loader/signal.c, adapted function
13799         pointers for wine_debug and INSTR_EmulateInstruction.
13801         * ole/compobj.c: Francois Gouget <fgouget@psn.net>
13802         All guid 'REFxxx' types already have a 'const' inside them.
13804         * dlls/comctl32/draglist.c, dlls/comctl32/tooltips.c, misc/version.c, windows/winpos.c:
13805         Marcus Meissner <marcus@jet.franken.de>
13806         Some warnings fixed, one useless VERSION warning removed (winelib).
13808         * misc/registry.c:
13809         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
13810         RegFlushKey: wrong error code.
13812         * win32/file.c: Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
13813         Adds a warning message if permissions not sufficient.
13815         * multimedia/mixer.c, multimedia/mmsystem.c, relay32/winmm.spec, include/debug.h, include/debugdefs.h, include/multimedia.h, multimedia/Makefile.in, multimedia/mcianim.c, multimedia/mciavi.c, multimedia/mcimidi.c, multimedia/mciwave.c, multimedia/midi.c:
13816         Eric Pouech <Eric.Pouech@wanadoo.fr>
13817         Added support for MCI AVI driver
13818         Added some fixes mixer functions
13819         Fixed MCI string comparison (thanks to Lionel ULMER)
13820         No longer using 16 bit USER functions (use their 32 bit counter part)
13821         Reindenting.
13822         Added function sndPlaySound32W
13824         * include/objbase.h, include/objidl.h, include/wine/obj_marshal.h:
13825         Francois Gouget <fgouget@psn.net>
13826         Added the actual interface definitions to the obj_marshal.h skeleton
13827         file. Also defined the associated C API.
13829         * windows/queue.c: Stephane Lussier <stephane@macadamian.com>
13830         Use global synchronization objects, to be able to use it in different
13831         processes (not only the process which create the synchro object).
13833         * windows/mdi.c: Norman Stevens <norman@arcady.u-net.com>
13834         Set hwndActiveChild when maximizing a mdi child window because it is
13835         not set when maximizing a window other than the active child.
13837         * controls/menu.c: Pascal Lessard <pascal@macadamian.com>
13838         Change the GetMenuItemRect to comply with windows API.
13840         * Makefile.in, configure, configure.in, include/.cvsignore, include/Makefile.in:
13841         James Juran <jrj120@psu.edu>
13842         Created include/Makefile.in to separate header file installation from
13843         the top-level Makefile.
13845         * ole/stg_bigblockfile.c, ole/stg_stream.c, ole/storage32.c, ole/storage32.h:
13846         Thuy Nguyen <thuy@macadamian.com>
13847         - Fixed a small block depot bug.
13848         - Implemented converting from small blocks to big blocks.
13849         - Validated file attributes and flags.
13850         - Fixed a bug for larger files.
13852         * resources/.cvsignore: added sysres_Nl
13854         * graphics/x11drv/oembitmap.c, include/ole2.h, include/oleidl.h, include/shlguid.h, include/shlobj.h, include/windef.h, include/wine/obj_dragdrop.h, include/winerror.h, include/wintypes.h, ole/ole2.c, relay32/ole32.spec:
13855         Francis Beaudet <francis@macadamian.com>
13856         Implemented the OLE Drag and Drop target registration mechanism and
13857         the DoDragDrop loop to perform the DnD operation.
13859         * windows/mdi.c, controls/menu.c, include/menu.h:
13860         Francois Boisvert <francois@macadamian.com>
13861         Implemented the WIN31 Look mdi buttons and also some defines for the
13862         magic menu items.
13864         * dlls/advapi32/Makefile.in, dlls/advapi32/crypt.c, include/wincrypt.h, relay32/advapi32.spec:
13865         Ian Schmidt <irsman@iag.net>
13866         Added entries for most Crypt* calls.
13867         Added stub for CryptAcquireContextA.  This allows Win98 EXPLORER.EXE
13868         to get farther.
13870         * controls/edit.c:
13871         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
13872         An app left junk in the undo buffer of an edit control upon creation.
13874         * windows/win.c: Ove Kaaven <ovek@arcticnet.no>
13875         Changed SetParent32 to adhere to Windows behaviour (mostly),
13876         which should also keep it from leaving garbage around.
13878         * ole/compobj.c: Sylvain St.Germain <sylvain@macadamian.com>
13879         Implementation of a simple linked list (static) that stores and counts
13880         references to COM objects.
13882         * include/objbase.h, include/wtypes.h:
13883         Francois Gouget <fgouget@psn.net>
13884         Make the REFxxx types const even in C. Also add FMTID.
13886         * windows/winpos.c: Ove Kaaven <ovek@arcticnet.no>
13887         Don't call EVENT_DummyMotionNotify for hidden windows.
13889         * windows/message.c: Stephane Lussier <stephane@macadamian.com>
13890         Fix some thread-safeness problem when accessing the system message
13891         queue.
13893         * windows/input.c, include/winuser.h, relay32/user32.spec:
13894         Marcus Meissner <marcus@jet.franken.de>
13895         Implemented MapVirtualKeyEx (ticket 21).
13896         Ignore keyboard layout for now.
13898         * include/objidl.h, include/wine/obj_clientserver.h:
13899         Francois Gouget <fgouget@psn.net>
13900         Added the actual interface definitions to the obj_clientserver.h
13901         skeleton file.
13903         * dlls/ntdll/Makefile.in, dlls/ntdll/nt.c, dlls/ntdll/reg.c, dlls/ntdll/rtl.c, relay32/ntdll.spec:
13904         Juergen Schmied <juergen.schmied@metronet.de>
13905         - documented most of the undocumented functions in nt.c
13906         - implemented RtlGetDaclSecurityDescriptor
13907         - stubs for NtEnumerateKey, NtOpenSymbolicLinkObject, NtQueryKey
13908         - stubs for NtRaiseException, RtlRaiseException (this both will crash)
13910 Fri Feb 12 17:47:07 1999  Alexandre Julliard  <julliard@winehq.com>
13912         * dlls/advapi32/security.c, dlls/advapi32/service.c, files/drive.c, misc/registry.c, win32/newfns.c, windows/user.c:
13913         Juergen Schmied <juergen.schmied@metronet.de>
13914         Small fixes to compile with the headers (mostly nt-security).
13916         * include/ntddk.h, include/ntdef.h, include/ntdll.h, include/winbase.h, include/windef.h, include/winnt.h, include/winreg.h:
13917         Juergen Schmied <juergen.schmied@metronet.de>
13918         Made nt-related types compatible, throw out wine-specific types.
13920         * windows/mouse.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
13921         Use MONITOR_... instead of DESKTOP_... routines to get screen
13922         dimensions; these work also with native USER.
13924         * windows/defwnd.c: Ove Kaaven <ovek@arcticnet.no>
13925         WM_ACTIVATE default processing should set window focus.
13926         Should fix focus problems in non-managed mode.
13928 Thu Feb 11 16:32:17 1999  Alexandre Julliard  <julliard@winehq.com>
13930         * ole/nls/nld.nls, resources/Makefile.in, resources/TODO, resources/sysres.c, resources/sysres_Nl.rc, AUTHORS, documentation/languages, include/authors.h, include/options.h, misc/main.c, ole/ole2nls.c:
13931         Klaas van Gend <klaas@vangend.demon.nl>
13932         Added support for the Dutch language.
13934         * dlls/comctl32/propsheet.c, include/commctrl.h, include/prsht.h, include/shlobj.h:
13935         Adrian Thurston <adriant@corel.ca>
13936         Zygo Blaxell <zblaxell@corel.ca>
13937         Move property sheets from commctrl.h into into prsht.h.
13939         * graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c:
13940         Lionel Ulmer <ulmer@directprovider.net>
13941         Added 'objbase.h' to prevent compiler warnings.
13943         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
13944         Better detection of XShm errors (should now run on remote displays).
13946         * multimedia/mmsystem.c:
13947         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
13948         Fixes mixerGetID16/32 problems/errors.
13950         * ole/oleobj.c, multimedia/dplay.c: Francois Gouget <fgouget@psn.net>
13951         IsEqualGUID is defined in 'include/wine/obj_base.h'. All other
13952         declarations must surrender or prepare to be met with deadly force :-)
13954         * relay32/ole32.spec: Francois Gouget <fgouget@psn.net>
13955         Added new functions (from Win98)
13956         Added comments with the parameter types for future use with dllglue
13958         * files/drive.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
13959         Set the flags for GetVolumeInformation32A.
13961         * windows/win.c: Juergen Schmied <juergen.schmied@metronet.de>
13962         FindWindow failed for 32 bit windows with style != WS_CHILD.
13964 Wed Feb 10 06:52:58 1999  Alexandre Julliard  <julliard@winehq.com>
13966         * include/Attic/print.h, include/winspool.h, misc/printdrv.c, graphics/psdrv/driver.c, graphics/psdrv/escape.c, graphics/psdrv/font.c, graphics/psdrv/graphics.c, graphics/psdrv/init.c, graphics/psdrv/ppd.c, graphics/psdrv/ps.c, graphics/psdrv/text.c:
13967         Paul Quinn <paulq@corel.ca>
13968         Albert Den Haan <albertd@corel.ca>
13969         Moves files from print.h to winspool.h for better SDK header compliance
13970         for Winelib programs.
13972         * include/hook.h, include/objidl.h, include/ole2.h, include/tchar.h, include/winbase.h, include/wine/obj_clientserver.h, include/wine/obj_dataobject.h, include/wine/obj_storage.h, include/winerror.h, include/winuser.h, include/wtypes.h:
13973         Albert Den Haan <albertd@corel.ca>
13974         Adrian Thurston <athursto@corel.ca>
13975         Paul Quinn <paulq@corel.ca>
13976         Zygo Blaxell <zygob@corel.ca>
13977         Miscellaneous patches to header files.  All of these are supposedly there
13978         to help build Winelib applications.
13980         * include/wintypes.h: Albert Den Haan <albertd@corel.ca>
13981         Adrian Thurston <athursto@corel.ca>
13982         Paul Quinn <paulq@corel.ca>
13983         Zygo Blaxell <zygob@corel.ca>
13984         More types we need for compiling Winelib/MFC applications.
13986         * include/commctrl.h: Paul Quinn <paulq@corel.ca>
13987         Adrian Thurston <adriant@corel.ca>
13988         More types for common controls.  Needed for Winelib.
13990         * dlls/shell32/shelllink.c, dlls/shell32/shellole.c, include/wine/obj_base.h, multimedia/dsound.c, ole/compobj.c, ole/ifs.c:
13991         Francois Gouget <fgouget@psn.net>
13992         Better set of macros for defining the COM interfaces.
13994         * dlls/advapi32/security.c, relay32/advapi32.spec:
13995         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
13996         Two ADVAPI32 stubs: ImpersonateSelf32 and AccessCheck32. Spelling fixes.
13998         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
13999         Fixed debug output to follow '-debugmsg' flags.
14001 Tue Feb  9 15:49:39 1999  Alexandre Julliard  <julliard@winehq.com>
14003         * msdos/int20.c, ole/safearray.c, relay32/builtin32.c, server/device.c, server/file.c, server/pipe.c, server/thread.c, windows/winhelp.c:
14004         Michael Veksler <mveksler@techunix.technion.ac.il>
14005         Added missing includes to avoid warnings/errors.
14007         * include/dinput.h, include/lzexpand.h, include/ntdll.h, include/ole2.h, include/shellapi.h, include/vga.h, include/winbase.h, include/wincon.h, include/windef.h, include/windows.h, include/wine/keyboard16.h, include/wine/obj_storage.h, include/wine/shell16.h, include/wine/w32skrnl.h, include/wine/winbase16.h, include/wine/winesound.h, include/wine/winestring.h, include/wine/winuser16.h, include/winnetwk.h, include/winnls.h, include/winnt.h, include/winreg.h, include/wintypes.h, include/winuser.h, include/winver.h:
14008         Michael Veksler <mveksler@techunix.technion.ac.il>
14009         Moved everything out of windows.h.
14011         * graphics/wing.c, if1632/gdi.spec, include/bitmap.h, include/palette.h, include/wingdi.h, objects/palette.c, relay32/gdi32.spec:
14012         Brad Pepers <brad@linuxcanada.com>
14013         WinG fixes.
14015         * controls/menu.c, include/message.h, include/queue.h, windows/dialog.c, windows/message.c, windows/nonclient.c, windows/queue.c, windows/timer.c:
14016         Stephane Lussier <stephane@macadamian.com>
14017         -Fixed MESSAGE functions that were thunking down to 16 bits implementation.
14018         So PeekMessage32, GetMessage32, PostMessage32, PostThreadMessage are fixed
14019         with this patch. Unicode version of those functions is currently only
14020         calling the ASCII version.
14021         -Fixed queue signaling using a new EVENT object in the queue for 32 bits
14022         thread. MsgWaitForMultipleObject has been fixed and is now blocking on the
14023         right EVENT.
14025         * objects/metafile.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
14026         GetMetaFileBitsEx should work in bytes not words.
14028         * include/shlobj.h: Francois Gouget <fgouget@psn.net>
14029         DllGetClassObject should take a REFCLSID not an LPCLSID.
14031         * objects/dib.c, include/global.h, memory/virtual.c:
14032         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14033         Change fault handler 'addr' argument to LPCVOID.
14035         * files/file.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14036         Call VIRTUAL_HandleFault if read/write returns EFAULT.
14038         * dlls/comctl32/treeview.c:
14039         Bertho Stultiens <bertho@panter.soci.aau.dk>
14040         Fix typo to map GetTextExtentPoint to the correct 32A version.
14042         * documentation/debugging, include/peexe.h, include/wincon.h, programs/regtest/regtest.c, relay32/advapi32.spec, windows/x11drv/main.c, dlls/advapi32/security.c:
14043         Marcus Meissner <marcus@jet.franken.de>
14044         Some small bugfixes, added more PE relocation types (for WinCE mostly),
14045         some console prototypes, -dll is useful for winelib too, regtest
14046         compile fixed.
14048         * include/wine/winuser16.h, include/winuser.h, objects/cursoricon.c:
14049         Paul Quinn <paulq@corel.ca>
14050         GetCursorPos is actually a BOOL.
14052         * include/mmsystem.h: Paul Quinn <paulq@corel.ca>
14053         Adrian Thurston <adriant@corel.ca>
14054         More types, C++ protection, and a typo correction for mmsystem.h.
14056         * include/commctrl.h: Zygo Blaxell <uj22kfbc@umail.furryterror.org>
14057         Move the #define of DUMMYUNIONNAME* to before they are used.
14058         Add a definition for DUMMYUNIONNAME (as opposed to DUN1, DUN2...).
14059         Use the correct WINELIB_NAME_AW macro for TVITEM and related names.
14060         Define "TV_ITEM" to agree with you-know-who's documentation.
14062         * dlls/version/info.c:
14063         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14064         NULL is a valid argument as handle for GetFileVersionInfoSize32A.
14066         * include/dinput.h, windows/dinput.c:
14067         Lionel Ulmer <ulmer@directprovider.net>
14068         Added buffered device access for DInput's mouse driver.
14070         * files/file.c: Juergen Schmied <juergen.schmied@metronet.de>
14071         Wrong access on server handle was demanded (GENERIC_READ instead of
14072         GENERIC_WRITE).
14074         * dlls/shell32/shellord.c:
14075         Juergen Schmied <juergen.schmied@metronet.de>
14076         Better implementation (takes strings or res-id's now).
14078         * dlls/version/resource.c:
14079         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14080         Bugfix: NULL pointer check for output parameters.
14082         * dlls/shell32/brsfolder.c:
14083         Zygo Blaxell <uj22kfbc@umail.furryterror.org>
14084         Fixed two pointer/integer mismatch warnings.
14086         * documentation/console: Zygo Blaxell <uj22kfbc@umail.furryterror.org>
14087         Spelling fixes.
14089         * console/xterm.c, win32/console.c:
14090         Zygo Blaxell <uj22kfbc@umail.furryterror.org>
14091         wine_openpty is not properly declared (either missing or mismatched
14092         declarations) in both places where it is used.
14094         * include/wingdi.h, objects/dib.c:
14095         Zygo Blaxell <uj22kfbc@umail.furryterror.org>
14096         Fix types of GetDIBits functions (LPSTR should be LPVOID).
14098         * graphics/x11drv/dib.c:
14099         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
14100         Fixes several problems with SetDIBitsToDevice if xSrc != 0.
14101         Thanks to Ian Schmidt for the logs.
14103         * windows/mdi.c: Francois Boisvert <francois@macadamian.com>
14104         The systems buttons (minimize/restore/close) now appear on the menu
14105         bar of mdi application.
14107         * controls/menu.c: Francois Boisvert <francois@macadamian.com>
14108         Implemented the magic menu items id's used by windows when inserting
14109         the minimize/maximize/close buttons in the menu bar of an application.
14111         * objects/enhmetafile.c: Jason McMullan <jmcc@ontv.com>
14112         Adds support for EMR_STRETCHDIBITS in EMFs.
14114         * programs/avitools/aviplay.c: Marcus Meissner <marcus@jet.franken.de>
14115         Fixed image size and line size, added 8bit color/palette handling.
14117         * tools/bug_report.pl: Adam the Jazz Guy <magicbox@bestweb.net>
14118         Fixed formatting of code
14119         Now changes to directory of program to be run before starting wine
14121         * windows/queue.c, windows/user.c, include/user.h, scheduler/thread.c:
14122         Stephane Lussier <stephane@macadamian.com>
14123         - Cleaned up the message queue when a thread exit (but not the process).
14124         - Modified QUEUE_DeleteMsgQueue to exit gracefully (without crashing Wine) if
14125           queue link list is corrupted.
14127         * multimedia/dsound.c: Ove Kaaven <ovek@arcticnet.no>
14128         Sounds were cut off due to integer overflow. Fixed.
14130         * include/windowsx.h: Paul Quinn <paulq@corel.ca>
14131         Added windowsx.h for Winelib.
14133 Fri Feb  5 17:40:47 1999  Alexandre Julliard  <julliard@winehq.com>
14135         * configure, configure.in, programs/Makefile.in, programs/cmdlgtst/.cvsignore, programs/cmdlgtst/Makefile.in, programs/cmdlgtst/cmdlgr.h, programs/cmdlgtst/cmdlgr.rc, programs/cmdlgtst/cmdlgtst.c:
14136         <ewill@ncal.verio.com>
14137         Added common dialogs test program.
14139         * include/message.h, include/queue.h, include/win.h, include/winpos.h, scheduler/thread.c, windows/focus.c, windows/input.c, windows/message.c, windows/queue.c, windows/win.c, windows/winpos.c:
14140         Noel Borthwick <noel@macadamian.com>
14141         Added management and allocation of the PERQUEUEDATA structure.
14143         * graphics/ddraw.c, graphics/vga.c, include/ddraw.h:
14144         Lionel Ulmer <ulmer@directprovider.net>
14145         - added a dump of the palette creation flags
14146         - changed palette creation code in vga.c to prevent useless error
14147           message
14149         * documentation/wine.man, files/drive.c, wine.ini:
14150         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14151         Use vfat/win95 as default.
14153         * include/vfw.h, multimedia/msvideo.c, programs/avitools/.cvsignore, programs/avitools/Makefile.in, programs/avitools/aviinfo.c, programs/avitools/aviplay.c, relay32/builtin32.c, relay32/msvfw32.spec:
14154         Marcus Meissner <marcus@jet.franken.de>
14155         Updated msvideo / vfw.h, use builtin msvfw32.dll by default, added
14156         aviinfo and aviplay programs.
14158         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
14159         Continued hack to win32/console.c, so that the IDA Pro Disassembler
14160         works again. Needs much more work however.
14162         * ole/storage32.c: Marcus Meissner <marcus@jet.franken.de>
14163         Include objbase.h for CoTaskMem* prototypes (or we get WINAPI
14164         problems).
14166         * ole/storage32.h: Marcus Meissner <marcus@jet.franken.de>
14167         Added missing ULONG to static const OFFSET_xx.
14169 Thu Feb  4 16:45:40 1999  Alexandre Julliard  <julliard@winehq.com>
14171         * documentation/wine.man: James Juran <jrj120@psu.edu>
14172         Various manpage updates, including the incorrect statement about glibc
14173         and clone().
14175         * documentation/debugging: James Juran <jrj120@psu.edu>
14176         Fix pointer to the Windows Disassembler 32.  Thanks to Herbert
14177         Rosmanith <herp@wildsau.idv.uni-linz.ac.at> for suggesting this.
14179         * dlls/msacm32/driver.c:
14180         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14181         Another usage of non-portable functions...
14183         * msdos/dosmem.c:
14184         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14185         Some values of pBiosData added/fixed.
14187         * objects/palette.c, windows/clipboard.c, windows/dce.c, windows/display.c, windows/event.c, windows/keyboard.c, windows/mouse.c, windows/sysmetrics.c, windows/user.c, windows/win.c, windows/winpos.c, controls/desktop.c, controls/widgets.c, debugger/dbg.y, graphics/ddraw.c, graphics/painting.c, graphics/wing.c, include/bitmap.h, include/color.h, include/ddraw.h, include/debug.h, include/debugdefs.h, include/desktop.h, include/display.h, include/main.h, include/options.h, include/ttydrv.h, include/win.h, include/x11drv.h, misc/main.c, objects/bitmap.c, objects/color.c, objects/dc.c, objects/dib.c, objects/gdiobj.c:
14188         Patrik Stridvall <ps@leissner.se>
14189         Moved some more code to the X11 driver.
14191         * windows/ttydrv/Makefile.in, windows/ttydrv/clipboard.c, windows/ttydrv/desktop.c, windows/ttydrv/event.c, windows/ttydrv/init.c, windows/ttydrv/keyboard.c, windows/ttydrv/main.c, windows/ttydrv/monitor.c, windows/ttydrv/mouse.c, windows/ttydrv/wnd.c:
14192         Patrik Stridvall <ps@leissner.se>
14193         TTY driver changes.
14195         * windows/x11drv/Makefile.in, windows/x11drv/clipboard.c, windows/x11drv/desktop.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/keyboard.c, windows/x11drv/main.c, windows/x11drv/monitor.c, windows/x11drv/mouse.c, windows/x11drv/wnd.c, graphics/x11drv/bitblt.c, graphics/x11drv/bitmap.c, graphics/x11drv/brush.c, graphics/x11drv/clipping.c, graphics/x11drv/dib.c, graphics/x11drv/graphics.c, graphics/x11drv/init.c, graphics/x11drv/objects.c, graphics/x11drv/oembitmap.c, graphics/x11drv/pen.c, graphics/x11drv/text.c, graphics/x11drv/xfont.c:
14196         Patrik Stridvall <ps@leissner.se>
14197         X11 driver changes.
14199         * 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, include/ts_xf86dga.h, include/ts_xf86vmode.h, include/ts_xlib.h, include/ts_xpm.h, include/ts_xresource.h, include/ts_xshm.h, include/ts_xutil.h, tools/make_X11wrappers:
14200         Patrik Stridvall <ps@leissner.se>
14201         Non-X11 compile fix for generated code.
14203         * include/monitor.h, windows/multimon.c:
14204         Patrik Stridvall <ps@leissner.se>
14205         Implementation of the new monitor abstraction.
14207         * graphics/ttydrv/.cvsignore, graphics/ttydrv/Makefile.in, graphics/ttydrv/init.c, Makefile.in:
14208         Patrik Stridvall <ps@leissner.se>
14209         New TTY driver for GDI.
14211         * configure, configure.in, include/acconfig.h, include/config.h.in:
14212         Patrik Stridvall <ps@leissner.se>
14213         - Added the graphics/ttydrv directory.
14214         - Don't search for reentrant X when X doesn't exist.
14215         - Added config options HAVE_LIBXXPM
14216         - Added checks if the header files also exist for some libraries
14218 Tue Feb  2 16:14:23 1999  Alexandre Julliard  <julliard@winehq.com>
14220         * dlls/shell32/brsfolder.c, graphics/d3dcommon.c, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, include/interfaces.h, ole/safearray.c, ole/stg_bigblockfile.c, ole/stg_stream.c, ole/storage32.c:
14221         Francois Gouget <fgouget@psn.net>
14222         Replaced references to interfaces.h by wine/obj_xxx.h headers instead
14223         since these headers already provide the necessary definitions.
14225         * include/msdos.h, msdos/Attic/cdrom.c, msdos/Makefile.in, msdos/int2f.c:
14226         Eric Pouech <Eric.Pouech@wanadoo.fr>
14227         Removed references to obsolete msdos/cdrom.c file.
14228         Make use of new Wine internal CD ROM interface.
14230         * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
14231         Fixed tracks indexing in mcicda.c
14232         Make use of new Wine internal CD ROM interface.
14234         * include/cdrom.h, misc/Makefile.in, misc/cdrom.c:
14235         Eric Pouech <Eric.Pouech@wanadoo.fr>
14236         New Wine internal interface for handling CD Rom (especially audio CD
14237         ROM).
14239         * include/commctrl.h, include/treeview.h, dlls/comctl32/treeview.c:
14240         Zygo Blaxell <uj22kfbc@umail.furryterror.org>
14241         Change a few types to match you-know-who's declarations.
14242         HTREEITEM is a struct _TREEITEM FAR*
14243         GetDIBits passes a LPVOID for the bitmap data, not LPSTR.
14244         Adjustment of Wine C code to match the new types included.
14246         * misc/lzexpand.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
14247         Fixed GET_LZ_STATE macro.
14249         * graphics/d3d_private.h, graphics/d3dtexture.c, graphics/ddraw.c, include/d3d.h, include/ddraw.h:
14250         Lionel Ulmer <ulmer@directprovider.net>
14251         Added stubs for new DirectDraw4 and DirectDrawSurface4 methods.
14253         * tools/wrc/wrc.h, tools/wrc/wrctypes.h, tools/wrc/CHANGES:
14254         Albert den Haan <albertd@corel.ca>
14255         Fixed wrong order of res_ico and res_bmp which must be in RT_xxx order.
14257         * dlls/version/resource.c: Marcus Meissner <marcus@jet.franken.de>
14258         reslen could be used uninitialised in GetFileResource32 (fixes some
14259         strange VerQueryValue crashes).
14261         * ole/nls/sve.nls: Jan D. <Jan.Djarv@mbox200.swipnet.se>
14262         Added definition for LOCALE_SGROUPING, LOCALE_SMONGROUPING and
14263         LOCALE_IINTLCURRDIGITS.
14265         * memory/selector.c, relay32/kernel32.spec:
14266         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14267         Bugfix: Preserve EAX in UnMapSLFixArray().
14269         * dlls/comctl32/comctl32undoc.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
14270         Fixes little pointer bug in DPA_DeletePtr().
14272         * if1632/kernel.spec, memory/string.c:
14273         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14274         Implemented KERNEL.434 (UnicodeToAnsi).
14276         * files/drive.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
14277         GetDiskFreeSpaceEx32A can get null pointers and still not crash.
14279         * graphics/psdrv/driver.c:
14280         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
14281         Clear up args to PSDRV_AdvancedSetupDialog.
14283         * graphics/x11drv/xfont.c:
14284         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
14285         Reduce MAX_FONT_SIZE to 1000.
14287 Sun Jan 31 19:04:31 1999  Alexandre Julliard  <julliard@winehq.com>
14289         * win32/console.c, include/server.h, include/server/object.h, include/server/request.h, loader/ne/module.c, relay32/kernel32.spec, server/console.c, server/request.c, server/trace.c:
14290         Added input queue to server-side console object,
14291         read/write_console_input requests, and use them for
14292         Read/WriteConsoleInput.
14294         * scheduler/client.c: Geoff Clare <gwc@root.co.uk>
14295         Fix to allow for recvmsg() returning less data than is needed.
14297         * include/toolhelp.h, include/windows.h:
14298         Attempt at fixing the MAX_PATH multiple definition problem.
14300 ----------------------------------------------------------------
14301 Sun Jan 31 10:13:44 1999  Alexandre Julliard  <julliard@winehq.com>
14303         * include/module.h, loader/ne/resource.c:
14304         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14305         Modify NE_FindTypeSection and NE_FindResourceFromType so as to be
14306         usable by the VERSION code.
14308         * include/pe_image.h, loader/pe_resource.c:
14309         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14310         Added GetResDirEntryA for use by the VERSION code.
14312         * misc/Attic/ver.c, misc/Makefile.in:
14313         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14314         Removed old VER.DLL code.
14316         * dlls/version/.cvsignore, dlls/version/Makefile.in, dlls/version/info.c, dlls/version/install.c, dlls/version/resource.c:
14317         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14318         Implementation of VERSION.DLL. Based on old misc/ver.c.
14319         - Accessing PE version info resources should work correctly now.
14320         - Fixed memory leaks.
14321         - Clean separation of 16- and 32-bit parts.
14322         - Minor bugfixes.
14324         * Makefile.in, configure, configure.in, dlls/Makefile.in:
14325         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14326         Add new subdirectories dlls/ver and dlls/version.
14328         * if1632/ver.spec, dlls/ver/.cvsignore, dlls/ver/Makefile.in, dlls/ver/ver16.c, include/ver.h:
14329         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14330         Implementation of VER.DLL. Thunks up to VERSION.DLL.
14332         * misc/lstr.c: Pascal Cuoq <cuoq@visan.inria.fr>
14333         IsCharAlpha32A: use look-up table from ole2nls.c.
14335         * ole/ole2nls.c: Pascal Cuoq <cuoq@visan.inria.fr>
14336         LCMapString32A: Implemented flags NORM_IGNORENONSPACE and
14337         NORM_IGNORESYMBOLS in string mapping mode.
14339         * windows/x11drv/wnd.c: NF Stevens <norman@arcady.u-net.com>
14340         Create X window for child windows reparented to be top level windows.
14342         * dlls/shell32/shellpath.c, include/shell.h, relay32/shell32.spec:
14343         Juergen Schmied <juergen.schmied@metronet.de>
14344         Stub for PathQualify32[A|W].
14346         * graphics/d3dmaterial.c, graphics/ddraw.c:
14347         Lionel Ulmer <ulmer@directprovider.net>
14348         Babrian Viktor <v@ulysses.sch.bme.hu>
14349         - added support for ColorKeying during blits
14350         - miscellaneous fixes
14352         * dlls/ntdll/rtl.c, include/ntdll.h, relay32/ntdll.spec:
14353         Alex Korobka <korobka@galaxy.ams.sunysb.edu>
14354         Added an implementation of MRSW locks.
14356         * msdos/int21.c: Ove Kaaven <ovek@arcticnet.no>
14357         Added missing includes (the PSP handling was incorrect, as the
14358         MZ_SUPPORTED definition was missing). Added a simple handler for
14359         direct console input, which needs to be improved.
14361         * console/tty.c: Ove Kaaven <ovek@arcticnet.no>
14362         Small fix.
14364         * scheduler/synchro.c: Juergen Schmied <juergen.schmied@metronet.de>
14365         List handles WaitForMultipleObjects is waiting for when running with
14366         -debugmsg +win32.
14368         * dlls/advapi32/security.c, relay32/advapi32.spec:
14369         Juergen Schmied <juergen.schmied@metronet.de>
14370         Stub for GetSecurityDescriptorControl.
14372         * relay32/user32.spec, windows/user.c:
14373         Juergen Schmied <juergen.schmied@metronet.de>
14374         Stub for GetUserObjectSecurity.
14376         * misc/registry.c: Juergen Schmied <juergen.schmied@metronet.de>
14377         Implemented handling of REG_MULTI_SZ and fixed small bug in
14378         RegSetValue.
14380         * windows/winproc.c: Juergen Schmied <juergen.schmied@metronet.de>
14381         Every EM_GETLINE send between a 32W to a 32A window returned
14382         incomplete values before (the first 2 chars where cut away).
14384         * windows/winpos.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
14385         Fix typo in SetWindowPos32.
14387 Sat Jan 30 15:55:28 1999  Alexandre Julliard  <julliard@winehq.com>
14389         * include/builtin32.h, misc/main.c, relay32/builtin32.c:
14390         Marcus Meissner <marcus@jet.franken.de>
14391         Enable/disable relay32 debugging on the fly. Start app with
14392         -debugmsg +relay or warn+relay. Suggested by Juergen Schmied.
14394         * configure, configure.in, graphics/d3d_private.h, include/acconfig.h, include/config.h.in, include/d3d.h, include/wine_gl.h:
14395         Lionel Ulmer <ulmer@directprovider.net>
14396         Added check for the presence of Mesa's header files.
14398         * multimedia/audio.c, multimedia/dsound.c:
14399         Andreas Mohr <a.mohr@mailto.de>
14400         Fixed error messages.
14402         * misc/commdlg.c: Bernd Herd <herd@herdsoft.com>
14403         Use proper 16->32 message conversion in FILEDLG_CallWindowProc.
14405         * windows/x11drv/wnd.c: Bernd Herd <herd@herdsoft.com>
14406         SetParent should link the window at the start of the list.
14408         * windows/winpos.c: NF Stevens <norman@arcady.u-net.com>
14409         In Window SetWindowPos with SWP_HIDEWINDOW does not remove
14410         the focus from the focus window; ShowWindow with SW_HIDE does.
14411         So move the code that does this from SetWindowPos to ShowWindow.
14413         * memory/string.c: Marcus Meissner <marcus@jet.franken.de>
14414         Check for NULL in lstrcpy* (Windows uses real exception handlers).
14416         * Makefile.in: James Juran <juran@cse.psu.edu>
14417         Don't install include files when --disable-lib is used.
14419         * relay32/winmm.spec:
14420         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14421         Added WINMM joy* .spec entries.
14423         * msdos/xms.c: Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14424         XMS fix.
14426         * msdos/dosmem.c:
14427         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14428         Spelling fix.
14430         * README: Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14431         Doc update.
14433         * include/miscemu.h, msdos/int10.c, msdos/int21.c, msdos/interrupts.c:
14434         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14435         Some interrupt enhancements.
14437         * msdos/ioports.c:
14438         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14439         implemented timer latching
14440         trace message fix
14441         temporary "fix" for Linux's coarse timer resolution
14443         * if1632/compobj.spec, include/objbase.h, include/winerror.h, ole/compobj.c, ole/ole2.c, relay32/ole32.spec:
14444         Francis Beaudet <francis@macadamian.com>
14445         Implemented the startup-shutdown mechanism for the COM subsystem.
14446         Implemented the Class object registration mechanism.
14448         * programs/clock/.cvsignore, programs/notepad/.cvsignore: Added Fi.s
14450         * include/wine/obj_storage.h, ole/Makefile.in, ole/stg_bigblockfile.c, ole/stg_stream.c, ole/storage.c, ole/storage32.c, ole/storage32.h, relay32/ole32.spec:
14451         Francis Beaudet <francis@macadamian.com>
14452         Added an implementation of the OLE structured storage. The main
14453         features of this implementation are:
14454         - Can open storages created in Windows.
14455         - Can create new storages that the windows libraries can
14456           read.
14457         - Provides all the functionality to create/open/remove and
14458           rename streams and storages inside the main storage object.
14460         * include/miscemu.h, miscemu/main.c, graphics/ddraw.c:
14461         Ove Kaaven <ovek@arcticnet.no>
14462         Defined RESTORE_SIGNALS by default and call SIGNAL_EmulatorInit
14463         through a function pointer instead. Added a few traces. Fixed the
14464         "Memory corruption !" message in DGA mode. Commented out an
14465         unnecessary TSXF86VidModeSetViewPort that caused my X server to
14466         act up, relying on TSXF86DGASetViewPort instead.
14468         * graphics/psdrv/text.c, msdos/int2f.c, programs/winhelp/hlp2sgml.c, dlls/comctl32/comctl32undoc.c, files/file.c:
14469         Marcus Meissner <marcus@jet.franken.de>
14470         Some more warnings and bugs fixed.
14472         * dlls/comctl32/tab.c, include/tab.h: Alex Priem <alexp@sci.kun.nl>
14473         Small update.
14475         * include/commctrl.h, include/treeview.h, dlls/comctl32/treeview.c, dlls/shell32/brsfolder.c:
14476         Alex Priem <alexp@sci.kun.nl>
14477         - The usual bugfixes.
14478         - Better unicode support (only defines, currently)
14479         - Drag & drop implemented.
14480         - LPSTR_TEXTCALLBACK should work now.
14481         - First start at custom draw code.
14483         * windows/x11drv/event.c: Francis Beaudet <francis@macadamian.com>
14484         Make sure that the keystate received by the WM_XBUTTONUP and
14485         WM_XBUTTONDOWN matches the message. In X, the keystate is changed
14486         after the message is processed.  In Windows, it is changed before.
14488         * dlls/advapi32/security.c, dlls/advapi32/service.c:
14489         Matthew Becker <mbecker@glasscity.net>
14490         Doc updates.
14492         * win32/file.c: Berend Reitsma <berend at asset-control.com>
14493         SetFileAttributes32A changed to make file writeable when
14494         FILE_ATTRIBUTE_READONLY is not set.
14496         * console/interface.c, console/ncurses.c, include/console.h, msdos/int10.c:
14497         Joseph Pranevich <jpranevich@lycos.com>
14498         Preliminary color console support.
14500         * documentation/languages, programs/clock/ChangeLog, programs/clock/Fi.rc, programs/clock/Makefile.in, programs/clock/main.c, programs/notepad/ChangeLog, programs/notepad/Fi.rc, programs/notepad/Makefile.in, programs/notepad/main.c, resources/sysres_Fi.rc:
14501         Jukka-Pekka Iivonen <jiivonen@poseidon.cs.hut.fi>
14502         Updated Finnish language support.
14504 Fri Jan 29 15:12:11 1999  Alexandre Julliard  <julliard@winehq.com>
14506         * include/vfw.h, include/winerror.h, include/wintypes.h, multimedia/msvideo.c, ole/guid.c, programs/Makefile.in, programs/avitools/.cvsignore, programs/avitools/Makefile.in, programs/avitools/icinfo.c, relay32/msvfw32.spec, configure, configure.in, include/debug.h, include/debugdefs.h, include/oleauto.h:
14507         Marcus Meissner <marcus@jet.franken.de>
14508         Updated msvideo. New program 'icinfo [-about] [-configure]' to
14509         query installed (win32) compressors. Started on AVIFILE support.
14511 Thu Jan 28 17:56:14 1999  Alexandre Julliard  <julliard@winehq.com>
14513         * include/wine/obj_misc.h, include/wine/obj_moniker.h, include/wine/obj_storage.h, ole/Makefile.in, ole/bindctx.c, ole/filemoniker.c, ole/itemmoniker.c, ole/moniker.c, ole/ole2.c:
14514         Noomen Hamza <noomen@macadamian.com>
14515         Added a stub implementation for FileMoniker, ItemMoniker and BindCtx
14516         classes.
14518         * debugger/dbg.y, debugger/debug.l:
14519         NF Stevens <norman@arcady.u-net.com>
14520         Implemented the symbolfile command (as mentioned by the help
14521         command). This reads a symbol file in the format generated by nm.
14523         * multimedia/dplay.c: Peter Hunnisett <hunnise@nortelnetworks.com>
14524         - Small bug fix.
14525         - Added direct play ascii interfaces.
14526         - Fixed up the QueryInterface for dplay and dplaylobby to handle all cases.
14528         * memory/virtual.c: Marcus Meissner <marcus@jet.franken.de>
14529         Fixed FILE_VIEW struct initialisation.
14531         * include/dosexe.h:
14532         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14533         Fixed non-i386 compile.
14535         * graphics/vga.c, msdos/dpmi.c, multimedia/dplay.c, multimedia/mmio.c, dlls/comctl32/animate.c, dlls/comctl32/comboex.c, dlls/comctl32/comctl32undoc.c, dlls/comctl32/hotkey.c, dlls/comctl32/ipaddress.c, dlls/comctl32/listview.c, dlls/comctl32/pager.c, dlls/comctl32/propsheet.c, dlls/comctl32/rebar.c, dlls/comctl32/tab.c, dlls/comctl32/toolbar.c, dlls/comctl32/treeview.c:
14536         James Juran <jrj120@psu.edu>
14537         Commented out unused variables to prevent needless compiler warnings.
14539         * include/ddeml.h, misc/ddeml.c:
14540         Keith Matthews <keith_m@sweeney.demon.co.uk>
14541         1st cut implementation of DdeInitialize32W and supporting code.
14543         * dlls/advapi32/advapi.c, dlls/advapi32/eventlog.c, dlls/advapi32/security.c, dlls/advapi32/service.c:
14544         Matthew Becker <mbecker@glasscity.net>
14545         Documentation standardizations.
14547         * include/queue.h, windows/hook.c, windows/message.c, windows/queue.c, windows/win.c, windows/winpos.c:
14548         Stephane Lussier <stephane@macadamian.com>
14549         - Made the message queue access to be thread safe. (Using two new
14550           functions to access the message queue, QUEUE_Lock(), QUEUE_Unlock()
14551           instead of GlobalLock16()).
14552         - Fixed QUEUE_DumpQueue (used by "info queue <handle>" with the
14553           wine-debugger).
14555         * multimedia/dsound.c, multimedia/mmsystem.c, objects/text.c, windows/dialog.c, windows/dinput.c, windows/mdi.c, windows/msgbox.c, windows/win.c, windows/winproc.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, graphics/d3dmaterial.c, graphics/metafiledrv/init.c, if1632/relay.c, include/wincon.h, loader/resource.c, misc/imm.c, misc/lzexpand.c, msdos/int21.c, dlls/comctl32/propsheet.c, dlls/ntdll/rtl.c:
14556         Marcus Meissner <marcus@jet.franken.de>
14557         Fixed a lot of warnings for possible problems.
14559         * misc/comm.c: Herbert Rosmanith <herp@wildsau.idv.uni-linz.ac.at>
14560         Fixed typo.
14562         * tools/bug_report.pl: Adam the Jazz Guy <magicbox@bestweb.net>
14563         Fixed various bugs.
14564         Made newbie mode easier.
14566         * objects/cursoricon.c, dlls/comctl32/imagelist.c, if1632/user.spec, include/wine/winuser16.h, include/winuser.h:
14567         Marcus Meissner <marcus@jet.franken.de>
14568         Fixed GetIconInfo16 (.spec,ICONINFO struct is different for Win16/Win32).
14570         * console/ncurses.c: Marcus Meissner <marcus@jet.franken.de>
14571         Switch ncurses.h/curses.h include (works better for FreeBSD).
14573         * windows/driver.c: Marcus Meissner <marcus@jet.franken.de>
14574         Fixed loading of win32 drivers.
14576 Tue Jan 26 17:29:49 1999  Alexandre Julliard  <julliard@winehq.com>
14578         * files/profile.c: Don't abort PROFILE_GetSection on empty keys.
14580         * dlls/msacm32/internal.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
14581         Temporary #if 0'ed part for builtin modules in MSACM to make it
14582         compile with the patch for loadable drivers.
14584         * include/driver.h, relay32/winmm.spec, windows/driver.c:
14585         Eric Pouech <Eric.Pouech@wanadoo.fr>
14586         Added support for loading drivers in Wine.
14588         * tools/bug_report.pl: Adam the Jazz Guy <magicbox@bestweb.net>
14589         A perl script to produce a bug report with little hassle.
14591         * graphics/dispdib.c: Ove Kaaven <ovek@arcticnet.no>
14592         Added (dummy) Death/Resurrection calls to DisplayDib.
14594         * misc/lzexpand.c: Marcus Meissner <marcus@jet.franken.de>
14595         Allocate a DOS handle if we open a normal file with LZOpenFile16.
14597         * graphics/ddraw.c, include/ddraw.h:
14598         Lionel Ulmer <ulmer@directprovider.net>
14599         - added depth conversion routines (only 8bpp -> 16 bpp for now)
14600         - added support of DEPTH_FILL for Blits
14601         - added some flags in GetCaps to get some games working
14603         * if1632/user.spec, include/wine/winuser16.h, include/winuser.h, objects/cursoricon.c, relay32/user32.spec, dlls/comctl32/imagelist.c:
14604         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14605         Implemented GetIconInfo16 -> call to GetIconInfo32.
14607         * scheduler/client.c: Commented out EXEC_SERVER
14609         * dlls/comctl32/draglist.c: Marcus Meissner <marcus@jet.franken.de>
14610         3 missing WINAPI added.
14612         * dlls/shell32/enumidlist.c, dlls/shell32/iconcache.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, dlls/shell32/shellord.c, dlls/shell32/shlfolder.c, dlls/shell32/shres.rc:
14613         Juergen Schmied <juergen.schmied@metronet.de>
14614         Small fixes.
14616         * dlls/comctl32/treeview.c, include/commctrl.h:
14617         Juergen Schmied <juergen.schmied@metronet.de>
14618         Changed some treeview related definitions.
14620         * dlls/shell32/Makefile.in, dlls/shell32/brsfolder.c:
14621         Juergen Schmied <juergen.schmied@metronet.de>
14622         Implemented SHBrowseForFolder() dialog.
14624         * debugger/msc.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
14625         Fixed typo in type (removed quite a few warnings).
14627         * dlls/advapi32/security.c, relay32/advapi32.spec:
14628         Marcus Meissner <marcus@jet.franken.de>
14629         Added GetSecurityDescriptorOwner/Group, RevertToSelf stubs.
14630         Return NULL from OpenThreadToken.
14632         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
14633         Do not endlessly loop in CONSOLE_get_input after EOF.
14634         Create xterm even if stdin is not a terminalhandle.
14635         SetConsoleCursorPosition: Only make complex console on row change,
14636         ignore interline positioning (so the cygwin cmdline tools do not
14637         create xterms unnecessary)
14639         * misc/printdrv.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
14640         Make sure DrvGetPrinterData returns the correct data if cbData <= 1
14642         * include/queue.h, windows/message.c, windows/queue.c, windows/win.c:
14643         Stephane Lussier <stephane@macadamian.com>
14644         - Changing MESSAGEQUEUE structure according to Ulrich proposition.
14645         - One message queue for every thread needing it.
14646         - Messages in the message queue are now stored in a linked list
14647         - Messages are allocated in the system heap.
14648         - Messages in the message queue are 32 bits (MSG32).
14649         - All read/write operations regarding messages in the message queue are
14650           thread safe.
14652 Sun Jan 24 19:14:58 1999  Alexandre Julliard  <julliard@winehq.com>
14654         * dlls/comctl32/commctrl.c, dlls/comctl32/flatsb.c, dlls/comctl32/imagelist.c, dlls/comctl32/listview.c, dlls/comctl32/propsheet.c, dlls/comctl32/status.c, include/flatsb.h:
14655         Eric Kohl <ekohl@abo.rhein-zeitung.de>
14656         Fixed several bugs and typos.
14658         * documentation/common_controls: Eric Kohl <ekohl@abo.rhein-zeitung.de>
14659         Updates and fixes.
14661         * dlls/comctl32/Makefile.in, dlls/comctl32/draglist.c, include/commctrl.h, relay32/comctl32.spec:
14662         Eric Kohl <ekohl@abo.rhein-zeitung.de>
14663         New drag list control.
14665         * dlls/comctl32/comctl32undoc.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
14666         Fixed pointer bugs in DPA_InsertPtr() and DPA_DeletePtr().
14668         * dlls/comctl32/progress.c, include/progress.h:
14669         Eric Kohl <ekohl@abo.rhein-zeitung.de>
14670         Added WM_[G/S]ETFONT handling.
14672         * dlls/comctl32/pager.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
14673         Added WM_COMMAND and WM_NOTIFY handling.
14675         * dlls/comctl32/tooltips.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
14676         Fixed redraw bug for tracking tooltips.
14678         * dlls/comctl32/rebar.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
14679         Added some messages to the rebar control.
14681         * multimedia/mcicda.c: Geoff Clare <gwc@root.co.uk>
14682         Several internal functions won't compile when the conditional
14683         #if defined(linux) || defined(__FreeBSD__) || defined(__NetBSD__)
14684         comes out false.  I moved the conditionals around so that
14685         the file would at least compile.  Not sure if it does the
14686         right thing on non-linux/FreeBSD/NetBSD systems.
14688         * misc/toolhelp.c: Geoff Clare <gwc@root.co.uk>
14689         Moved process.h higher up the include list, to avoid a problem with
14690         "ERR" being redefined in sys/regset.h.
14692         * misc/comm.c: Geoff Clare <gwc@root.co.uk>
14693         The B57600 and B115200 symbols are not defined in Unixware.
14695         * controls/listbox.c: NF Stevens <norman@arcady.u-net.com>
14696         Change SW_??? options on list box scrolling so that they match what
14697         Windows does.
14699         * loader/dos/dosvm.c: Ove Kaaven <ovek@arcticnet.no>
14700         Moved DOS handle allocation slightly, to fix potential memory
14701         leaks and lost handles. Also removed some useless init code.
14703         * graphics/psdrv/afm.c, graphics/psdrv/text.c, if1632/dummy.c, if1632/gdi.spec, misc/printdrv.c:
14704         Nick Holloway <Nick.Holloway@alfie.demon.co.uk>
14705         Internal PostScript printer driver improvements.
14707         * controls/edit.c: Gerard Patel <G.Patel@wanadoo.fr>
14708         Changed EDIT_EM_CharFromPos to return line number.
14710         * windows/x11drv/wnd.c: Marcus Meissner <marcus@jet.franken.de>
14711         Free the private data pointer, THEN set it to NULL.
14713         * windows/message.c: Marcus Meissner <marcus@jet.franken.de>
14714         Missing WINAPI.
14716         * include/oleauto.h, include/winerror.h, ole/Makefile.in, ole/safearray.c, relay32/oleaut32.spec:
14717         Sylvain St.Germain <sylvain@macadamian.com>
14718         Implementation of the SafeArray family functions.
14720         * include/windows.h, relay32/kernel32.spec, scheduler/thread.c:
14721         Guy Albertelli <galberte@neo.lrun.com>
14722         Added stub for SetThreadLocale.
14724         * objects/text.c: Guy Albertelli <galberte@neo.lrun.com>
14725         Finished GetTextCharsetInfo routine.
14727         * ole/nls/enu.nls, ole/ole2nls.c:
14728         Guy Albertelli <galberte@neo.lrun.com>
14729         Fixed FIXME in EnumTimeFormats32W
14730         Added support for FONTSIGNATURE in GetLocaleInfo32A and updated
14731         GetLocaleInfo32W.
14733         * documentation/internal-dll, documentation/shell32, documentation/wine.man:
14734         Pascal Cuoq <Pascal.Cuoq@inria.fr>
14735         Fixed typos.
14737         * debugger/msc.c: Sergey Turchanov <turchanov@usa.net>
14738         Fixed source line matching for functions in DEBUG_ProcessCoffDebug;
14739         searching for DBG and PDB files.
14741         * debugger/hash.c: Sergey Turchanov <turchanov@usa.net>
14742         Fix for files which do not contain exports (fg, EXE) to get processed
14743         for debug information.
14745         * if1632/kernel.spec, if1632/relay.c, if1632/thunk.c, tools/build.c:
14746         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14747         Implemented KERNEL.621 (CBClientThunkSLEx).
14749         * debugger/dbg.y, debugger/debug.l, debugger/info.c, include/main.h, misc/main.c:
14750         Marcus Meissner <marcus@jet.franken.de>
14751         Allow switching off/on of debugmsgs in the debugger.
14753         * loader/main.c, miscemu/instr.c, msdos/dosmem.c, msdos/int15.c, include/miscemu.h:
14754         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14755         Implemented Int 0x15/0xc0: BIOS - GET CONFIG and some other BIOS
14756         data.
14758 Sat Jan 23 14:15:17 1999  Alexandre Julliard  <julliard@winehq.com>
14760         * graphics/painting.c, if1632/user.spec, include/wine/winuser16.h, loader/pe_image.c, misc/lstr.c, windows/hook.c, windows/message.c:
14761         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
14762         Implemented WIN16_CallMsgFilter32, WIN16_DispatchMessage32,
14763         DrawAnimatedRects16 (stub), FormatMessage16, WIN16_GetMessage32,
14764         WIN16_PeekMessage32 and WIN16_TranslateMessage32.
14766         * dlls/shell32/Makefile.in, dlls/shell32/classes.c, dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, dlls/shell32/enumidlist.c, dlls/shell32/folders.c, dlls/shell32/iconcache.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, dlls/shell32/shellguid.c, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, include/interfaces.h, include/shlguid.h, include/shlobj.h, include/windows.h, misc/shell.c:
14767         Juergen Schmied <juergen.schmied@metronet.de>
14768         - some fixes, cleaned up includes, fixed leaks
14769         - clean DllReferenceCount, better DllMain()
14770         - dynamically linking LookupIconIdFromDirectoryEx32 and
14771           CreateIconFromResourceEx32 to USER32
14772         - moved guid's instances to new file shellguid.c
14773         - implemented  ShellExecuteEx32W
14775         * ole/Makefile.in, ole/compobj.c, ole/guid.c:
14776         Juergen Schmied <juergen.schmied@metronet.de>
14777         Moved the instance creation of GUID's to a new file.
14778         Size of compobj.o goes down to 1/3; should prevent more sig11's.
14780         * include/initguid.h: Juergen Schmied <juergen.schmied@metronet.de>
14781         New file to instantiate GUID's ms-like.
14783         * windows/x11drv/wnd.c: Marcus Meissner <marcus@jet.franken.de>
14784         Set private data struct to NULL to expose problems in other code
14785         better. Fixes the XUnmapWindow problems reported by replacing them
14786         with NULL ptr dereferences.
14788         * documentation/debug-msgs, documentation/debugging, documentation/internal-dll, documentation/ioport-trace-hints, documentation/wine_os2:
14789         Zygo Blaxell <uj22kfbc@umail.furryterror.org>
14790         Fixed typos.
14792         * files/file.c, include/file.h, loader/dos/dosvm.c:
14793         Marcus Meissner <marcus@jet.franken.de>
14794         DOS programs use handles 0-4 without opening/closing any of those
14795         handles first. Split up Init from AllocDosHandle and call it from
14796         the DOSVM.
14798         * Makefile.in: Marcus Meissner <marcus@jet.franken.de>
14799         Remove configure.in->configure rule (we might not have autoconf).
14801         * configure, configure.in: Ove Kaaven <ovek@arcticnet.no>
14802         Added "user-friendly" warning for missing X.
14804         * include/ole.h: Fixed GetObject macro problem.
14806         * documentation/status/direct3D:
14807         Lionel Ulmer <ulmer@directprovider.net>
14808         - updated documentation to be in sync with current code
14810         * graphics/d3dmaterial.c, graphics/d3dviewport.c:
14811         Lionel Ulmer <ulmer@directprovider.net>
14812         - various warning and bug fixes
14814         * graphics/d3ddevices.c, graphics/d3dtexture.c:
14815         Lionel Ulmer <ulmer@directprovider.net>
14816         - added more texture formats using OpenGL's packed pixel formats
14818         * graphics/d3dexecutebuffer.c, include/d3d.h:
14819         Lionel Ulmer <ulmer@directprovider.net>
14820         - better support for ExecuteBuffers
14822         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
14823         - corrected bug in Z Buffer allocation
14824         - put VIDEOMEMORY flag for all primary surfaces
14825         - put something in a surface after a ReleaseDC
14827         * misc/printdrv.c: Morten Welinder <terra@diku.dk>
14828         Missing WINAPI.
14830         * controls/static.c: Niclas Karlsson <nkarlsso@ra.abo.fi>
14831         Removed DT_SINGLELINE and DT_NOCLIP styles for SS_LEFTNOWORDWRAP.
14833         * objects/enhmetafile.c: Marcus Meissner <marcus@jet.franken.de>
14834         Check opened enhmetafile for magic values.
14836         * include/dsound.h, multimedia/dsound.c: Rob Riggs <rriggs@tesser.com>
14837         Fixed duplicate sound buffer handling. Updated status.
14839         * misc/registry.c: Juergen Schmied <juergen.schmied@metronet.de>
14840         New functions  lmemcpynAtoW and  lmemcpynWtoA for converting
14841         REG_MULTI_SZ (including \0x00)
14842         Better debug output for REG_BINARY and REG_MULTI_SZ
14843         Rewritten RegQueryValueEx32[A|W]
14845         * objects/palette.c: Juergen Schmied <juergen.schmied@metronet.de>
14846         Implemented CreateHalftonePalette.
14847         Fixed 3 crashes (1 real, 2 potential).
14849         * dlls/shell32/iconcache.c, if1632/shell.spec, include/shell.h, misc/shell.c:
14850         Marcus Meissner <marcus@jet.franken.de>
14851         Implemented ExtractIconEx16, added some consts to ExtractIconEx*.
14853         * ole/ole2.c, ole/olecli.c, relay32/ole32.spec, include/winerror.h:
14854         Sylvain St.Germain <sylvain@macadamian.com>
14855         DoDragDrop and OleIsCurrentClipboard stub implementation.
14857         * ole/typelib.c: Francis Beaudet <francis@macadamian.com>
14858         Make LoadTypeLib stub return failure instead of success.
14860 Fri Jan 22 17:09:46 1999  Alexandre Julliard  <julliard@winehq.com>
14862         * documentation/accelerators, include/winuser.h, loader/resource.c, windows/input.c:
14863         Marcus Meissner <marcus@jet.franken.de>
14864         Fixed accelerator handling. ACCEL16 used internal, ACCEL32 for Win32
14865         API, PE_ACCEL for PE Accelerators. See documentation/accelerators.
14867 Thu Jan 21 14:05:11 1999  Alexandre Julliard  <julliard@winehq.com>
14869         * include/ddeml.h, misc/ddeml.c, relay32/user32.spec:
14870         Francis Beaudet <francis@macadamian.com>
14871         There were two copies of the DdeCmpStringHandles (A and W) and that
14872         API does not have 2 versions. Removed the extra version.
14874 Wed Jan 20 14:54:01 1999  Alexandre Julliard  <julliard@winehq.com>
14876         * graphics/x11drv/xfont.c: Pablo Saratxaga <pablo.sarachaga@ping.be>
14877         Small patch.
14879         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
14880         Win32 console needs SYNCHRONIZE access.
14882         * configure, configure.in, console/ncurses.c, debugger/stabs.c, include/config.h.in, include/console.h, misc/port.c:
14883         Marcus Meissner <marcus@jet.franken.de>
14884         autoconf: added checks for libio.h, elf.h, curses.h,ncurses.h and
14885         fixed includers.
14887         * ole/ole2nls.c: Marcus Meissner <marcus@jet.franken.de>
14888         LCMapStringA: if dstlen is insufficient, return
14889         ERROR_INSUFFICIENT_BUFFER (verified).
14891         * objects/enhmetafile.c, relay32/gdi32.spec:
14892         Marcus Meissner <marcus@jet.franken.de>
14893         Some small fixes to enhmetafiles.
14895         * controls/listbox.c: Marcus Meissner <marcus@jet.franken.de>
14896         Do not call ownerdraw for invalid items (empty focusrects).
14897         Fixes Eudora 16bit empty Inbox problem.
14899         * windows/nonclient.c: Noomen Hamza <noomen@macadamian.com>
14900         Fixed the NC_DrawMaxButton95 and NC_DrawMinButton95 functions. Rewrote
14901         these functions with the same logic as the NC_DrawCloseButton function.
14903         * windows/win.c: Noel Borthwick <noel@macadamian.com>
14904         Reparenting a window with SetParent in Windows should cause the child
14905         window being re-parented to be moved up to the topmost in the z-order,
14906         and WM_WINDOWPOSCHANGING and WM_WINDOWPOSCHANGED messages to be sent.
14908         * relay32/builtin32.c: Robert Riggs <rriggs@tesser.com>
14909         Use external DirectPlay DLLs by default.
14911         * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14912         Allow passing task handles to GetThreadQueue() and SetFastQueue().
14914         * windows/user.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14915         Handle (console) applications that never created a queue correctly
14916         in USER_AppExit(); call InitThreadInput() in InitApp().
14918         * windows/hook.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14919         - Fixed creation of message queue in hook API routines.
14920         - Some preparations for thread-local message queues.
14922         * loader/ne/module.c:
14923         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14924         Check module name length in ModuleNext().
14926         * windows/x11drv/event.c:
14927         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
14928         Use Callout to call RedrawWindow32.
14930         * msdos/int21.c: Ove Kaaven <ovek@arcticnet.no>
14931         Clear DOS extended error only for funcs >=0x2f (thanks to Dave
14932         Pickles).
14934         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
14935         Unified palette create, do allocate colorcells on init for DGA.
14937 Tue Jan 19 17:48:25 1999  Alexandre Julliard  <julliard@winehq.com>
14939         * scheduler/synchro.c, scheduler/thread.c, server/console.c, server/file.c, server/process.c, server/request.c, server/thread.c, server/trace.c, win32/console.c, win32/device.c, win32/process.c, include/file.h, include/process.h, include/server.h, include/server/object.h, include/server/request.h, include/server/thread.h, include/thread.h, include/winbase.h, include/windows.h, include/wintypes.h, memory/virtual.c, msdos/int21.c, msdos/vxd.c, relay32/kernel32.spec, scheduler/client.c, scheduler/handle.c, scheduler/k32obj.c, scheduler/process.c, files/change.c, files/dos_fs.c, files/file.c, include/device.h:
14940         Hacked server-side device support
14941         Added user APCs support.
14942         Many changes to the xterm console to make use of the server (not
14943         finished yet).
14944         Moved some other small stuff to the server.
14946         * tools/make_requests: Added long type format.
14948         * server/Makefile.in, server/device.c:
14949         Added server-side device support (only a hack for now).
14951 Sun Jan 17 17:48:48 1999  Alexandre Julliard  <julliard@winehq.com>
14953         * ChangeLog:
14954         Recovered log entries from CVS mailing list.
14956         * relay32/ntdll.spec, dlls/ntdll/rtl.c:
14957         Marcus Meissner <marcus@jet.franken.de>
14958         Implemented _alloca_probe and _chkstk (mostly done by Ulrich Weigand).
14960         * files/file.c
14961         Marcus Meissner <marcus@jet.franken.de>
14962         Handle ERROR_WRITE_PROTECT too in readonly fallback open.
14964         * dlls/advapi32/security.c, relay32/advapi32.spec:
14965         Marcus Meissner <marcus@jet.franken.de>
14966         Added GetSecurityDescriptorLength stub for regedt32.exe.
14968         * debugger/Makefile.in, files/Makefile.in:
14969         Marcus Meissner <marcus@jet.franken.de>
14970         Add "" around -D defines for paths with spaces in them.
14972         * graphics/d3dtexture.c, graphics/ddraw.c, include/ddraw.h:
14973         Lionel Ulmer <ulmer@directprovider.net>
14974         Cleaned up ColorKey handling.
14976         * objects/metafile.c:
14977         Paul Quinn <paulq@COREL.CA>
14978         METARECORD member rdParam should be rdParm (in win32 sdk)
14979         lots of changes in this source file to reflect this change.
14981         * graphics/escape.c, graphics/painting.c, graphics/metafiledrv/init.c, include/commctrl.h, include/commdlg.h, include/gdi.h, include/tchar.h, include/windows.h, include/wingdi.h, include/wintypes.h, include/winuser.h, misc/spooler.c, objects/gdiobj.c,
14982         relay32/gdi32.spec:
14983         Paul Quinn <paulq@COREL.CA>
14984         Fixed bad defines, added a few types 'n defines.
14986         * windows/dinput.c:
14987         Marcus Meissner <marcus@jet.franken.de>
14988         Disable broken callbacks which lead to crashes.
14990         * multimedia/mcistring.c:
14991         Eric Pouech <Eric.Pouech@wanadoo.fr>
14992         Fixed ID usage (and rely less heavily on multimedia/mmsystem.c
14993         internal structures).
14995         * misc/toolhelp.c:
14996         Marcus Meissner <marcus@jet.franken.de>
14997         debug.h needs to be included last since it #undefs ERR for Solaris.
14999         * debugger/debug.l, debugger/memory.c:
15000         Marcus Meissner <marcus@jet.franken.de>
15001         Added /u format to debugger display for UNICODE strings.
15003         * loader/pe_image.c:
15004         Marcus Meissner <marcus@jet.franken.de>
15005         Remove irritating FIXME line no longer needed.
15007         * msdos/int2f.c:
15008         Eric Pouech <Eric.Pouech@wanadoo.fr>
15009         Added missing '\n' in FIXME message.
15011         * graphics/ddraw.c:
15012         Robert Riggs <rriggs@tesser.com>
15013         objbase.h needed for WINE_StringFromCLSID(), fix C function
15014         declarations, install a colormap if we are not managed, release
15015         backbuffers in DGA mode, fix video mode switching logic to avoid
15016         possible NULL pointer dereference.
15018         * msdos/dpmi.c:
15019         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
15020         Small fix.
15022         * files/file.c, include/file.h, include/process.h, loader/resource.c, loader/dos/module.c, loader/ne/segment.c, misc/lzexpand.c, msdos/int21.c vxd.c, multimedia/mmio.c, win32/kernel32.c:
15023         Better DOS file handle management.
15025         * documentation/common_controls:
15026         Francis Beaudet <francis@macadamian.com>
15027         This should help prevent duplicate work.
15029         * if1632/gdi.spec, include/wingdi.h, objects/dc.c:
15030         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
15031         Implemented Death() and Resurrection(), two functions needed by some
15032         TPWin (?) command line tool.
15034         * windows/winproc.c:
15035         Juergen Schmied <juergen.schmied@metronet.de>
15036         Added 32->16 translation for WM_ACTIVATEAPP.
15038         * dlls/shell32/pidl.c, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlfolder.c, relay32/shell32.spec:
15039         Juergen Schmied <juergen.schmied@metronet.de>
15040         New stubs: ShellMessageBoxW, RunDLL_CallEntry16.
15041         Implementation for SHGetSpecialFolderPath32[A|W].
15042         Many bugfixes.
15044         * console/xterm.c, misc/port.c, win32/console.c:
15045         Joseph Pranevich <jpranevich@lycos.com>
15046         Change all Wine openpty() implementations to match the "standard" and
15047         then make them both call the same code leaving the option to change
15048         that code to call the "standard" openpty() at a later date.
15050         * relay32/kernel32.spec, scheduler/process.c:
15051         Marcus Meissner <marcus@jet.franken.de>
15052         Added SetProcessAffinityMask stub.
15054         * graphics/ddraw.c, include/ddraw.h:
15055         Marcus Meissner <marcus@jet.franken.de>
15056         Fixed the other union misuse too (one less mem corruption)
15057         Re-added XInstallColormap (or non managed does not change palette)
15059         * if1632/kernel.spec, scheduler/synchro.c:
15060         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15061         Added an implementation for KERNEL.495.
15063         * documentation/status, documentation/direct3D, graphics/d3d_private.h, graphics/d3dcommon.c, graphics/d3ddevices.c, graphics/d3dexecutebuffer.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c, include/d3d.h, include/ddraw.h:
15064         Lionel Ulmer <ulmer@directprovider.net>
15065         - added bitmask to store which ColorKey structures are valid
15066         - handle many new rendering states, some optimizations in state changes
15067         - 8bit palettized textures now support ColorKeying
15068         - some miscellaneous bug fixes and code rewrite
15070         * controls/menu.c:
15071         Noomen Hamza <noomen@macadamian.com>
15072         Fixed the look of the menu so it would be compliant with Win95: modified
15073         the mouse tracking code so it would change the selection every time the
15074         mouse moved over a menu item.
15076         * documentation/how-to-port:
15077         Mike Castle <dalgoda@shell.rt66.com>
15078         Small fix.
15080         * dlls/comctl32/updown.c:
15081         Noel Borthwick <noel@macadamian.com>
15082         Fixed bugs:
15083         - When an edit control buddy was used single digit values were not
15084         being displayed.
15085         - Comma values were not displayed correctly when thousands separation
15086         was requested.
15088         * win32/newfns.c:
15089         Tom Bech <tomb@ii.uib.no>
15090         While the debug event messages are not implemented, WaitForDebugEvent
15091         should return FALSE.
15093         * if1632/user.spec, objects/bitmap.c:
15094         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
15095         Implemented CopyImage16.
15097         * documentation/bugreports 
15098         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
15099         Small fix.
15101         * console/generic.c, msdos/int21.c:
15102         Marcus Meissner <marcus@jet.franken.de>
15103         Changed 0x01 to use generic console, fixed 0x0b.
15104         Fixed CONSOLE_GetCharacter (two args swapped).
15106         * include/module.h, loader/main.c, loader/module.c, loader/dos/module.c:
15107         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15108         Allow specifying module name for NE dummy module.
15110         * loader/pe_image.c 
15111         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15112         Set module name of dummy module equal to module name of PE module.
15114         * controls/scroll.c, controls/uitools.c:
15115         Marcus Meissner <marcus@jet.franken.de>
15116         Missing include wine/winuser16.h added.
15118         * graphics/vga.c:
15119         Marcus Meissner <marcus@jet.franken.de>
15120         Create an actual primary surface for screenbuffer.
15122 ----------------------------------------------------------------
15123 Sun Jan 10 14:40:34 1999  Alexandre Julliard  <julliard@winehq.com>
15125         * include/miscemu.h, include/msdos.h, loader/main.c, msdos/Makefile.in, msdos/dosconf.c, msdos/int21.c:
15126         Andreas Mohr <a.mohr@mailto.de>
15127         Added config.sys parser.
15129         * controls/listbox.c: Pascal Cuoq <Pascal.Cuoq@inria.fr>
15130         Small change in LB_SETCURSEL32 handling (the caret should be moved as
15131         well).
15133         * configure, configure.in, files/async.c, include/config.h.in, misc/winsock_dns.c, msdos/int21.c, ole/compobj.c:
15134         Marcus Meissner <marcus@jet.franken.de>
15135         Use autoconf check for presence of sys/file.h.
15137         * dlls/ntdll/rtl.c, relay32/ntdll.spec:
15138         Marcus Meissner <marcus@jet.franken.de>
15139         Implemented DbgPrint, added ultoa.
15141         * win32/console.c: Peter Hunnisett <hunnise@nortelnetworks.com>
15142         PeekConsoleInput & ReadConsoleInput need to return 0 records read in
15143         the case of an invalid handle.
15145         * console/ncurses.c, loader/main.c:
15146         Joseph Pranevich <jpranevich@lycos.com>
15147         More verbose debugging output.
15148         Remove compilation warning.
15150         * msdos/int10.c: Joseph Pranevich <jpranevich@lycos.com>
15151         Fix up some interrupt calls to return at the data that they are supposed
15152         to. Also increase comment verbosity to help debug things later.
15154         * include/options.h, misc/main.c, misc/version.c:
15155         Andreas Mohr <a.mohr@mailto.de>
15156         Added switch -dosver.
15157         Cleanup for OaBuildVersion().
15159         * libtest/.cvsignore: Added vartest and volinfo
15161         * dlls/shell32/contmenu.c, dlls/shell32/pidl.c, dlls/shell32/pidl.h, dlls/shell32/shelllink.c, dlls/shell32/shellord.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, include/shell.h:
15162         Juergen Schmied <juergen.schmied@metronet.de>
15163         Many bugfixes, code cleanup.
15164         Removed a few glitches from the COM patch.
15166         * windows/dialog.c: Lawson Whitney <lawson_whitney@juno.com>
15167         Only destroy window once.
15169         * graphics/ddraw.c, include/ddraw.h:
15170         Marcus Meissner <marcus@jet.franken.de>
15171         - moved drawable to common since it is used by both DGA and Xlib.
15172           (fixes one bad memory corruption bug in DGA (StarCraft and Diablo)
15173         - added BltFast sanity checks.
15175         * windows/queue.c, loader/task.c:
15176         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15177         InitApp() call removed from 32-bit application startup;
15178         create task message queue in InitThreadInput() instead.
15180         * loader/ne/convert.c:
15181         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15182         Added accelerator table PE->NE resource conversion.
15184         * debugger/editline.c:
15185         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15186         Restart read() in case of EINTR in TTYget().
15188         * dlls/shell32/shellole.c: Marcus Meissner <marcus@jet.franken.de>
15189         Ptr ref wrong.
15191         * tools/wrc/CHANGES, 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/readres.c, tools/wrc/utils.c, tools/wrc/utils.h, tools/wrc/wrc.h, tools/wrc/wrctypes.h, tools/wrc/writeres.c:
15192         Bertho Stultiens <bertho@panter.soci.aau.dk>
15193         Wrc version 1.0.8. Toolbar resources are now supported. A couple of
15194         other fixes are also included. See file tools/wrc/CHANGES for details.
15196         * ole/compobj.c: Marcus Meissner <marcus@jet.franken.de>
15197         Missing WINAPI.
15199         * include/x11drv.h, loader/dos/module.c, objects/dc.c, relay32/builtin32.c, relay32/relay386.c, scheduler/k32obj.c, files/async.c, if1632/relay.c, include/main.h, include/multimedia.h, include/windows.h:
15200         James Juran <jrj120@psu.edu>
15201         Add missing #includes and prototypes to eliminate some implicit
15202         function declaration warnings and 'extern's in .c files.
15204         * configure, configure.in, console/ncurses.c, include/acconfig.h, include/config.h.in:
15205         Ove Kaaven <ovek@arcticnet.no>
15206         Check for resizeterm in ncurses.
15208         * libtest/Makefile.in, libtest/vartest-Win32.log, libtest/vartest.c, libtest/vartest.readme:
15209         Francis Beaudet <francis@macadamian.com>
15210         New test program for VARIANT functions.
15212         * debugger/msc.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
15213         Some debug information (PDB) was not mapped when loading a module,
15214         which caused a core in the debugger when it tried to access it.
15216         * Makefile.in: Ove Kaaven <ovek@arcticnet.no>
15217         Links libwine.so.1.0 to libwine.so in Wine's main directory.
15218         Makes Wine compile with --enable-dll again.
15220 Sat Jan  9 09:12:40 1999  Alexandre Julliard  <julliard@winehq.com>
15222         * relay32/ole32.spec, windows/dinput.c, include/storage.h, include/unknwn.h, include/windows.h, include/wine/obj_base.h, include/wine/obj_channel.h, include/wine/obj_clientserver.h, include/wine/obj_dataobject.h, include/wine/obj_marshal.h, include/wine/obj_misc.h, include/wine/obj_moniker.h, include/wine/obj_propertystorage.h, include/wine/obj_storage.h, include/winerror.h, include/wtypes.h, misc/shell.c, multimedia/dplay.c, multimedia/dsound.c, objects/font.c, ole/compobj.c, ole/ifs.c, ole/moniker.c, ole/ole2.c, ole/ole2disp.c, ole/oledlg.c, ole/oleobj.c, ole/storage.c, ole/typelib.c, dlls/shell32/dataobject.c, dlls/shell32/enumidlist.c, dlls/shell32/folders.c, dlls/shell32/pidl.c, dlls/shell32/shell32_main.c, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, dlls/shell32/shellord.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, graphics/ddraw.c, graphics/vga.c, if1632/compobj.spec, include/compobj.h, include/ddraw.h, include/dinput.h, include/dplay.h, include/dsound.h, include/interfaces.h, include/objbase.h, include/objidl.h, include/ole.h, include/ole2.h, include/oleobj.h, include/servprov.h, include/shell.h, include/shlguid.h, include/shlobj.h, dlls/comctl32/imagelist.c, dlls/shell32/contmenu.c:
15223         Francois Gouget <fgouget@multimania.com>
15224         Added a lot of COM interfaces definitions.
15225         Restructured COM header files for better compatibility and clarity.
15227 Fri Jan  8 16:37:03 1999  Alexandre Julliard  <julliard@winehq.com>
15229         * files/file.c: Set GENERIC_READ|GENERIC_WRITE access for OF_CREATE.
15230         Make GetFileType work for all handle types.
15232         * win32/device.c: Avoid crash on NULL dev->info.
15234         * include/flatsb.h, relay32/comctl32.spec, dlls/comctl32/Makefile.in, dlls/comctl32/commctrl.c, dlls/comctl32/flatsb.c, include/commctrl.h:
15235         Alex Priem <alexp@sci.kun.nl>
15236         Added stubs and defines for the flat scrollbar common control.
15238         * include/commctrl.h, dlls/comctl32/datetime.c:
15239         Alex Priem <alexp@sci.kun.nl>
15240         Added some defines needed for custom draw'ing and datetime common
15241         controls.
15243         * dlls/shell32/iconcache.c: Eddie Carpenter <ecarpenter@itex.co.za>
15244         Fixed a small bug in function ExtractIconEx32A.
15246         * windows/winproc.c: Juergen Schmied <juergen.schmied@metronet.de>
15247         HTASK16 -> threadID mapping of WM_ACTIVATEAPP.
15249         * files/file.c: Bertho Stultiens <bertho@panter.soci.aau.dk>
15250         Make DeleteFile fail for empty path.
15252         * msdos/ioports.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
15253         Fix dummy_ctr stuff to work even without DIRECT_IO_ACCESS.
15255         * loader/ne/segment.c: Marcus Meissner <marcus@jet.franken.de>
15256         Fixed wrong buffer which caused fixups to fail.
15258         * graphics/d3dcommon.c, graphics/d3ddevices.c, graphics/d3dtexture.c, include/d3d.h:
15259         Lionel Ulmer <ulmer@directprovider.net>
15260         - added all the Direct3D error codes
15261         - added 8bit palettized texture support
15263         * msdos/cdrom.c: Marcus Meissner <marcus@jet.franken.de>
15264         ifdefs for defines not in linux 2.0.
15266         * relay32/winspool.spec, misc/printdrv.c:
15267         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
15268         Added two stubs for AddPrinterDriver.
15270         * include/dosexe.h, loader/dos/dosmod.c, loader/dos/dosmod.h, loader/dos/dosvm.c:
15271         Ove Kaaven <ovek@arcticnet.no>
15272         Queue SIGALRM to reduce the "signal 14 lost" complaints.
15273         Added support for reprogramming the DOS timer, and reading back the
15274         current value.
15276         * misc/registry.c: Marcus Meissner <marcus@jet.franken.de>
15277         Wine hangs when registry (corrupted) has lone \ at end of file.
15279         * dlls/shell32/shell32_main.h, dlls/shell32/shell32_main.c:
15280         Kostya Ivanov <kostya@warmcat.excom.spb.su>
15281         Small patch that enables Clarion for Windows not to trap while
15282         loading.
15284         * ole/variant.c: Marcus Meissner <marcus@jet.franken.de>
15285         Replace troublesome assignments by memset for whole struct.
15287         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
15288         Added handling of the 'palent' field of the CreatePalette procedure.
15290         * documentation/wine.man:
15291         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
15292         Added description about including/excluding functions from relay
15293         trace.
15295         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
15296         Read at least 1 input record in ReadConsoleInputA.
15298         * memory/virtual.c:
15299         Fixed CreateMapping when a mapping with the same name already exists.
15301 Wed Jan  6 10:37:29 1999  Alexandre Julliard  <julliard@winehq.com>
15303         * server/file.c: Fixed file destruction when file has no name.
15305 Tue Jan  5 18:38:59 1999  Alexandre Julliard  <julliard@winehq.com>
15307         * misc/main.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
15308         Warns user if multiple -dll switches are used on command line.
15310         * dlls/comctl32/trackbar.c: Alex Priem <alexp@sci.kun.nl>
15311         Fixed a leftover HeapFree in the trackbar common control.
15313         * include/commctrl.h, include/debug.h, include/debugdefs.h, include/tab.h, dlls/comctl32/tab.c:
15314         Alex Priem <alexp@sci.kun.nl>
15315         Fixed some problems with the tab common control (with thanks to Anders
15316         Carlsson <anders.carlsson@linux.nu>).
15318         * dlls/comctl32/commctrl.c, dlls/comctl32/propsheet.c, include/commctrl.h, include/propsheet.h, relay32/comctl32.spec:
15319         Alex Priem <alexp@sci.kun.nl>
15320         Added a missing PropertySheet32AW and CreatePropertySheetPage stub,
15321         and some missing defines.
15323         * misc/main.c, scheduler/syslevel.c, graphics/vga.c:
15324         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15325         Use MakeCriticalSectionGlobal on all critical sections used across
15326         process boundaries.
15328         * include/winbase.h, include/windows.h:
15329         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15330         Added prototypes for MakeCriticalSectionGlobal, ConvertToGlobalHandle.
15332         * documentation/wine.man:
15333         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
15334         Added environment variables in the man page.
15336         * loader/dos/module.c: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
15337         Fixed args of MZ_CreateProcess.
15339         * programs/clock/language.c, programs/notepad/language.c, programs/progman/main.c:
15340         Andreas Mohr <a.mohr@mailto.de>
15341         Fixed string bug in programs/.
15343         * msdos/ioports.c: Andreas Mohr <a.mohr@mailto.de>
15344         Added stupid "action" emulation for hardware timers in ioports.c.
15346         * dlls/winaspi/winaspi16.c: Andreas Mohr <a.mohr@mailto.de>
15347         Again a small DOSASPI patch.
15349         * documentation/bugreports, documentation/fonts, windows/sysmetrics.c, windows/win.c, windows/winpos.c:
15350         Andreas Mohr <a.mohr@mailto.de>
15351         Documentation updates.
15353         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
15354         - check if palette is not null when setting a palette
15355         - check if window handle is valid before getting its 'drawable'
15357         * graphics/x11drv/xfont.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
15358         Prevent core dump with some TTF (when X11 runs with a true type
15359         server).
15361         * server/console.c: Marcus Meissner <marcus@jet.franken.de>
15362         Use stdout for default console output.
15364 ----------------------------------------------------------------
15365 Sun Jan  3 17:00:20 1999  Alexandre Julliard  <julliard@winehq.com>
15367         * graphics/d3dexecutebuffer.c, graphics/d3dlight.c, graphics/d3dmaterial.c, graphics/d3dtexture.c, graphics/d3dviewport.c, graphics/ddraw.c, include/acconfig.h, include/config.h.in, include/d3d.h, include/wine_gl.h, multimedia/dsound.c, configure, configure.in, documentation/status/direct3D, documentation/status/directdraw, graphics/Makefile.in, graphics/d3d_private.h, graphics/d3dcommon.c, graphics/d3ddevices.c:
15368         Lionel Ulmer <ulmer@directprovider.net>
15369         - beginning of implementation of Direct3D2 (DX 5.0) and associated classes
15370         - some basic code for Direct3D and Direct3DExecuteBuffer (DX 3.0)
15371         - added stretching to Blt function
15373         * misc/version.c: Marcus Meissner <marcus@jet.franken.de>
15374         Try to autodetect NT4.
15376         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
15377         0 means success, all else failure for WaitForSingleObject.
15379         * msdos/int10.c: Joseph Pranevich <jpranevich@lycos.com>
15380         Do not advance the cursor in certain routines. This cleaned up the
15381         implementation quite a bit.
15383         * loader/main.c: Joseph Pranevich <jpranevich@lycos.com>
15384         Set console video mode when loading DOS app. (Eventually, I want to
15385         mimic Windows 9x's behavior by setting the video mode only when non
15386         INT 21 calls are used to allow for arbitrary-sized consoles).
15388         * console/interface.c, console/xterm.c:
15389         Joseph Pranevich <jpranevich@lycos.com>
15390         Xterm driver can now resize the terminal when a mode change is
15391         detected.
15393         * console/generic.c: Joseph Pranevich <jpranevich@lycos.com>
15394         Long standing scroll bug fixed!
15396         * console/ncurses.c, include/acconfig.h, include/config.h.in, include/console.h, configure, configure.in:
15397         Joseph Pranevich <jpranevich@lycos.com>
15398         Rewrite of configuration system to support "regular" curses as well as
15399         eliminating the --with-ncurses option. Now, ncurses support will be
15400         built in if a compatible library is detected.
15402         * include/wintypes.h, windows/defdlg.c:
15403         NF Stevens <norman@arcady.u-net.com>
15404         Fix the return type of DLGPROC type and mask out the unset highword of
15405         the return when a 16 bit dialog proc is called.
15407         * include/interfaces.h: Rein Klazes <rklazes@casema.net>
15408         Add interface ID's for upcoming ITypeLib implementation.
15410         * files/dos_fs.c: Juergen Schmied <juergen.schmied@metronet.de>
15411         Bugfix for trailing slashes, repetition of '/' or '\' and
15412         SetLastError() in GetFullPathname.
15414         * Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/advapi32/.cvsignore, dlls/advapi32/Makefile.in, dlls/advapi32/advapi.c, dlls/advapi32/eventlog.c, dlls/advapi32/security.c, dlls/advapi32/service.c, relay32/advapi32.spec, win32/Attic/advapi.c, win32/Attic/security.c, win32/Makefile.in, win32/init.c:
15415         Juergen Schmied <juergen.schmied@metronet.de>
15416         Moved ADVAPI32 files to dlls/advapi32.
15417         Added stubs for eventlog functions.
15419         * relay32/shell32.spec, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlview.c, include/shlobj.h:
15420         Juergen Schmied <juergen.schmied@metronet.de>
15421         New stubs NTSHChangeNotifyRegister, NTSHChangeNotifyDeregister.
15422         Cleanup, some more functions UNICODE ready.
15424         * dlls/shell32/pidl.c: Juergen Schmied <juergen.schmied@metronet.de>
15425         SHCloneSpecialIDList implemented.
15426         SHGetDataFromIDListA corrected.
15428         * dlls/shell32/iconcache.c:
15429         Juergen Schmied <juergen.schmied@metronet.de>
15430         Shell_GetCachedImageIndex32[A|W] implemented.
15432         * msdos/int21.c, msdos/int25.c, msdos/int26.c, files/drive.c, include/drive.h:
15433         Andreas Mohr <a.mohr@mailto.de>
15434         Implemented raw device access calls for ioctlGenericBlkDevReq()
15435         and therefore moved the core functionality of int2[56].c into files/drive.c.
15437         * msdos/ioports.c: Andreas Mohr <a.mohr@mailto.de>
15438         Added automatic CMOS RAM checksum calculation.
15440         * dlls/winaspi/winaspi16.c, dlls/wnaspi32/winaspi32.c, documentation/aspi, relay32/wnaspi32.spec:
15441         Andreas Mohr <a.mohr@mailto.de>
15442         SendASPI32Command32 has to be __cdecl.
15443         Updated documentation/aspi and reverted an ERR back to WARN.
15445         * documentation/bugreports: James Juran <jrj120@psu.edu>
15446         Of course we want the last 100 lines, not the first 100 lines.
15447         Use 'tail' instead of 'head'. Also fix text alignment from
15448         previous patch.
15450         * multimedia/joystick.c: Ove Kaaven <ovek@arcticnet.no>
15451         Reading joystick 5 when we only support 4 should fail instead of
15452         hang.
15454         * multimedia/mcicda.c: Ove Kaaven <ovek@arcticnet.no>
15455         Playing a non-existent CD should fail instead of crash.
15457         * Make.rules.in, Makefile.in: Marcus Meissner <marcus@jet.franken.de>
15458         Check for necessary configure reruns for Makefile and Make.rules
15459         generation.
15461         * miscemu/instr.c: Ove Kaaven <ovek@arcticnet.no>
15462         Emulates ins/outs correctly for DOS programs.
15464         * ole/storage.c, scheduler/process.c, server/change.c, server/console.c, server/event.c, server/file.c, server/mapping.c, server/mutex.c, server/object.c, server/pipe.c, server/process.c, server/request.c, server/semaphore.c, server/thread.c, server/trace.c, win32/device.c, win32/file.c, files/dos_fs.c, files/file.c, include/device.h, include/file.h, include/server.h, include/server/object.h, include/server/request.h, loader/ne/module.c, loader/pe_image.c, misc/crtdll.c, msdos/int21.c, msdos/vxd.c:
15465         Implemented file sharing checks in the server.
15466         Added set file time server request.
15467         Overall clean up of the file handling (DOS device handling is now
15468         broken, should be redone).
15470 Sat Jan  2 08:22:34 1999  Alexandre Julliard  <julliard@winehq.com>
15472         * memory/virtual.c:
15473         Fixed bug in CreateFileMapping when name is not NULL.
15475         * server/request.c: Fixed CHECK_STRING display.
15477 Fri Jan  1 19:51:25 1999  Alexandre Julliard  <julliard@winehq.com>
15479         * if1632/kernel.spec, memory/local.c:
15480         Richard A Lough <ralough.ced@dnet.co.uk>
15481         Put return value of LocalAlloc in CX too.
15483         * include/psdrv.h: Dimitrie O. Paun <dimi@cs.toronto.edu>
15484         Protect against multiple includes.
15486         * dlls/shell32/iconcache.c: Use proper system directory.
15488         * scheduler/process.c: Got rid of CLIENT_GetProcessInfo.
15490         * windows/class.c, windows/dce.c, windows/defdlg.c, windows/defwnd.c, windows/driver.c, windows/msgbox.c, windows/painting.c, windows/user.c, windows/winhelp.c, include/wine/winuser16.h, include/winreg.h, include/winuser.h, loader/module.c, misc/comm.c, misc/shell.c, misc/spooler.c, misc/spy.c, misc/winsock.c, multimedia/audio.c, multimedia/mcianim.c, multimedia/mcicda.c, multimedia/mcimidi.c, multimedia/mciwave.c, multimedia/midi.c, multimedia/mmsystem.c, objects/clipping.c, ole/oleobj.c, controls/button.c, controls/desktop.c, controls/icontitle.c, controls/static.c, debugger/dbg.y, dlls/shell32/iconcache.c, dlls/shell32/shell32_main.c, graphics/psdrv/escape.c, if1632/thunk.c, include/callback.h, include/display.h, include/imagelist.h, include/ole.h, include/queue.h, include/shell.h, include/storage.h, include/struct32.h, include/winbase.h, include/windows.h:
15491         Michael Veksler <mveksler@techunix.technion.ac.il>
15492         Moves more stuff from windows.h.
15493         - include/winuser.h - interface relevant to user32.spec
15494         - include/wine/winuser16.h - the old 16 bit interface (internal use)
15495         - include/winbase.h - some minor updates to keep things coherent.
15496         - Lot of other files made to include wine/winuser16.h, which is no
15497           longer included from windows.h
15499         * scheduler/handle.c: Fixed CloseHandle() on global handles.
15501         * README, documentation/bugreports, documentation/win95look, documentation/wine.man:
15502         James Juran <jrj120@psu.edu>
15503         Add some information to the man page and README file.
15504         Make documentation/win95look say [Tweak.Layout] instead of
15505         [Tweaks.Layout].
15506         Fix incorrect command given in documentation/bugreports.
15507         Standard error was not being redirected, so most of the
15508         output was lost.
15510         * objects/bitmap.c: NF Stevens <norman@arcady.u-net.com>
15511         Delphi 2.0 needs to allocate a bitmap bigger than 4096 bits wide.
15513         * misc/printdrv.c: NF Stevens <norman@arcady.u-net.com>
15514         Initialize lpdwNeeded.
15516         * if1632/snoop.c:
15517         Marcus Meissner <Marcus.Meissner@informatik.uni-erlangen.de>
15518         Include stuff even if not on __i386__ for debug defines.
15520         * ole/variant.c:
15521         Marcus Meissner <Marcus.Meissner@informatik.uni-erlangen.de>
15522         Another // comment fixed.
15524         * server/file.c:
15525         Marcus Meissner <Marcus.Meissner@informatik.uni-erlangen.de>
15526         Need <errno.h> for errno decl. on Solaris.
15528         * include/wingdi.h, include/x11font.h, objects/font.c:
15529         Douglas Ridgway <ridgway@winehq.com>
15530         Implement TranslateCharsetInfo, change charset type to BYTE.
15532         * controls/combo.c, controls/listbox.c, include/combo.h:
15533         Alex Korobka <korobka@galaxy.ams.sunysb.edu>
15534         Better CB_SETCURSEL message handling.
15536         * include/queue.h, include/thread.h, scheduler/synchro.c, scheduler/thread.c, windows/message.c, windows/queue.c:
15537         Moved MsgWaitForMultipleObject implementation to USER routines, using
15538         a normal Win32 event.
15540         * tools/make_requests: Send debugging output to stderr.
15542         * files/change.c, files/dos_fs.c, files/file.c, include/file.h, scheduler/client.c, scheduler/event.c, scheduler/k32obj.c, scheduler/mutex.c, scheduler/pipe.c, scheduler/semaphore.c, win32/console.c:
15543         Cleaned up and removed some no longer used code.
15545         * memory/virtual.c: Use server file mapping objects.
15547         * include/server/object.h, include/server/request.h, include/server/thread.h, server/Makefile.in, server/console.c, server/file.c, server/main.c, server/mapping.c, server/object.c, server/pipe.c, server/request.c, server/thread.c, server/trace.c, include/server.h:
15548         Added server-side file mapping object support.
15550         * misc/crtdll.c:
15551         Hacked stdio functions to use Win32 file handles. Still needs a proper
15552         stdio emulation.
15554         * loader/ne/module.c, loader/ne/resource.c, loader/ne/segment.c:
15555         Use Win32 file handles instead of Unix ones.
15557         * include/module.h, include/pe_image.h, include/process.h, loader/dos/module.c, loader/module.c, loader/pe_image.c, scheduler/process.c, include/dosexe.h:
15558         Take into account handle inheritance flag.
15560 Thu Dec 31 15:55:19 1998  Alexandre Julliard  <julliard@winehq.com>
15562         * debugger/db_disasm.c:
15563         Changed db_task_printsym to always print a full address, no matter
15564         what the operand size is.
15566         * scheduler/critsection.c: Re-implemented using a real semaphore.
15568         * windows/queue.c, files/change.c, files/file.c, include/k32obj.h, include/process.h, include/thread.h, loader/signal.c, memory/virtual.c, misc/toolhelp.c, scheduler/client.c, scheduler/event.c, scheduler/handle.c, scheduler/k32obj.c, scheduler/mutex.c, scheduler/pipe.c, scheduler/process.c, scheduler/semaphore.c, scheduler/synchro.c, scheduler/thread.c, win32/console.c, win32/device.c:
15569         Removed client-side wait functions; all waiting is now done through
15570         the server.
15572         * server/Makefile.in, server/change.c, server/process.c, server/request.c, server/trace.c, include/server.h, include/server/object.h, include/server/request.h:
15573         Added change notifications.
15574         Added global handle support.
15576 Wed Dec 30 12:11:52 1998  Alexandre Julliard  <julliard@winehq.com>
15578         * include/thread.h, scheduler/synchro.c:
15579         Changed server wait logic a bit.
15581         * win32/console.c:
15582         Hacks to support server-side console. Should be redone properly
15583         some day.
15585         * files/dos_fs.c, files/file.c, include/file.h, win32/file.c, win32/newfns.c:
15586         Reimplemented Read/WriteFile to use server file descriptors.
15587         Removed file position hack as it is wrong for Win32 (should be redone
15588         for Win16 only).
15590         * scheduler/Makefile.in, scheduler/k32obj.c, scheduler/pipe.c:
15591         Added anonymous pipe support
15593         * include/server.h, include/server/object.h, include/server/request.h, server/Makefile.in, server/console.c, server/event.c, server/file.c, server/mutex.c, server/object.c, server/pipe.c, server/process.c, server/request.c, server/semaphore.c, server/thread.c, server/trace.c:
15594         Added several file server requests
15595         Added server-side pipes and consoles
15597 Sun Dec 27 15:28:55 1998  Alexandre Julliard  <julliard@winehq.com>
15599         * misc/crtdll.c, msdos/int21.c, scheduler/client.c, scheduler/k32obj.c, server/Makefile.in, server/event.c, server/file.c, server/mutex.c, server/process.c, server/request.c, server/semaphore.c, server/trace.c, tools/make_requests, files/dos_fs.c, files/file.c, include/debug.h, include/debugdefs.h, include/file.h, include/server.h, include/server/object.h, include/server/request.h, loader/main.c, memory/virtual.c:
15600         Added beginnings of server-side file handling.
15601         Added -debugmsg +server support.
15602         Better server request dumping for varargs requests.
15604         * windows/x11drv/wnd.c:
15605         Fixed SetFocus that was broken when moved to x11drv.
15607         * include/server/object.h, include/server/thread.h, scheduler/client.c, server/Makefile.in, server/event.c, server/main.c, server/mutex.c, server/process.c, server/select.c, server/semaphore.c, server/socket.c, server/thread.c:
15608         Added add_queue/remove_queue to server object operations.
15609         Moved select() loop functions to select.c.
15611 Sat Dec 26 19:47:00 1998  Alexandre Julliard  <julliard@winehq.com>
15613         * programs/regtest/regtest.c:
15614         Renamed ERR macro to avoid confusing the make_debug script.
15616         * ole/storage.c, ole/typelib.c, include/d3d.h, include/mmsystem.h, include/oleauto.h, include/storage.h, include/winversion.h, ole/compobj.c, ole/ole2.c, ole/ole2nls.c:
15617         Juergen Schmied <juergen.schmied@metronet.de>
15618         Fixed tons of incomplete prototypes, assignment's of pointer with
15619         different signedness, superflous ',' and ';' in structures, wrong
15620         return-types, lose of digits and some small glitches.
15622         * graphics/x11drv/xfont.c, include/x11font.h:
15623         Alex Korobka <korobka@galaxy.ams.sunysb.edu>
15624         Cleaned up font encoding handling. Added 'Ignore#' option to the
15625         [fonts] section. Also, file with cached metrics now has the value of
15626         $DISPLAY appended to the filename.
15628         * programs/clock/language.c, programs/clock/main.c, programs/notepad/dialog.c, programs/notepad/language.c, programs/notepad/main.c, rc/systest.c, windows/multimon.c, windows/nonclient.c, dlls/shell32/shlview.c, files/profile.c, graphics/path.c, include/commctrl.h, include/d3d.h, include/dplay.h, include/dsound.h, include/ole.h, include/oleobj.h, include/shlobj.h, include/vfw.h, include/winerror.h, include/winioctl.h, misc/main.c, multimedia/audio.c, multimedia/dsound.c, ole/ole2.c, debugger/stabs.c, dlls/comctl32/animate.c, dlls/comctl32/header.c, dlls/comctl32/hotkey.c, dlls/comctl32/listview.c, dlls/comctl32/pager.c, dlls/comctl32/rebar.c, dlls/comctl32/toolbar.c, dlls/comctl32/tooltips.c, dlls/comctl32/trackbar.c, dlls/comctl32/treeview.c, dlls/shell32/contmenu.c, dlls/shell32/enumidlist.c, dlls/shell32/pidl.c, dlls/shell32/shellord.c:
15629         Marcus Meissner <marcus@jet.franken.de>
15630         Changed // comments to /* */ so WINE compiles with non-gcc compilers
15631         again.
15633         * windows/ttydrv/clipboard.c, windows/ttydrv/event.c, windows/ttydrv/init.c, windows/x11drv/clipboard.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/mouse.c, windows/x11drv/wnd.c, debugger/dbg.y, graphics/ddraw.c, graphics/x11drv/bitblt.c, graphics/x11drv/brush.c, graphics/x11drv/clipping.c, graphics/x11drv/init.c, include/clipboard.h, include/ddraw.h, include/display.h, include/ttydrv.h, include/win.h, include/x11drv.h, objects/palette.c, windows/dce.c, windows/dinput.c, windows/display.c, windows/input.c, windows/message.c, windows/scroll.c, windows/win.c, windows/winpos.c:
15634         Patrik Stridvall <ps@leissner.se>
15635         Moved more things to the X11 driver.
15637         * include/wingdi.h, objects/brush.c:
15638         Francois Gouget <fgouget@multimania.com>
15639         Fixed the prototype of CreateDIBPatternBrushPt
15641         * include/windows.h: Francois Gouget <fgouget@multimania.com>
15642         Removed the CN_xxx macros since they are not used, do not correspond to
15643         any Windows define and conflict with MFC defines.
15644         windows.h must provide all the definitions contained in winbase.h
15645         Some Xxx32 functions did not have the associated Xxx macro.
15647         * include/wintypes.h: Francois Gouget <fgouget@multimania.com>
15648         Added a typedef for __int64 which is a builtin Visual C++ type
15649         Added a typedef for PUINT
15651         * include/objbase.h: Francois Gouget <fgouget@multimania.com>
15652         REFIID was not defined.
15654         * configure.in, include/acconfig.h, include/config.h.in, include/winsock.h, misc/winsock.c, configure:
15655         Pavel Roskin <pavel_roskin@geocities.com>
15656         configure first checks whether it is possible to compile IPX code with
15657         Glibc headers. If it fails, next check determines whether direct inclusion
15658         of <linux/ipx.h> works.
15660         * include/tchar.h: Francois Gouget <fgouget@multimania.com>
15661         Provides the mappings. MBCS and Unicode functions are not implemented.
15662         Standard (SBCS) functions may exist or not, with the same or a different
15663         semantics.
15665         * dlls/comctl32/ipaddress.c, include/commctrl.h, include/ipaddress.h:
15666         Alex Priem <alexp@sci.kun.nl>
15667         IPaddress common control implementation. First try; needs more work to
15668         remove boring bugs.
15670 Fri Dec 25 08:55:15 1998  Alexandre Julliard  <julliard@winehq.com>
15672         * dlls/shell32/contmenu.c, dlls/shell32/shlview.c, include/oleobj.h, include/shlobj.h:
15673         Juergen Schmied <juergen.schmied@metronet.de>
15674         Fixed the TEXT redefined warnings.
15676         * msdos/int10.c: Joseph Pranevich <jpranevich@lycos.com>
15677         Hook into the (stubbed) resize code in msdos int10.
15679         * console/interface.c, include/console.h, include/options.h, loader/main.c, misc/main.c:
15680         Joseph Pranevich <jpranevich@lycos.com>
15681         Add support for selection of console mode drivers to use using the
15682         -console option. Currently "tty", "ncurses", and "xterm" are
15683         supported.
15684         Add stubs for resizing the screen on mode changes.
15686         * include/ddeml.h, misc/ddeml.c, relay32/user32.spec:
15687         Jean-Claude Cote <jean-claude@macadamian.com>
15688         Partial implementation for the following DDE APIs:
15689         DdeCmpStringHandles, DdeCreateStringHandle, DdeFreeStringHandle,
15690         DdeQueryString, DdeUninitialize.
15692 Thu Dec 24 16:59:17 1998  Alexandre Julliard  <julliard@winehq.com>
15694         * ole/Makefile.in, ole/parsedt.c, ole/parsedt.h, ole/variant.c:
15695         Jean-Claude Cote <jean-claude@macadamian.com>
15696         Added VarDateFromStr API.
15698         * dlls/comctl32/trackbar.c, include/trackbar.h:
15699         Alex Priem <alexp@sci.kun.nl>
15700         - Tooltip support
15701         - Vertical trackbars supported now
15702         - TBS_BOTH support (goes along with partial cleanup of drawing code)
15703         - Use COMCTL32 heap instead of system heap
15705         * graphics/ddraw.c, include/ddraw.h:
15706         Peter Hunnisett <hunnise@nortelnetworks.com>
15707         Added all clipper&3d stubs.
15708         Starting ColorKey support.
15709         Fixed trace statement in DirectDrawCreate as formatting wasn't correct.
15710         Changed "return 0;" to "return DD_OK" or "return S_OK" as appropriate.
15711         Added SurfaceEnum dwFlags.
15713         * include/dplay.h, multimedia/dplay.c:
15714         Peter Hunnisett <hunnise@nortelnetworks.com>
15715         Added macros to header file for easier function calling.
15716         Changed implementation a little bit.
15717         Added stubs for dplay3. Still need to break into A and W versions.
15719         * win32/file.c: Peter Hunnisett <hunnise@nortelnetworks.com>
15720         CreateFile32A was only allowing console opens on CONIN$/OUT$. This
15721         has been changed to have a case insensitive compare.
15723         * controls/listbox.c: Gerard Patel <g.patel@wanadoo.fr>
15724         Don't send ODA_ENTIRE for empty listboxes (LISTBOX_Paint).
15726         * include/winbase.h, relay32/kernel32.spec, win32/kernel32.c:
15727         Jean-Claude Cote <jean-claude@macadamian.com>
15728         Implemented the GetBinaryType API function.
15730         * loader/dos/dosmod.c, loader/dos/dosmod.h, loader/dos/dosvm.c, loader/dos/module.c:
15731         Ove Kaaven <ovek@arcticnet.no>
15732         Added some new dosmod communication possibilities, including
15733         activating a dosmod-specific setitimer(), and the capture of some
15734         common signals, which is returned to Wine (previously a SIGILL
15735         would just cause a "dosmod sync lost" without explanation, now it
15736         invokes the Wine debugger). Invokes int 08 upon receipt of dosmod
15737         SIGALRM, thus simulating the DOS timer. Made DOS interrupt calls
15738         be reported by -debugmsg +relay instead of -debugmsg +int. And
15739         fixed non-i386 compilation of dosmod. (Anything else?!)
15741         * loader/main.c, windows/win.c:
15742         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15743         Desktop window queue handling adapted.
15745         * windows/clipboard.c, windows/hook.c, windows/timer.c, windows/winpos.c:
15746         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15747         Queue handling adapted to new queue routines.
15749         * windows/message.c, windows/queue.c, if1632/user.spec, include/queue.h, include/task.h:
15750         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15751         Implemented stub for InitThreadInput.
15752         Use GetThreadQueue/GetFastQueue instead of GetTaskQueue.
15754         * loader/task.c, miscemu/main.c:
15755         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15756         Use Callout table instead of direct GetProcAddress.
15757         UserYield moved to USER.
15759         * include/callback.h, misc/callback.c, if1632/thunk.c:
15760         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15761         Callout table (for KERNEL->USER calls) added.
15762         Callbacks->CallPostAppMessageProc removed.
15764         * misc/callback.c, windows/x11drv/event.c, include/callback.h, include/queue.h, include/task.h, loader/task.c, if1632/thunk.c:
15765         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15766         Handle non-hardware X events correctly with native USER
15767         (removed reference to MESSAGEQUEUE from KERNEL code).
15768         Handle Expose events with native USER.
15770         * misc/crtdll.c:
15771         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
15772         Better _ultoa().
15774         * win32/time.c: Rein Klazes <rklazes@casema.net>
15775         Fix small problem in GetTimeZoneInformation().
15777         * windows/x11drv/keyboard.c: Rein Klazes <rklazes@casema.net>
15778         Lowest scan code seems to be 1, not zero.
15780         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
15781         Stubs for IDirect3D(2)::CreateLight and CreateDevice to avoid crashes.
15783         * dlls/ntdll/rtl.c, relay32/ntdll.spec, dlls/ntdll/nt.c:
15784         Juergen Schmied <juergen.schmied@metronet.de>
15785         New stubs.
15787         * dlls/shell32/iconcache.c:
15788         Juergen Schmied <juergen.schmied@metronet.de>
15789         Fixes crash when running without external shell32.dll.
15791         * windows/winproc.c: Juergen Schmied <juergen.schmied@metronet.de>
15792         More messages [LB_*,EM_*] translated 32A from/to 32W.
15794         * relay32/user32.spec: Juergen Schmied <juergen.schmied@metronet.de>
15795         Dest buffer was printed out as str.
15797         * misc/ver.c: Juergen Schmied <juergen.schmied@metronet.de>
15798         Getting strings with VerQueryValue32W was broken. Complete
15799         reconstruction of the function.
15801         * misc/toolhelp.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
15802         Fix number and type of args in debugging statements.
15804         * ole/storage.c: Marcus Meissner <marcus@mud.de>
15805         IStorage32 vtable was missing 3 stub entries.
15807 Fri Dec 18 17:38:39 1998  Alexandre Julliard  <julliard@winehq.com>
15809         * include/wingdi.h, objects/font.c, relay32/gdi32.spec:
15810         Douglas Ridgway <ridgway@winehq.com>
15811         Documentation for TranslateCharsetInfo.
15813         * dlls/wnaspi32/winaspi32.c, if1632/wprocs.spec, dlls/winaspi/winaspi16.c:
15814         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
15815         Make the DOSASPI part use the excellent DPMI RMCB implementation done
15816         by Ove Kaaven, which makes the code _much_ cleaner.
15818         * Make.rules.in, Makefile.in, configure, configure.in:
15819         Todd Vierling <tv@pobox.com>
15820         Use -lwine for linking.
15822         * windows/message.c, windows/queue.c:
15823         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15824         Bugfix: always clear QS_... from *both* changeBits and waitBits.
15825         Bugfix: queue->hSendingTask is *queue* handle, not task handle.
15827         * if1632/storage.spec, include/interfaces.h, include/objbase.h, include/storage.h, ole/ifs.c, ole/storage.c:
15828         François Gouget <gouget@metaintegration.net>
15829         First step to make it possible to call COM interfaces from C++ code in
15830         Winelib.
15832         * dlls/comctl32/treeview.c, include/treeview.h:
15833         Alex Priem <alexp@sci.kun.nl>
15834         Preliminary tooltip support.
15835         WM_SETFONT/GETFONT added.
15836         Some bug fixes.
15837         Use COMCTL32 heap instead of system heap.
15839         * graphics/painting.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
15840         Implemented PolylineTo.
15842         * relay32/ntdll.spec: Adrian Harvey <adrian@select.com.au>
15843         The Zw... Functions in ntdll.dll are just alternate entry
15844         points for the same functions as the Nt... function of the
15845         same names.  Changed ntdll.spec to match this.
15847         * include/module.h, include/pe_image.h, loader/module.c, loader/pe_image.c, relay32/builtin32.c:
15848         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
15849         Reorganized PE module loading to prepare for elf-dll loader.
15850         WINE_MODREF creation moved to one central location.
15851         Bugfix: correctly select native/built-in version if .DLL
15852         extension is missing in LoadLibrary call.
15854         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
15855         Changed error values MCI_INTERNAL to their correct values.
15857         * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
15858         Removed warning.
15860         * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
15861         No longer sending directly messages to DriverProc but rather go through
15862         MCI layer (required for open/close).
15864         * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
15865         Removed incorrect patch for MCI_OPEN anc MCI_CLOSE parameters (thanks to Robert Riggs
15866         for pointing out the bug, see the fix in mcistring.c)
15867         Fixed MCI seeking on CD audio.
15869         * include/winerror.h: Juergen Schmied <juergen.schmied@metronet.de>
15870         Stubs for WaitNamedPipe[A|W].
15872         * dlls/shell32/classes.c, dlls/shell32/dataobject.c, dlls/shell32/iconcache.c, dlls/shell32/shell32_main.h, dlls/shell32/shlfolder.c, include/shell.h, relay32/shell32.spec:
15873         Juergen Schmied <juergen.schmied@metronet.de>
15874         Small fixes.
15876         * dlls/shell32/shellord.c:
15877         Juergen Schmied <juergen.schmied@metronet.de>
15878         Stub Control_FillCache_RunDLL.
15880         * dlls/shell32/shell32_main.c:
15881         Juergen Schmied <juergen.schmied@metronet.de>
15882         SHGetFileInfo32A: get SHGFI_SYSICONINDEX implemented.
15884         * dlls/shell32/pidl.c: Juergen Schmied <juergen.schmied@metronet.de>
15885         ILAppend seems to work now.
15887         * relay32/kernel32.spec, win32/kernel32.c:
15888         Juergen Schmied <juergen.schmied@metronet.de>
15889         Stubs for WaitNamedPipe[A|W].
15891 Tue Dec 15 18:04:58 1998  Alexandre Julliard  <julliard@winehq.com>
15893         * files/directory.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
15894         Fix GetTempPath32 if count=0.
15896         * configure, configure.in, include/config.h.in, include/multimedia.h, multimedia/audio.c, multimedia/dsound.c, multimedia/init.c, multimedia/mcicda.c, multimedia/mcimidi.c, multimedia/midi.c, multimedia/mixer.c, multimedia/mmaux.c:
15897         Todd Vierling <tv@pobox.com>
15898         - add -lossaudio if needed, and a check for <soundcard.h>, to configure.in
15899           (run autoconf after this).  Note that the check has been altered to break
15900           out of the AC_CHECK_HEADERS after the first match - this is so
15901           <sys/soundcard.h>, if found on NetBSD (a `real' OSS), will not conflict
15902           with the emulated ossaudio.
15903         - check for <soundcard.h> along with the other two in a mutually-exclusive
15904           manner in the various *.c files that need it; change include of
15905           "mmsystem.h" to "multimedia.h" so this logic is all in one place
15906         - change mcicda.c to allow for CD audio manipulation on NetBSD.  This
15907           includes:
15908           * changing ioctl() calls to be NON-SPLIT with exactly 3 args; on NetBSD
15909             ossaudio, ioctl() is #defined to be _oss_ioctl by <soundcard.h>, and
15910             neither splitting with #-directives nor a two-arg ioctl work;
15911           * changing the #if logic to allow both FreeBSD and NetBSD to share the
15912             appropriate code blocks
15913         - block out MIDI code for NetBSD (init.c) and/or missing SNDCTL_MIDI_INFO
15914           (midi.c, mcimidi.c).  NetBSD's OSS emulation does not (yet) support MIDI.
15915         Thanks go to mycroft@netbsd.org for the 99% bulk of this work.
15917         * tsx11/X11_calls, tsx11/ts_xutil.c, windows/x11drv/wnd.c, include/ts_xutil.h:
15918         Dirk Thierbach <thierbach@mathematik.tu-darmstadt.de>
15919         Set the class hints for managed windows.
15921         * files/dos_fs.c: Juergen Schmied <juergen.schmied@metronet.de>
15922         Bugfix: GetFullPathName sets lpFilePart only when the last element
15923         does not end with '\'.
15925         * windows/message.c, windows/win.c, include/commctrl.h, include/commdlg.h, include/ddeml.h, include/mouse.h, include/shlobj.h, include/winbase.h, include/windows.h, include/winerror.h, include/wingdi.h, include/wintypes.h, misc/ddeml.c, objects/bitmap.c, objects/brush.c, objects/dc.c, objects/font.c, objects/gdiobj.c, relay32/gdi32.spec, relay32/user32.spec, controls/menu.c, dlls/comctl32/commctrl.c, graphics/bitblt.c, graphics/escape.c, graphics/metafiledrv/init.c, graphics/painting.c, graphics/path.c, if1632/user.spec:
15926         Paul Quinn <paulq@COREL.CA>
15927         Lots of new defines and stubs.
15929         * Make.rules.in, Makefile.in, configure, configure.in:
15930         Todd Vierling <tv@pobox.com>
15931         These patches add support for --enable-dll on NetBSD, and may even do so for
15932         FreeBSD a.out.  Now, NetBSD can use libwine as a shared object.  Thanks to
15933         mycroft@netbsd.org for doing this work!
15935         * tools/wrc/writeres.c: Todd Vierling <tv@pobox.com>
15936         Global constructors using `.section .ctors' are bogus for NetBSD's
15937         assembler. Use the appropriate `.stabs' when on NetBSD.
15939         * ole/variant.c: Todd Vierling <tv@pobox.com>
15940         Undefined CHAR_MAX and CHAR_MIN (#defined by NetBSD's system headers).
15941         Fixed some constants that are too big for a plain `int'.
15943         * ole/variant.c: Marcus Meissner <marcus@jet.franken.de>
15944         Check for MAXFLOAT if FLT_MAX isn't there.
15946         * graphics/psdrv/Makefile.in: Todd Vierling <tv@pobox.com>
15947         graphics/psdrv forgets to pull in @DLLFLAGS@, and so is compiled non-PIC if
15948         using --enable-dll.
15950         * include/wingdi.h, include/wintypes.h, include/winuser.h, include/windows.h:
15951         Veksler Michael <mveksler@techunix.technion.ac.il>
15952         Move declarations from windows.h to wingdi.h and winuser.h.
15954 Mon Dec 14 18:15:11 1998  Alexandre Julliard  <julliard@winehq.com>
15956         * win32/console.c, files/Makefile.in, files/async.c, files/file.c, include/async.h, include/file.h, loader/signal.c, misc/winsock_dns.c:
15957         Marcus Meissner <marcus@jet.franken.de>
15958         Made async IO (SIGIO) stuff from WINSOCK generic useable.
15959         Added async IO support to FILE and CONSOLE objects.
15961         * misc/winsock.c: Stephen Langasek <vorlon@dodds.net>
15962         Prevent segfault in setsockopt when optname is SO_LINGER and optval is
15963         null.
15965         * dlls/shell32/shell32_main.h, dlls/shell32/shellord.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, relay32/shell32.spec:
15966         Juergen Schmied <juergen.schmied@metronet.de>
15967         Some cleanup.
15969         * dlls/shell32/iconcache.c:
15970         Juergen Schmied <juergen.schmied@metronet.de>
15971         SHMapPIDLToSystemImageListIndex try's to determine and load the exact
15972         icon for files (by type) now.
15974         * dlls/shell32/classes.c: Juergen Schmied <juergen.schmied@metronet.de>
15975         New HCR_GetDefaultIcon (internal).
15977         * include/dosexe.h, loader/dos/dosvm.c, loader/dos/module.c, msdos/dosmem.c, msdos/dpmi.c:
15978         Ove Kaaven <ovek@arcticnet.no>
15979         Moved DPMI wrapper allocation code to dosmem.c to REALLY make the
15980         RMcall shortcuts independent of dosmod. SS had been left out of
15981         the REALMODECALL copy routines for some reason, fixed now. Also
15982         cleaned up a few compiler warnings.
15984         * graphics/x11drv/xfont.c: Ian Pilcher <pilcher@concentric.net>
15985         Added ability to specify X fonts used for Helv and Tms Rmn typefaces
15986         with DefaultSerif and DefaultSansSerif INI keys.
15988         * tools/wrc/parser.y, tools/wrc/wrc.h, tools/wrc/writeres.c, tools/wrc/CHANGES:
15989         Bertho Stultiens <bertho@panter.soci.aau.dk>
15990         - Added a global label for elf-dll linking and a long with the resource
15991           size and a long with the directory size.
15992         - Killed an annoying warning since version 1.0.0 in parser.y about a
15993           var being used before init.
15995         * include/shlobj.h, dlls/shell32/shelllink.c, dlls/shell32/shellole.c:
15996         Juergen Schmied <juergen.schmied@metronet.de>
15997         Adds the IPersistFile Interface to IShellLink[W] and gave both own
15998         IClassFactorys.
16000         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
16001         (ReadConsole32A): small and stupid bug fixed
16002         (WriteConsoleOutput): bug fixed (attributes may change within lines)
16003         and enhanced speedwise by using buffering.
16004         (CONSOLE_string_2_IR): enhanced, now gets scancodes and virtualkeycodes
16006         * misc/crtdll.c, relay32/crtdll.spec:
16007         Marcus Meissner <marcus@jet.franken.de>
16008         _ultoa implemented.
16010         * controls/static.c: Marcus Meissner <marcus@jet.franken.de>
16011         Small hack to get rid of annoying err:resource: message for
16012         MessageBoxes.
16014         * relay32/dsound.spec: Ian Schmidt <irsman@iag.net>
16015         Fix off-by-1 error in DirectSound ordinals. Thanks to Robert Riggs for
16016         the pointer.
16018         * graphics/ddraw.c: Stephen Crowley <crow@debian.org>
16019         Save the original video mode before going fullscreen and restore it
16020         when the last DirectDraw_Release is called. Also fix a problem where
16021         the viewport wasn't set to 0,0.
16023         * console/xterm.c: Joseph Pranevich <jpranevich@lycos.com>
16024         Made more cross-platform by changing ->_fileno to fileno().
16026         * windows/win.c: NF Stevens <norman@arcady.u-net.com>
16027         Fix the Z-order of maximized/minimized child windows.
16029         * graphics/x11drv/xfont.c:
16030         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16031         XLFDs should be well-formed (14 hyphens) to match scalable fonts.
16032         Stop slant field becoming wildcarded too early.
16034         * windows/focus.c: Marcus Meissner <marcus@jet.franken.de>
16035         (FOCUS_SwitchFocus) check for pFocusTo == NULL instead of hFocusTo==0.
16037         * ole/ole2nls.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16038         Hack OLE_GetFormat* to return something if datelen = 0.
16039         Remove unnecessary WINAPI's.
16041 ----------------------------------------------------------------
16042 Fri Dec 11 15:04:11 1998  Alexandre Julliard  <julliard@winehq.com>
16044         * include/process.h, include/tlhelp32.h, include/toolhelp.h, misc/toolhelp.c, scheduler/k32obj.c, scheduler/process.c:
16045         Patrick Spinler <spinler.patrick@mayo.edu>
16046         Implemented CreateToolhelp32Snapshot, including two of the routines
16047         using snapshots, Process32First and Process32Next.
16049         * relay32/oleaut32.spec, include/mapidefs.h, include/oleauto.h, include/win16drv.h, include/wintypes.h, ole/compobj.c, ole/variant.c:
16050         Justin Bradford <justin@ukans.edu>
16051         Most of the currency variant conversion functions implemented.
16052         Minor bugfixes and header tidying.
16054         * Makefile.in, configure, configure.in, dlls/rasapi32/Makefile.in, dlls/rasapi32/rasapi.c, include/debug.h, include/debugdefs.h, include/ras.h, include/wintypes.h, relay32/rasapi32.spec:
16055         Marcus Meissner <marcus@jet.franken.de>
16056         Added RasEnumConnections stub.
16058         * dlls/shell32/shell32_main.h, dlls/shell32/shellpath.c, dlls/shell32/shlview.c:
16059         Juergen Schmied <juergen.schmied@metronet.de>
16060         Bugfix in PathCombine32[A|W].
16061         View menu in explorer and on right mouse button is working now.
16063         * dlls/shell32/pidl.c: Juergen Schmied <juergen.schmied@metronet.de>
16064         Implemented  ILGetDisplayName.
16066         * dlls/shell32/classes.c, dlls/shell32/shellord.c:
16067         Juergen Schmied <juergen.schmied@metronet.de>
16068         Started implementation of ShellExecuteEx32A.
16069         Small changes.
16071         * dlls/shell32/.cvsignore, dlls/shell32/Makefile.in, dlls/shell32/shres.rc:
16072         Juergen Schmied <juergen.schmied@metronet.de>
16073         Moved menu resources to rc-file.
16075         * include/pe_image.h, ole/ole2nls.c, win32/file.c:
16076         Marcus Meissner <marcus@jet.franken.de>
16077         Two debug messages clarified, one useless prototype removed.
16079         * include/oleauto.h, ole/variant.c:
16080         Marcus Meissner <marcus@jet.franken.de>
16081         294 missing WINAPI added.
16083         * tools/testrun: Marcus Meissner <marcus@jet.franken.de>
16084         Kill swapped out (wine) processes too and truncate diff after some xxx
16085         lines.
16087         * ole/ole2nls.c: Juergen Schmied <juergen.schmied@metronet.de>
16088         Fixed SetLastError with wrong value.
16090         * misc/printdrv.c, objects/enhmetafile.c, graphics/painting.c, include/windows.h:
16091         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16092         Implement AbortDoc16, move AbortDoc32 and StartDoc32W to
16093         misc/printdrv.c and fix a few compile warnings.
16095         * win32/ordinals.c, windows/driver.c, windows/msgbox.c, windows/multimon.c, windows/user.c, dlls/comctl32/animate.c, dlls/comctl32/comboex.c, dlls/ntdll/nt.c, if1632/typelib.spec, include/file.h, loader/dos/module.c, msdos/int21.c, ole/ole2nls.c, ole/typelib.c:
16096         Andreas Mohr <a.mohr@mailto.de>
16097         Fixed a bunch of compiler warnings.
16099         * files/file.c: Marcus Meissner <marcus@jet.franken.de>
16100         Added Win32 synchro to FILEs (useful only for terminal handles).
16102 Thu Dec 10 16:04:51 1998  Alexandre Julliard  <julliard@winehq.com>
16104         * objects/bitmap.c, objects/dc.c, objects/enhmetafile.c, objects/font.c, objects/metafile.c, relay32/comctl32.spec, relay32/gdi32.spec, relay32/kernel32.spec, relay32/mpr.spec, relay32/shell32.spec, relay32/tapi32.spec, relay32/user32.spec, relay32/winspool.spec, win32/console.c, win32/kernel32.c, win32/time.c, windows/input.c, windows/message.c, graphics/metafiledrv/init.c, if1632/ddeml.spec, include/commctrl.h, include/ddeml.h, include/shlobj.h, include/windows.h, include/wintypes.h, memory/string.c, misc/ddeml.c, misc/network.c, misc/printdrv.c, misc/tapi32.c, controls/edit.c, dlls/comctl32/Makefile.in, dlls/comctl32/comctl32undoc.c, dlls/comctl32/propsheet.c, dlls/shell32/shell32_main.c, files/file.c, graphics/painting.c:
16105         Francis Beaudet <francis@macadamian.com>
16106         Sylvain St-Germain <sylvain@macadamian.com>
16107         Thuy Nguyen <thuy@macadamian.com>
16108         Lots of new stubs.
16110         * msdos/vxd.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16111         Let the System_Time_Selector clock tick.
16113         * loader/dos/module.c, miscemu/instr.c, msdos/dosmem.c, graphics/dispdib.c, graphics/vga.c, include/miscemu.h, include/vga.h:
16114         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16115         Adapted to CreateSystemTimer interface change.
16117         * if1632/system.spec, if1632/thunk.c, include/callback.h, include/windows.h, misc/callback.c, misc/system.c:
16118         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16119         Cleaned up CreateSystemTimer interface for use with 32-bit callbacks.
16120         (NOTE: 16-bit callbacks still don't work!)
16122         * windows/mdi.c: NF Stevens <norman@arcady.u-net.com>
16123         - Handle WM_MDIRESTORE by calling WM_SYSCOMMAND for
16124         the child window so that the system menu is set correctly.
16125         - In MDICascade and MDITile use WM_MDIRESTORE message
16126         to restore maximized window so that system menu is
16127         handled correctly.
16129         * include/oleauto.h, include/winerror.h, ole/Makefile.in, ole/typelib.c, ole/variant.c, relay32/oleaut32.spec:
16130         Jean-Claude Cote <jean-claude@macadamian.com>
16131         Added implementation of the VARIANT APIs.
16133         * files/drive.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16134         Fixed DRIVE_GetFreeSpace to handle space > 4 GByte.
16136         * dlls/comctl32/treeview.c: Alex Priem <alexp@sci.kun.nl>
16137         handle TVIF_TEXT by TREEVIEW_SetItem according to MS documentation.
16138         better handling of LPSTR_TEXTCALLBACK32A
16139         TREEVIEW_GetNext|PrevListItem didn't descend into visible child items.
16141         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
16142         Warn if two .exes conflict with each other and the second does not
16143         have relocation records.
16145         * misc/commdlg.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16146         Fixed GetFileTitle32A not filling up lpTitle if lpFile didn't
16147         contain '/','\\' or ':'.
16149         * graphics/ddraw.c: Stephen Crowley <crow@debian.org>
16150         Fixed a potential crash if a usable video mode is not detected.
16152         * tools/make_authors: Script to generate authors files
16154         * include/dinput.h, windows/dinput.c: Robert Riggs <rriggs@tesser.com>
16155         Stubs for IDirectInputEffect and IDirectInputDevice2A methods,
16156         as well as AddRef(), GetCapabilites(), EnumObjects(),
16157         GetProperty(), GetObjectInfo(), GetDeviceInfo(), Initialize(),
16158         and RunControlPanel() for IDirectInputDevice.
16160         * graphics/ddraw.c: Robert Riggs <rriggs@tesser.com>
16161         Set window focus in  _common_IDirectDraw_SetDisplayMode().
16163         * multimedia/mcicda.c: Robert Riggs <rriggs@tesser.com>
16164         Accept MCI_OPEN and MCI_CLOSE messages in MCICDAUDIO_DriverProc32().
16166         * include/win.h, windows/win.c, windows/x11drv/event.c, windows/x11drv/wnd.c:
16167         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16168         Removed deferred Expose events handling.
16170         * windows/dce.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16171         Don't clip VisRgn against X desktop.
16173         * loader/module.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16174         LoadModule32/WinExec32 should return 16-bit hInstance/hTask.
16176         * graphics/x11drv/xfont.c:
16177         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16178         Sanity check on font size.
16180         * dlls/comctl32/treeview.c: Marcus Meissner <marcus@jet.franken.de>
16181         Missing parentheses added.
16183 Wed Dec  9 16:37:05 1998  Alexandre Julliard  <julliard@winehq.com>
16185         * loader/task.c, relay32/kernel32.spec, win32/console.c, include/wincon.h:
16186         Marcus Meissner <marcus@jet.franken.de>
16187         Enhanced Win32 Console (XTERM)
16188         - inputhandling enhanced (keys and mouseclicks)
16189         - win32 synchronization (partial)
16190         - lots of enhancements to drawing functions
16191         - simple/complex console (simple-stdin/stdout -> complex-xterm).
16193         * console/Makefile.in, console/generic.c, console/interface.c, console/ncurses.c, console/tty.c, console/xterm.c, include/console.h:
16194         Joseph Pranevich <jpranevich@lycos.com>
16195         Add a driver to open up a new xterm window whenever console output is
16196         needed. Derived from console/win32.c but we are not yet ready to merge
16197         the code completely.
16199         * graphics/x11drv/xfont.c, include/windows.h, tools/fnt2bdf.c:
16200         Pablo Saratxaga <srtxg@chanae.alphanet.ch>
16201         Improved the handling of font encodings.
16203         * msdos/dpmi.c, include/miscemu.h: Ove Kaaven <ovek@arcticnet.no>
16204         Implemented DPMI RMCBs using the DOS subsystem, and a few other
16205         improvements. Also, some special-cased shortcut paths will allow some
16206         common real-mode call/RMCB combinations to work even without calling the
16207         DOS subsystem, thus letting APIs like DOSASPI work without any dirty hacks
16208         even on platforms that cannot use dosmod.
16210         * multimedia/time.c, ole/compobj.c, files/change.c, loader/module.c, misc/lzexpand.c, misc/main.c, controls/menu.c, controls/scroll.c:
16211         Marcus Meissner <marcus@jet.franken.de>
16212         Some unnecessary #include and messages removed.
16214         * ole/ole2nls.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16215         Some small corrections to EnumSystemLocales32AW
16217 Tue Dec  8 15:06:39 1998  Alexandre Julliard  <julliard@winehq.com>
16219         * tools/make_X11wrappers, tsx11/ts_xf86vmode.c, graphics/ddraw.c:
16220         Tried another kludge for the Xmd.h problem.
16222         * tsx11/Makefile.in, tsx11/X11_calls, tsx11/ts_xf86vmode.c, configure, configure.in, graphics/ddraw.c, include/acconfig.h, include/config.h.in, include/ts_xf86vmode.h, tools/make_X11wrappers:
16223         Stephen Crowley <crow@debian.org>
16224         Added fullscreen DGA support.
16226         * misc/main.c: Pablo Saratxaga <srtxg@chanae.alphanet.ch>
16227         Fixed dummy entries in MAIN_ParseLanguageOption().
16229         * include/mmsystem.h, multimedia/mcicda.c:
16230         Brian Gerst <bgerst@quark.vpplus.com>
16231         Properly implement MCI_CDA_STATUS_TYPE_TRACK.
16232         Fix an off-by-one bug with MCI_STATUS_LENGTH.
16234         * windows/x11drv/event.c: Marcus Meissner <marcus@jet.franken.de>
16235         Superflous WINAPI removed.
16237         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
16238         Warn about invalid entrypoints (created by viruses) which result in
16239         Wine crashes.
16241         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
16242         Create X11 palette on DirectDrawSurface::SetPalette, not before (we
16243         might not have an X11 window yet).
16245         * loader/main.c: Marcus Meissner <marcus@jet.franken.de>
16246         Move TWEAK_Init from USER to GDIInit.
16248         * graphics/painting.c, if1632/gdi.spec, include/windows.h, misc/printdrv.c, misc/spooler.c, relay32/gdi32.spec:
16249         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16250         Fix for SetAbortProc16, stub for SetAbortProc32 and tidy up some other
16251         printing functions.
16253         * windows/focus.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16254         Fix includes.
16256         * graphics/x11drv/text.c:
16257         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16258         Fix X11DRV_ExtTextOut for rotated text if either of lpDx, breakExtra
16259         or charExtra are non-zero.
16261         * include/Attic/graphics.h, misc/shell.c, windows/Attic/graphics.c, windows/Makefile.in, windows/nonclient.c, windows/scroll.c, controls/button.c, controls/combo.c, controls/desktop.c, controls/icontitle.c, controls/menu.c, controls/scroll.c, dlls/comctl32/updown.c, dlls/shell32/shell32_main.c, dlls/shell32/shellord.c, graphics/metafiledrv/graphics.c, graphics/x11drv/graphics.c:
16262         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16263         Replace GRAPH_ functions with Win SDK equivalents.
16265 Mon Dec  7 16:23:42 1998  Alexandre Julliard  <julliard@winehq.com>
16267         * files/dos_fs.c: Alexander Larsson <alla@lysator.liu.se>
16268         Reverted previous patch.
16270         * include/dosexe.h: Ove Kaaven <ovek@arcticnet.no>
16271         Don't define MZ_SUPPORTED on non-i386 platforms.
16273         * loader/dos/module.c, msdos/dpmi.c: Ove Kaaven <ovek@arcticnet.no>
16274         Fixed DPMI_CallRMProc (I think).
16276         * misc/network.c, relay32/mpr.spec:
16277         Marcus Meissner <marcus@jet.franken.de>
16278         Stub for NPSGetProviderHandleA.
16280         * windows/x11drv/keyboard.c: Brian Gerst <bgerst@quark.vpplus.com>
16281         The scancode Windows send for extended keys is the scancode of the
16282         unextended equivalent of the key, plus the extended flag.
16284         * dlls/winaspi/winaspi16.c:
16285         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
16286         Fixed a real mode problem.
16288         * loader/ne/module.c:
16289         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
16290         NE_MODULE.stack_size was set to a ridiculously small value of 5.
16291         Windows sets 0x1400 in such cases for programs.
16293         * controls/static.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16294         We don't yet want the static control to call DestroyIcon.
16296         * windows/class.c: NF Stevens <norman@arcady.u-net.com>
16297         Added case for GCW_ATOM int GetClassLong32A.
16299         * misc/network.c, relay32/mpr.spec: Gael de Chalendar <gael@limsi.fr>
16300         Stub for WNetOpenEnum32W.
16302         * multimedia/dsound.c, relay32/dsound.spec:
16303         Robert Riggs <rriggs@tesser.com>
16304         More general code cleanup for readability.
16305         A few more parameter validation checks.
16306         Return DS_OK rather than 0 in a number of functions.
16307         Fixed primary buffer ref count bug in CreateSoundBuffer().
16308         Handle 1-3 byte sound fragments that would cause buffer overruns.
16309         Clear primary buffer with a neutral value instead of always 0
16310         (because 128 is neutral for 8-bit sound).
16311         Fix bug with mixing 8-bit sound into the primary buffer.
16312         Broke out the main block in DSOUND_thread() to another function for
16313         readability.
16314         Handle "no audio" and "audio busy" cases properly when initializing
16315         dsound. Rename DllCanUnloadNow() to DSOUND_DllCanUnloadNow().
16317         * debugger/hash.c: Ove Kaaven <ovek@arcticnet.no>
16318         Made variables optimized into registers accessible.
16320         * relay32/user32.spec:
16321         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16322         The spec definition for MonitorFromWindow was wrong.
16324         * msdos/int21.c: Stefan Leichter <sle@camline.com>
16325         File handle bug fix.
16327         * documentation/common_controls: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16328         Added paragraph about different dll versions and structure sizes.
16330         * include/commctrl.h: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16331         Added missing TOOLINFO structure.
16333         * multimedia/mmsystem.c: Andreas Mohr <a.mohr@mailto.de>
16334         Fixed a heap bug.
16336         * loader/task.c, memory/local.c, memory/selector.c, misc/callback.c, msdos/dpmi.c, msdos/int41.c, msdos/vxd.c, if1632/kernel.spec, if1632/thunk.c, include/callback.h, include/ldt.h, include/windows.h:
16337         Andreas Mohr <a.mohr@mailto.de>
16338         - Several kernel.spec return type mismatch fixes
16339         - [GS]etSelectorBase Win32s offset support by Ulrich Weigand (thanks v.m. !!)
16340         - Move AppToWine/WineToApp macros as W32S_APP2WINE etc. to ldt.h
16341         - LocalNotify() basic support
16342         - Fixes for local heap handling with heap handles created by Virtual*()
16344         * graphics/x11drv/xfont.c:
16345         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16346         Bugfix: -microsoft-symbol encoding was not recognized.
16348         * windows/win.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16349         Bugfix: WIN_ResetQueueWindows would skip some windows.
16351         * tools/build.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16352         Allow recursively reentering CALL32_LargeStack.
16354         * include/ttydrv.h, windows/ttydrv/.cvsignore, windows/ttydrv/Makefile.in, windows/ttydrv/clipboard.c, windows/ttydrv/event.c, windows/ttydrv/init.c, windows/ttydrv/keyboard.c, windows/ttydrv/mouse.c, windows/ttydrv/wnd.c, Makefile.in, configure, configure.in:
16355         Patrik Stridvall <ps@leissner.se>
16356         Added the new TTY driver.
16358         * include/clipboard.h, include/keyboard.h, include/message.h, include/win.h, include/x11drv.h, windows/clipboard.c, windows/defwnd.c, windows/dinput.c, windows/display.c, windows/event.c, windows/focus.c, windows/keyboard.c, windows/message.c, windows/nonclient.c, windows/win.c, windows/winpos.c, windows/x11drv/Makefile.in, windows/x11drv/clipboard.c, windows/x11drv/event.c, windows/x11drv/init.c, windows/x11drv/keyboard.c, windows/x11drv/mouse.c, windows/x11drv/wnd.c:
16359         Patrik Stridvall <ps@leissner.se>
16360         Moved more code to the X11 driver.
16362 Thu Dec  3 16:29:56 1998  Alexandre Julliard  <julliard@winehq.com>
16364         * msdos/int10.c, msdos/int16.c, msdos/int21.c, msdos/int29.c:
16365         Joseph Pranevich <jpranevich@lycos.com>
16366         Call the new console driver for some routines. This is not completely
16367         done yet and more for testing purposes.
16369 Wed Dec  2 19:58:09 1998  Alexandre Julliard  <julliard@winehq.com>
16371         * configure.in, console/.cvsignore, console/Makefile.in, console/generic.c, console/interface.c, console/ncurses.c, console/tty.c, include/acconfig.h, include/config.h.in, include/console.h, include/winnt.h, loader/main.c, misc/main.c, Makefile.in, configure:
16372         Joseph Pranevich <jpranevich@lycos.com>
16373         Added console support.
16375         * graphics/x11drv/oembitmap.c, include/bitmap.h, include/gdi.h, include/x11drv.h, loader/main.c, objects/Attic/oembitmap.c, objects/Makefile.in, objects/bitmap.c, objects/cursoricon.c, graphics/metafiledrv/init.c, graphics/psdrv/init.c, graphics/win16drv/init.c, graphics/win16drv/pen.c, graphics/x11drv/Makefile.in, graphics/x11drv/init.c:
16376         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16377         Move OEM resources to the x11drv.
16379         * files/dos_fs.c: Alexander Larsson <alla@lysator.liu.se>
16380         Opening a file in a directory which doesn't exist returns
16381         ERROR_FILE_NOT_FOUND instead of ERROR_PATH_NOT_FOUND.
16383         * memory/atom.c: Marcus Meissner <marcus@jet.franken.de>
16384         Handle atoms "# non number" (oracle client).
16386 Tue Dec  1 16:23:19 1998  Alexandre Julliard  <julliard@winehq.com>
16388         * if1632/kernel.spec, misc/error.c:
16389         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16390         Renamed KERNEL.327 to HandleParamError (as in 'Undoc. Windows').
16391         Fixed wrong ordinals/prototype for MapProcessHandle/GetModuleFileName32.
16392         Added names for some undocumented exports.
16394         * memory/global.c, if1632/thunk.c:
16395         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16396         Implemented GlobalChangeLockCount (KERNEL.365).
16398         * if1632/toolhelp.spec, include/toolhelp.h, memory/heap.c:
16399         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16400         Implemented Local32Info, stubs for Local32First/Next (KERNEL.444-446).
16402         * if1632/gdi.spec, objects/gdiobj.c:
16403         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16404         Implemented GdiFreeResources (GDI.609).
16406         * include/dsound.h, multimedia/dsound.c:
16407         Robert Riggs <rriggs@tesser.com>
16408         Fixed 8-bit WAV format handling (it is unsigned data).
16409         Fixed off-by-one checks for buffer wrap.
16410         Increment ref count for primary buffer in CreateSoundBuffer().
16411         Added DSBPN_OFFSETSTOP support to position notification code.
16412         Lots of minor parameter validation checks.
16413         Stubs for: IDirectSound_initialize(), IDirectSound_Compact(),
16414         and IDirectSound_GetSpeakerConfig().
16415         Fixed freq shifting with 16-bit data problem, fixed 8bit<->16bit
16416         conversion.
16417         Lots of thread locking for DirectSound buffers.
16418         Dealloc primary buffer when dsound is deallocated.
16420         * include/wintypes.h:
16421         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16422         Added the TEXT() and MAKELRESULT() definitions.
16424         * windows/queue.c: Juergen Schmied <juergen.schmied@metronet.de>
16425         Small change.
16427         * Makefile.in: James Juran <jrj120@psu.edu>
16428         Revert misguided change to install_lib that broke -disable-lib
16429         configure option.
16431         * misc/main.c, include/windows.h:
16432         Juergen Schmied <juergen.schmied@metronet.de>
16433         New parameter SPI_GETDRAGFULLWINDOW.
16434         One missing break in SPI_GETDRAGFULLWINDOW.
16436         * dlls/shell32/pidl.c, relay32/shell32.spec:
16437         Juergen Schmied <juergen.schmied@metronet.de>
16438         New functions ILGlobalClone/ILGlobalFree.
16440         * documentation/printing:
16441         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16442         Add a note about WinPrinters.
16444         * relay32/ntdll.spec, relay32/ole32.spec, relay32/user32.spec:
16445         Marcus Meissner <marcus@jet.franken.de>
16446         Added some stubs, some ptr->str conversions.
16448         * graphics/ddraw.c, include/ddraw.h, relay32/ddraw.spec:
16449         Lionel Ulmer <ulmer@directprovider.net>
16450         - added definition of DirectDrawCreateClipper.
16451         - more versatile support of surfaces / better surface description support.
16453         * dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlview.c, include/shell.h, relay32/shell32.spec:
16454         Juergen Schmied <juergen.schmied@metronet.de>
16455         Fixed wrong parameter count for SHChangeNotifyDeregister,  SHFreeUnusedLibraries.
16456         New functions ParseField, Get/SetInstanceExplorer(), PathIsUNC, PathIsRelative.
16457         Stubs SHWaitForFileToOpen, PathFindOnPath.
16459         * relay32/user32.spec: Juergen Schmied <juergen.schmied@metronet.de>
16460         Small changes to print the strings in the relay-trace.
16462         * windows/class.c: NF Stevens <norman@arcady.u-net.com>
16463         The class name needs to be converted to a getptr.
16465         * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16466         Fixed memory/status recovery when error occured in MIDI_mciOpen.
16467         Fixed support for RMID files in MIDI_mciOpen.
16468         Fixed bug for playing MIDI files with tempo changes. Sound output is
16469         now correct, but length of tracks (and therefore of whole file) is not
16470         correct.
16471         Changed error values (INTERNAL => INVALID_FILE) when file cannot be read.
16473         * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16474         Fixed memory/status recovery when error occured in WAVE_mciOpen.
16475         Changed error values (INTERNAL => INVALID_FILE) when file cannot
16476         be read.
16478         * multimedia/msvideo.c, relay32/msvfw32.spec:
16479         Juergen Schmied <juergen.schmied@metronet.de>
16480         Stubs for MCIWndCreate[A|W].
16482         * misc/ver.c: Juergen Schmied <juergen.schmied@metronet.de>
16483         VerQueryValue, bugfix: we cant convert binary data with
16484         HEAP_strdupWtoA (\VarFileInfo\Translation).
16486 Mon Nov 30 17:41:17 1998  Alexandre Julliard  <julliard@winehq.com>
16488         * relay32/advapi32.spec, win32/advapi.c:
16489         Juergen Schmied <juergen.schmied@metronet.de>
16490         Stubs for EnumServiceStatus32, small changes.
16492         * objects/cursoricon.c: Juergen Schmied <juergen.schmied@metronet.de>
16493         Load now the first icon from the *.ani file instead of crashing.
16495         * miscemu/main.c: Marcus Meissner <marcus@jet.franken.de>
16496         Fix warnings in miscemu/main.c.
16498         * include/windows.h:
16499         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16500         - added some defines around the CommPort (PURGE_XXX and MS_XXX_ON)
16501         - added the DLGTEMPLATE and DLGITEMTEMPLATE structures
16502         - added the function definition for StartPage,EndPage,GetCommMask,
16503                 GetCommModemStatus and PurgComm,WaitCommEvent.
16505         * windows/defwnd.c: Paul Quinn <PaulQ@corel.com>
16506         Fixed activation/Focus message order problem when creating a new HWND.
16508         * windows/winpos.c, if1632/user.spec, include/windows.h, relay32/user32.spec:
16509         Paul Quinn <PaulQ@corel.com>
16510         Implementation of ChildWindowFromPointEx functions.
16512         * misc/registry.c: Gavriel State <gavriels@corel.com>
16513         Fixed registry query error value: now returns ERROR_FILE_NOT_FOUND.
16515         * objects/bitmap.c, objects/cursoricon.c, objects/dib.c, objects/palette.c:
16516         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16517         GetSystemPaletteEntries returns palette size if entries==NULL.
16518         Use this instead of COLOR_GetSystemPaletteSize.
16520         * relay32/dsound.spec, multimedia/dsound.c:
16521         Marcus Meissner <marcus@jet.franken.de>
16522         Implemented class factory for dsound.
16524         * relay32/kernel32.spec, misc/comm.c:
16525         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16526         - fixed a minimal error in GetCommMask definition.
16527         - adds stubs for GetCommModemStatus and WaitCommEvent.
16529         * include/xmalloc.h, library/winestub.c:
16530         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16531         Fixes for C++ Winelib compilation.
16533         * ole/compobj.c: Marcus Meissner <marcus@jet.franken.de>
16534         Bugfix: second RegOpenKey should use CLSIDkey instead of HKEY_CLASSES_ROOT.
16536 Fri Nov 27 16:06:08 1998  Alexandre Julliard  <julliard@winehq.com>
16538         * BUGS, documentation/bugreports, documentation/debugging, documentation/no-windows, documentation/wine.man:
16539         James Juran <jrj120@psu.edu>
16540         Documentation updates.
16542         * Makefile.in: James Juran <jrj120@psu.edu>
16543         Fixed 'make install' to really check for libwine.a before installing
16544         it.
16546         * graphics/ddraw.c, include/options.h, misc/main.c:
16547         Stephen Crowley <crow@debian.org>
16548         Added a new cmdline switch to disable XF86 DGA Extensions, -nodga.
16550         * files/drive.c: Andreas Mohr <a.mohr@mailto.de>
16551         Improved GetDiskFreeSpace32A().
16553 Thu Nov 26 16:32:00 1998  Alexandre Julliard  <julliard@winehq.com>
16555         * windows/win.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16556         Remove included color.h.
16558         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
16559         Remove unnecessary check for entrypoint address (test binary was
16560         infected by a virus which uses invalid PE loading stuff).
16562         * graphics/painting.c, relay32/gdi32.spec:
16563         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
16564         Added stubs for Startpage and EndPage.
16566         * if1632/thunk.c, objects/dc.c:
16567         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16568         Removed some unnecessary FIXME outputs.
16570         * if1632/kernel.spec, loader/task.c:
16571         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16572         Implemented KERNEL.602 and stub for KERNEL.490.
16574         * ole/ole2nls.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16575         Bugfix: Do *not* zero out output buffer in GetNumberFormat32[AW].
16577 Wed Nov 25 18:15:53 1998  Alexandre Julliard  <julliard@winehq.com>
16579         * ole/nls/grc.nls, ole/nls/sky.nls, ole/nls/tha.nls, ole/nls/trk.nls, ole/ole2nls.c:
16580         Pablo Saratxaga <srtxg@chanae.alphanet.ch>
16581         Small fixes.
16583         * loader/ne/resource.c, include/module.h, loader/resource.c:
16584         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16585         Moved ...Resource16 routines to loader/resource.c.
16586         Implemented accessing PE-file resources with 16-bit resource routines.
16588         * if1632/kernel.spec, loader/ne/Makefile.in, loader/ne/convert.c:
16589         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16590         Implementation of PE->NE resource conversion routines (KERNEL.615-618).
16592         * include/oleauto.h, ole/ole2disp.c, relay32/oleaut32.spec:
16593         Francis Beaudet <francis@macadamian.com>
16594         Implemented 3 methods: SysAllocStringLen(), SysReAllocStringLen()
16595         and SysStringLen(). Ensure that the BSTR objects were allocated
16596         according to the Windows documentation.
16598         * dlls/shell32/Makefile.in, dlls/shell32/pidl.c, dlls/shell32/shell32_main.c, dlls/shell32/shellord.c, dlls/shell32/shellpath.c, dlls/shell32/shlview.c, include/shell.h, relay32/shell32.spec:
16599         Juergen Schmied <juergen.schmied@metronet.de>
16600         Moved existing path - functions to shellpatch.c.
16601         New: PathRemoveBlanks32A|W,  PathMatchSpec32A|W,
16602         PathSetDlgItemPath32A|W.
16604         * dlls/shell32/folders.c, dlls/shell32/shelllink.c, dlls/shell32/shellole.c, include/shlobj.h:
16605         Juergen Schmied <juergen.schmied@metronet.de>
16606         Moved existing IShellLink class. New stubs for IShellLinkW.
16608         * include/bitmap.h, include/color.h, include/gdi.h, include/x11drv.h, include/x11font.h, misc/main.c, objects/bitmap.c, objects/color.c, objects/dc.c, objects/gdiobj.c, windows/Attic/graphics.c, windows/dce.c, windows/display.c, windows/event.c, windows/input.c, windows/mouse.c, windows/scroll.c, windows/sysmetrics.c, windows/user.c, graphics/ddraw.c, graphics/painting.c, graphics/wing.c, graphics/x11drv/bitblt.c, graphics/x11drv/bitmap.c, graphics/x11drv/brush.c, graphics/x11drv/clipping.c, graphics/x11drv/dib.c, graphics/x11drv/graphics.c, graphics/x11drv/init.c, graphics/x11drv/pen.c, graphics/x11drv/text.c, graphics/x11drv/xfont.c:
16609         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16610         Remove X_DC_INFO from DC and make it behave like any other PDEVICE.
16612         * include/miscemu.h, msdos/dpmi.c, msdos/int21.c, msdos/int25.c, msdos/int26.c, msdos/int2f.c, msdos/xms.c:
16613         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16614         Changed CTX_SEG_OFF_TO_LIN to allow linear addresses in 32-bit
16615         registers (used by DeviceIoControl). Adapted all users.
16617         * include/winioctl.h, win32/device.c:
16618         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16619         Implemented (most) VWin32.VxD DeviceIoControl routines.
16621 Tue Nov 24 20:47:17 1998  Alexandre Julliard  <julliard@winehq.com>
16623         * include/thread.h, scheduler/thread.c:
16624         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16625         Bugfix: Set the TEBF_WIN32 flag in teb.flags for 32-bit threads.
16627         * loader/task.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16628         Bugfix: Call InitThreadInput in GetFastQueue with correct parameter
16629         for 32-bit queues.
16631         * win32/kernel32.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16632         Bugfix: [QF]T_Thunk should clear HIWORD(EAX) on return.
16633         Bugfix: hack for stupid USER32 CallbackGlueLS routine in Common32ThkLS.
16635         * if1632/thunk.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16636         Bugfix: Bad jump generated in THUNK_AllocLSThunklet.
16637         Bugfix: Forgot to convert segptr in AllocLSThunkletCallbackEx.
16639         * graphics/x11drv/xfont.c: Eric Warnke <eric@snowmoon.com>
16640         Don't match against Symbol or Nil fonts.
16642         * memory/global.c: Stephen Crowley <crow@debian.org>
16643         Return the "buffers" and "cached" memory as free since it is
16644         deallocated when a program needs it anyway.
16646         * windows/dialog.c, include/windows.h:
16647         Juergen Schmied <juergen.schmied@metronet.de>
16648         Bugfix: SetDlgItemText32 returns BOOL not void.
16650         * relay32/user32.spec, windows/user.c:
16651         Juergen Schmied <juergen.schmied@metronet.de>
16652         New stubs GetUserObjectInformationA|W.
16654         * relay32/relay386.c: Marcus Meissner <marcus@jet.franken.de>
16655         Removed left over 'show' and useless deadbeef checking which doesn't
16656         work.
16658         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
16659         Adjust broken entrypoint addresses. (win98 notepad.exe)
16661         * documentation/status/multimedia: Eric Pouech <Eric.Pouech@wanadoo.fr>
16662         Updated according to development.
16664         * if1632/mmsystem.spec, relay32/winmm.spec:
16665         Eric Pouech <Eric.Pouech@wanadoo.fr>
16666         Some new stubs (midiStreamXXX functions, some mci functions, and
16667         some mmio functions).
16669         * multimedia/midi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16670         Moved MCI part to mcimidi.c ; added DriverProc.
16672         * multimedia/audio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16673         Moved MCI part to mciwave.c ; added some error checking ; added
16674         DriverProc
16676         * include/debug.h, include/debugdefs.h, multimedia/Makefile.in:
16677         Eric Pouech <Eric.Pouech@wanadoo.fr>
16678         Added mcimidi and mciwave.
16680         * multimedia/mcimidi.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16681         Fixed bug in MCI_INFO command ; fixed pause/resume commands ; fixed
16682         seek command.
16684         * multimedia/mciwave.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16685         Starting writing MCI part ; fixed bug in MCI_INFO command.
16687         * multimedia/mmio.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16688         Added some missing stubs in 32 bit part.
16690         * multimedia/mcistring.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16691         Made use of new 16/32 MCI message handling in mmsystem.c.
16693         * include/mmsystem.h, include/multimedia.h:
16694         Eric Pouech <Eric.Pouech@wanadoo.fr>
16695         Added some new functions/structures definitions.(I couldn't get all
16696         the manifest constants values that MS was referring to in its specs...
16697         if someone has them...)
16699         * multimedia/mcianim.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16700         Added some error checking ; made use of new 16/32 MCI message handling
16701         in mmsystem.c ; fixed bug in MCI_INFO command.
16703         * multimedia/mcicda.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16704         Added some error checking ; made use of new 16/32 MCI message
16705         handling in mmsystem.c.
16706         Added Win95 command to handle cd-rom with both data and audio ; fixed
16707         bug in MCI_INFO command ; shadowing MCI status for devices that can't
16708         get current status ; fixed status not being updated on cd change.
16710         * multimedia/mmsystem.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
16711         Factorized 16/32 bit MCI function by using  message mapping from 16
16712         to 32 bits ; added some new prototypes mciSendCommand, mciSendString,
16713         mci(Set/Get)YieldProc ; started writing midiStreamXXX functions - not
16714         yet working. Fixed some issues regarding asynchronous MCI commands ;
16715         fixed MCI_SYSINFO command.
16717         * resources/sysres_Fr.rc: Eric Pouech <Eric.Pouech@wanadoo.fr>
16718         Fixed some quirks.
16720 Sun Nov 22 18:29:50 1998  Alexandre Julliard  <julliard@winehq.com>
16722         * dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, dlls/shell32/folders.c, dlls/shell32/iconcache.c, dlls/shell32/pidl.h, dlls/shell32/shell32_main.h, dlls/shell32/shlview.c:
16723         Juergen Schmied <juergen.schmied@metronet.de>
16724         Many fixes.
16726         * dlls/shell32/pidl.c: Juergen Schmied <juergen.schmied@metronet.de>
16727         New function: _ILGetExtension.
16729         * dlls/shell32/Makefile.in, dlls/shell32/classes.c:
16730         Juergen Schmied <juergen.schmied@metronet.de>
16731         New file. HKEY_CLASSES_ROOT handling.
16733         * documentation/common_controls: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16734         Updated.
16736         * dlls/comctl32/header.c, dlls/comctl32/status.c, dlls/comctl32/toolbar.c, include/commctrl.h, include/header.h, include/listview.h, include/ole2.h, include/rebar.h, include/status.h, include/toolbar.h, include/tooltips.h:
16737         Eric Kohl <ekohl@abo.rhein-zeitung.de>
16738         Added Unicode support (at least partially).
16740         * ole/Makefile.in, ole/compobj.c, ole/oleobj.c, include/oleobj.h, include/shlobj.h:
16741         Eric Kohl <ekohl@abo.rhein-zeitung.de>
16742         Added IOleAdviseHoler interface (still a dummy) and fixed
16743         CreateOleAdviseHolder().
16745         * dlls/comctl32/commctrl.c, dlls/comctl32/tooltips.c:
16746         Eric Kohl <ekohl@abo.rhein-zeitung.de>
16747         Added global subclassing atom, used by tooltips and updown (not yet).
16749         * dlls/comctl32/rebar.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16750         Improved layout code.
16752         * dlls/comctl32/imagelist.c, relay32/comctl32.spec:
16753         Eric Kohl <ekohl@abo.rhein-zeitung.de>
16754         Fixed ImageList_LoadImage().
16756         * dlls/comctl32/comboex.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16757         Added CMEM_SETITEM32A and message forwarding to combobox.
16759         * ole/moniker.c, relay32/ole32.spec:
16760         Eric Kohl <ekohl@abo.rhein-zeitung.de>
16761         Added stub for CreateItemMoniker().
16763         * dlls/comctl32/comctl32undoc.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16764         Fixed some undocumented function names and implemented DPA_Merge
16765         partially.
16767         * controls/button.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16768         Enabled double click for buttons.
16770         * include/windows.h: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16771         Added command and return constants used by WM_NOTIFYFORMAT.
16773         * objects/brush.c, objects/dc.c, objects/gdiobj.c, objects/pen.c, windows/Attic/graphics.c, graphics/painting.c, graphics/x11drv/bitblt.c, graphics/x11drv/dib.c, graphics/x11drv/graphics.c, graphics/x11drv/text.c, include/dc.h, include/x11drv.h:
16774         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16775         Moved DC_SetupGC functions to graphics/x11drv/graphics.c.
16777         * include/options.h, misc/main.c, ole/ole2nls.c:
16778         Juergen Schmied <juergen.schmied@metronet.de>
16779         Small fixes to get the default language to a sensible value.
16780         Thanks to Pablo.
16782         * ANNOUNCE, DEVELOPERS-HINTS, README, documentation/README.documentation, documentation/how-to-port, documentation/wine.man, documentation/wine.texinfo:
16783         Douglas Ridgway <ridgway@winehq.com>
16784         Miscellaneous small fixes.
16786         * graphics/win16drv/prtdrv.c, if1632/gdi.spec, include/windows.h, objects/metafile.c, objects/region.c, relay32/gdi32.spec:
16787         Andreas Mohr <a.mohr@mailto.de>
16788         Added Win16 implementation for GetRegionData().
16790         * ole/typelib.c: Andreas Mohr <a.mohr@mailto.de>
16791         Enhanced OABuildVersion() to return different version values for
16792         different winvers.
16794         * msdos/int21.c: Andreas Mohr <a.mohr@mailto.de>
16795         Added INT21_ParseFileNameIntoFCB() and some other things to get
16796         COMMAND.COM working.
16798         * relay32/kernel32.spec: Juergen Schmied <juergen.schmied@metronet.de>
16799         Added missing entry for GetNumberFormatW.
16801         * objects/palette.c: Juergen Schmied <juergen.schmied@metronet.de>
16802         Checking for NULL-pointer.
16804         * ole/nls/fra.nls, ole/nls/frb.nls, ole/nls/frc.nls, ole/nls/frl.nls:
16805         Robert Pouliot <krynos@clic.net>
16806         Better OLE support in French languages.
16808         * loader/module.c: Juergen Schmied <juergen.schmied@metronet.de>
16809         Implementation of CreateProcess32W.
16811         * windows/event.c: David Luyer <luyer@ucs.uwa.edu.au>
16812         Queuing of deferred Expose events.
16814         * controls/listbox.c: Marcus Meissner <marcus@jet.franken.de>
16815         LB_GETTEXT: Handle passed NULL buffer.
16817         * controls/combo.c: Marcus Meissner <marcus@jet.franken.de>
16818         CB_GETTEXT: Use lpBuffer instead of lpText for LB_GETTEXT32, handle 0
16819         byte NULL buffer.
16821         * ole/nls/frs.nls, ole/nls/sky.nls, ole/ole2nls.c:
16822         Marcus Meissner <marcus@jet.franken.de>
16823         Turn mega double switch into static table (reduces compile time).
16825         * AUTHORS, include/authors.h: Added Robert Riggs.
16827         * include/d3d.h: Robert Riggs <rriggs@tesser.com>
16828         include ddraw.h, questionable fix for questionable struct/union
16829         construct in MS's D3DVECTOR definition.
16831         * include/dsound.h: Robert Riggs <rriggs@tesser.com>
16832         More flags (DirectX 5.2), DirectSound3DListener and
16833         DirectSound3DBuffer structures, include some required files
16834         (windows.h, compobj.h, and d3d.h).
16836         * multimedia/dsound.c: Robert Riggs <rriggs@tesser.com>
16837         DirectSound3DListener and DirectSound3DBuffer stubs, new mixer code,
16838         primary buffer is implemented closer to what the SDK docs specify,
16839         other SDK documented behaviour enforced. Completed the devcaps list.
16841         * misc/crtdll.c, relay32/crtdll.spec:
16842         Juergen Schmied <juergen.schmied@metronet.de>
16843         New stubs strdate, strtime.
16845         * memory/selector.c:
16846         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
16847         Bugfix: typo in SUnMapLS_IP_EBP_8 lead to stack corruption.
16849         * misc/comm.c: Cliff Wright <cliff@snipe444.org>
16850         Fixed a mask set, and other parity setting bugs for serial ports.
16852         * include/sig_context.h: Vasudev Mulchandani <vasu@teil.soft.net>
16853         Added BSDI sigcontext definitions.
16855         * windows/class.c: Rein Klazes <rklazes@casema.net>
16856         Fixed typo.
16858         * relay32/relay386.c: Marcus Meissner <marcus@jet.franken.de>
16859         Remove now useless RELAY_ShowDebugmsgsRelay check.
16861         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
16862         Do not relocate the pointers in the IMAGE_THREAD_LOCAL_STORAGE
16863         directory, for they seem to be relocated by the standard relocating
16864         mechanism. (Explicitly checked one program using it)
16866         * dlls/shell32/shellord.c, include/shell.h:
16867         Marcus Meissner <marcus@jet.franken.de>
16868         PathAddBackshlash, PathRemoveBackslash: argument is not constant.
16870         * windows/win.c: Marcus Meissner <marcus@jet.franken.de>
16871         Check wndPtr for NULL.
16873         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
16874         BltFast: Honor lPitch, Lock/Unlock surfaces (xlib needs unlock to draw).
16876         * misc/spooler.c, misc/Makefile.in, miscemu/main.c, Makefile.in, graphics/win16drv/init.c, loader/main.c:
16877         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
16878         Takes print spooler functions out of win16drv.
16879         Allows the PostScript driver to go into libwine.
16881         * if1632/gdi.spec, objects/brush.c, objects/palette.c:
16882         Ian Schmidt <irsman@iag.net>
16883         Added stubs for two undocumented GDI routines, SetMagicColors and
16884         SetSolidBrush. This allows Win98 native USER to start up.
16886         * graphics/ddraw.c: Stephen Crowley <crow@debian.org>
16887         Fixed the DGA detection code in ddraw. You don't need root access,
16888         having r+w access to /dev/mem is enough.
16890         * documentation/status/directdraw, graphics/ddraw.c, graphics/wing.c, include/ddraw.h:
16891         Marcus Meissner <marcus@jet.franken.de>
16892         DirectDraw status updated.
16893         Use cooperative window for drawing in xlib implementation if possible.
16894         Slightly restructured IDirectDrawSurface::Blt so it doesn't crash.
16896         * windows/keyboard.c: David Faure <David.Faure@insa-lyon.fr>
16897         Micro patch for AltGr key on german keyboards.
16899         * files/dos_fs.c: Juergen Schmied <juergen.schmied@metronet.de>
16900         Fixes error handling (SetLastError() and return value).
16902         * objects/text.c, include/windows.h: Gael de Chalendar <gael@limsi.fr>
16903         Partially complete GetTextCharsetInfo and corrects return values for
16904         this family of functions.
16906 Sun Nov 15 18:12:12 1998  Alexandre Julliard  <julliard@winehq.com>
16908         * ole/compobj.c: Juergen Schmied <juergen.schmied@metronet.de>
16909         Bug fix.
16911         * objects/dib.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
16912         Fixed retrieval of invalid palette data in GetDIBits().
16914         * windows/winpos.c: John Richardson <jrichard@zealand.mv.com>
16915         Allow SWP_HIDEWINDOW to be called on windows that are already hidden
16916         without unmapping them again.
16918         * windows/scroll.c: Pim Bollen <pim@gimli.iaehv.nl>
16919         Fixed scroll bug in ScrollWindowEx32 which caused garbage on screen
16920         outside desktop window with gtwin.exe (Dutch banking program).
16922         * loader/main.c, memory/atom.c, misc/ddeml.c, windows/class.c, windows/message.c, include/Attic/atom.h, include/global.h:
16923         Small atom fixes.
16925         * objects/dib.c: Dirk Thierbach <thierbach@mathematik.tu-darmstadt.de>
16926         Fixed bug in StretchDIBits32 (wrong origin).
16928         * windows/winproc.c: Juergen Schmied <juergen.schmied@metronet.de>
16929         Small fixes.
16931         * include/ddraw.h, include/ts_xshm.h, tools/make_X11wrappers, tsx11/X11_calls, tsx11/ts_xshm.c, graphics/ddraw.c:
16932         Lionel Ulmer <ulmer@directprovider.net>
16933         Some corrections to the handling of off-screen buffers.
16934         Correction to the EnumDisplayModes function.
16935         Added XShm support to Xlib driver.
16936         Open a DirectX window even when using the DGA driver.
16938         * include/shell.h, include/shlobj.h, misc/shell.c, relay32/shell32.spec, dlls/shell32/Makefile.in, dlls/shell32/contmenu.c, dlls/shell32/dataobject.c, dlls/shell32/folders.c, dlls/shell32/shell32_main.c, dlls/shell32/shell32_main.h, dlls/shell32/shellole.c, dlls/shell32/shellord.c, dlls/shell32/shlfolder.c:
16939         Juergen Schmied <juergen.schmied@metronet.de>
16940         Cleanup, small fixes, a few new stubs.
16942         * dlls/shell32/shlview.c: Juergen Schmied <juergen.schmied@metronet.de>
16943         Handling for listviewstyles, view mode buttons in filedialogs
16944         enabled and handled.
16945         New listview columns Size, Type, Modified for reportview
16946         created and handled.
16948         * dlls/shell32/if_macros.h:
16949         Juergen Schmied <juergen.schmied@metronet.de>
16950         New file, wrapper for IShellBrowser class.
16952         * dlls/shell32/iconcache.c:
16953         Juergen Schmied <juergen.schmied@metronet.de>
16954         New file, some helper functions for icon cache.
16955         Implemented ExtractIconEx; moved SHMapPIDLToSystemImageListIndex,
16956         Shell_GetImageList in this file.
16958         * dlls/shell32/pidl.c, dlls/shell32/pidl.h:
16959         Juergen Schmied <juergen.schmied@metronet.de>
16960         Implemented: ILIsEqal, ILFindChild, _ILGetFileDate, _ILGetFileSize.
16962         * loader/module.c: Juergen Schmied <juergen.schmied@metronet.de>
16963         LoadLibraryEx: show a warning when called with unimplemented parm.
16965         * miscemu/instr.c: Cleaned up a bit.
16967         * memory/selector.c, miscemu/instr.c, tools/build.c:
16968         Marcus Meissner <marcus@jet.franken.de>
16969         Clean invalid selectors on the pop %xs from the STACKFRAME itself
16970         instead of using linked list hack.
16972         * Makefile.in: Removed gets message.
16974         * ole/nls/tha.nls: David Luyer <luyer@ucs.uwa.edu.au>
16975         Added Thai nls-resources.
16977         * ole/nls/README, ole/nls/cze.nls, ole/nls/ese.nls, ole/nls/esg.nls, ole/nls/est.nls, ole/nls/euq.nls, ole/nls/fos.nls, ole/nls/hrv.nls, ole/nls/hun.nls, ole/nls/isl.nls, ole/nls/nor.nls, ole/nls/plk.nls, ole/nls/ptg.nls, ole/nls/rom.nls, ole/nls/slv.nls, ole/nls/sve.nls, ole/ole2nls.c, include/winnls.h:
16978         Pablo Saratxaga <srtxg@chanae.alphanet.ch>
16979         Display the language id for "XXX not supported for your language"
16980         messages.
16981         Added all languages and sublanguages for languages supported in
16982         resources/sysres_Xx.
16984         * ole/ole2.c, relay32/ole32.spec: Gavriel State <gavriels@corel.com>
16985         Add stubs for GetRunningObjectTable32 and OleRegGetUserType.
16987         * ole/moniker.c: Gavriel State <gavriels@corel.com>
16988         Ensure that CreateFileMoniker functions don't return a bogus moniker
16989         object on failure.
16991         * include/class.h, windows/class.c: Gavriel State <gavriels@corel.com>
16992         Added code to manage Ascii and WideChar class names, and to return the
16993         names in the GetClassInfo functions.
16995         * include/winsock.h: Constantine Sapuntzakis <csapuntz@stanford.edu>
16996         Fix to Linux IPX so compiles on non-linux platforms.
16998         * misc/main.c: Marcus Meissner <marcus@jet.franken.de>
16999         Own X11 errorhandler to locate X11 errors. Useful only with -sync.
17001 Sat Nov 14 18:59:30 1998  Alexandre Julliard  <julliard@winehq.com>
17003         * include/color.h, include/imagehlp.h, include/palette.h, memory/global.c, misc/registry.c, windows/defwnd.c:
17004         Juergen Schmied <juergen.schmied@metronet.de>
17005         Fixed warnings, some only visible with -Wstrict-prototypes or -pedantic.
17007         * include/cursoricon.h, include/display.h, include/message.h, objects/cursoricon.c, windows/display.c, windows/mouse.c, windows/x11drv/init.c, if1632/display.spec:
17008         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17009         Moved X11 mouse cursor handling to the DISPLAY driver.
17011         * if1632/thunk.c, include/callback.h, loader/main.c, loader/task.c, misc/callback.c, miscemu/main.c:
17012         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17013         Some fixes to Wine startup/termination sequence with native USER.
17014         Do not call built-in USER signal handler when using native USER.
17016         * debugger/break.c, include/debugger.h, include/task.h:
17017         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17018         Bugfix: -debug didn't work anymore after the last startup sequence patch.
17020         * ole/compobj.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
17021         Fixed list insertion bug in CoLoadLibrary().
17023         * if1632/wprocs.spec, msdos/Makefile.in, msdos/int2f.c, msdos/int41.c, msdos/vxd.c:
17024         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17025         Added stubs for several VxDs / interrupts.
17027         * if1632/thunk.c, include/callback.h, misc/callback.c, graphics/win16drv/init.c:
17028         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17029         Should get win16drv AbortProc working. Hopefully.
17031         * windows/input.c, windows/keyboard.c:
17032         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17033         Moved GetKeyboardLayoutName16 to windows/input.c.
17035         * include/imagehlp.h, include/winnt.h, include/wintypes.h:
17036         Patrik Stridvall <ps@leissner.se>
17037         Moved some declarations from imagehlp.h to common include files.
17039         * relay32/kernel32.spec, win32/thread.c:
17040         Rein Klazes <rklazes@casema.net>
17041         Added implementations for InterlockedExchangeAdd() and
17042         InterlockedCompareExchange().
17044         * win32/console.c, objects/dib.c, objects/enhmetafile.c:
17045         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17046         Fixes a few of the many compiler warnings.
17048         * miscemu/instr.c: Marcus Meissner <marcus@jet.franken.de>
17049         Emulate "mov cr4,eax" (tombraider 3 demo).
17051         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
17052         Do not enumerate D3D devices we can't handle anyway.
17053         Return bitmasks for hi/truecolor depths in EnumDisplayModes.
17055         * if1632/snoop.c, include/snoop.h, relay32/builtin32.c, relay32/snoop.c:
17056         Marcus Meissner <marcus@jet.franken.de>
17057         Speed up relay32, snoop16 and snoop32 include/excludes by doing them
17058         just once at creation time.
17060         * relay32/ole32.spec, ole/compobj.c, ole/ole2.c:
17061         Pavel Roskin <pavel_roskin@geocities.com>
17062         Added stubs for CoRevokeClassObject and OleSetClipboard.
17064         * windows/win.c: Per Ã…ngström <pang@mind.nu>
17065         EnumTaskWindows16: Basing the selection on a window's task is not only
17066         more straightforward than comparing message queues, it also works
17067         better for Win32 applications.
17069         * memory/local.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17070         Changed some of the message classes.
17072         * windows/keyboard.c: David Faure <David.Faure@insa-lyon.fr>
17073         Special case handling of : Shift + arrow, shift + home, ...
17074         X returns a char for it, but Windows doesn't. Ignore X char.
17075         Also added some documentation.
17077         * include/winsock.h, misc/winsock.c:
17078         Stephen Langasek <vorlon@dodds.net>
17079         Bugfixes for IPX code and preliminary groundwork for other address
17080         family support.
17082         * ole/compobj.c: Marcus Meissner <marcus@jet.franken.de>
17083         (CoGetClassObject) one missing CALLBACK, extremely simplified clsid
17084         lookup (Registry is case insensitive).
17086         * relay32/ntdll.spec, win32/advapi.c, dlls/ntdll/rtl.c, relay32/advapi32.spec:
17087         Juergen Schmied <juergen.schmied@metronet.de>
17088         Stubs: SetServiceStatus, RegisterServiceCtrlHandlerA/W,
17089         StartServiceCtrlDispatcher32A/W, RtlSystemTimeToLocalTime,
17090         RtlTimeToTimeFields.
17092         * include/windows.h, ole/ole2nls.c:
17093         Juergen Schmied <juergen.schmied@metronet.de>
17094         Stub for GetNumberFormat32W.
17096         * misc/crtdll.c: David A. Cuthbert <dacut@ece.cmu.edu>
17097         gets() fixes.
17099         * ole/nls/rus.nls: Alexander V. Lukyanov <lav@long.yar.ru>
17100         Fix SCOUNTRY, SNATIVECTRYNAME, SABBREVDAYNAME3; change some SMONTHNAME*
17101         to be in nominative case.
17103         * windows/queue.c: Per Ã…ngström <pang@mind.nu>
17104         Fixed SetMessageQueue32 to return FALSE, not TRUE, when called with
17105         an invalid size parameter.
17107         * multimedia/dsound.c: Lionel Ulmer <ulmer@directprovider.net>
17108         Added correct implementation of GetCaps, changed Play and Stop handling
17109         of positions indexes, suppressed warnings.
17111         * memory/local.c: Lionel Ulmer <ulmer@directprovider.net>
17112         Corrected bug in TRACE function.
17114         * AUTHORS, graphics/ddraw.c, include/authors.h, include/ddraw.h:
17115         Lionel Ulmer <ulmer@directprovider.net>
17116         Corrected bug in DirectDrawSurface creation and handling for driver
17117         based upon Xlilb.
17119         * windows/dinput.c: Lionel Ulmer <ulmer@directprovider.net>
17120         Wine keyboard and mouse have now their own UIDs.
17122         * objects/brush.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17123         Fix allocation size in CreateDIBPatternBrush*.
17125 ----------------------------------------------------------------
17126 Sun Nov  8 16:44:41 1998  Alexandre Julliard  <julliard@winehq.com>
17128         * windows/dialog.c: NF Stevens <norman@arcady.u-net.com>
17129         Fixed keystroke accelerators in dialogs which have controls containing
17130         other controls as child windows.
17132         * include/winproc.h, misc/commdlg.c, windows/hook.c, windows/winproc.c:
17133         Juergen Schmied <juergen.schmied@metronet.de>
17134         Fixes: LB_/CB_/EM_ messages for getting/setting text and a bug in
17135         16->32 bit conversion.
17137         * objects/dib.c: Eric Pouech <Eric.Pouech@wanadoo.fr>
17138         Prevent CreateDIBSection from seg faulting when one dimension of
17139         section is 0.
17141         * configure, configure.in, include/config.h.in, include/winsock.h, misc/winsock.c:
17142         Stephen Langasek <vorlon@dodds.net>
17143         Support for IPX networking via winsock under Linux.
17145         * relay32/gdi32.spec, graphics/painting.c:
17146         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17147         Added a stub for StartDocA and EndDoc.
17149         * relay32/kernel32.spec, scheduler/process.c, win32/console.c:
17150         James Sutherland <JamesSutherland@gmx.de>
17151         More complete implementation of the SetCtrlHandler() function (and the
17152         related console functions).
17154         * objects/brush.c, relay32/gdi32.spec: Jeff Johann <jjohann@kiva.net>
17155         Added CreateDIBPatternBrushPt (GDI32.35) with minor documentation
17156         updates.
17158         * graphics/vga.c, include/vga.h, msdos/ioports.c:
17159         Ove Kaaven <ovek@arcticnet.no>
17160         Simulate the VGA vertical refresh.
17162         * graphics/ddraw.c: Lionel Ulmer <ulmer@directprovider.net>
17163         Added support of source and destination rectangles in Blit function.
17165         * include/dinput.h, windows/dinput.c:
17166         Lionel Ulmer <ulmer@directprovider.net>
17167         Added device type constants and used them in device enumeration
17168         function.
17170         * misc/registry.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17171         API documentation says that RegEnumKeyEx, RegEnumValue and
17172         RegQueryInfoKey takes the size of the buffers as characters.
17174         * ole/compobj.c: Added missing #include "config.h"
17176         * AUTHORS, configure, configure.in, include/authors.h, include/config.h.in, ole/compobj.c:
17177         Justin Bradford <justin@ukans.edu>
17178         Replaces CoCreateGuid stub with an implementation of DCE's UUID
17179         specification. Also removes some unnecessary code from StringFromCLSID.
17181         * include/commctrl.h, include/winbase.h, include/wintypes.h:
17182         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17183         Added an extern "C" safeguard.
17185         * include/commdlg.h, include/windows.h, windows/input.c:
17186         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17187         - adds GetExitCodeProcess
17188         - corrects the return-type of GetKeyState
17189         - corrects the winelib definition of IsDialogMessage
17190         - adds winelib definitions for PrintDlg
17192         * objects/clipping.c: Rein Klazes <rklazes@casema.net>
17193         ExtSelectClipRgn fix: RGN_DIFF did not work.
17195         * objects/cursoricon.c, windows/event.c, windows/message.c:
17196         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17197         Adapted to new input event handling.
17199         * if1632/thunk.c, if1632/user.spec, include/input.h, include/windows.h, relay32/user32.spec, windows/Makefile.in, windows/input.c:
17200         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17201         USER-side part of input event handling: contains implementation of
17202         keybd_event and mouse_event, and USER-related code removed from
17203         windows/event.c and windows/keyboard.c.
17205         * windows/display.c:
17206         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17207         Stubs for DISPLAY.DRV removed from keyboard.c.
17209         * if1632/mouse.spec, include/mouse.h, windows/mouse.c:
17210         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17211         Implementation of MOUSE.DRV (contains some code taken from
17212         windows/event.c).
17214         * if1632/keyboard.spec, include/keyboard.h, windows/keyboard.c:
17215         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17216         Implementation of KEYBOARD.DRV (code mostly taken from previous
17217         windows/keyboard.c).
17219         * loader/main.c, loader/task.c, miscemu/main.c:
17220         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17221         Bugfix: really *do* switch to the initial task's stack.
17222         CallLargeStack mechanism re-enabled.
17224         * include/debug.h, include/debugdefs.h:
17225         Eric Kohl <ekohl@abo.rhein-zeitung.de>
17226         New Files. Added 'date and time picker' and 'month calendar' control
17227         dummies. They are used by Outlook Express.
17229         * ole/ole2.c, relay32/ole32.spec:
17230         Eric Kohl <ekohl@abo.rhein-zeitung.de>
17231         Added stub for CreateBindCtx() and added missing CoGetClassObject()
17232         to *.spec file. Makes Internet Explorer 4.01 happy ;-)
17234         * dlls/comctl32/pager.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
17235         Little improvement.
17237         * dlls/comctl32/listview.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
17238         Added preliminary hit testing. Makes regedit.exe happy ;-)
17240         * documentation/common_controls, dlls/comctl32/imagelist.c:
17241         Eric Kohl <ekohl@abo.rhein-zeitung.de>
17242         Improved documentation and fixed typos.
17244         * dlls/comctl32/commctrl.c, relay32/comctl32.spec:
17245         Eric Kohl <ekohl@abo.rhein-zeitung.de>
17246         Added DrawStatusText32AW() and CreateStatusWindow32AW().
17248         * dlls/comctl32/rebar.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
17249         Improved display and layout code.
17251         * dlls/comctl32/Makefile.in, dlls/comctl32/datetime.c, dlls/comctl32/monthcal.c, include/commctrl.h, include/datetime.h, include/monthcal.h:
17252         Eric Kohl <ekohl@abo.rhein-zeitung.de>
17253         New Files. Added 'date and time picker' and 'month calendar' control
17254         dummies. They are used by Outlook Express.
17256 Sat Nov  7 12:56:32 1998  Alexandre Julliard  <julliard@winehq.com>
17258         * objects/enhmetafile.c, relay32/gdi32.spec, include/windows.h:
17259         Charles Suprin <csuprin@lynx.dac.neu.edu>
17260         Added stubs for SetWinMetaFileBits and GetEnhMetaFilePaletteEntries.
17262         * graphics/x11drv/graphics.c:
17263         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17264         Stop X11DRV_RoundRect calling XDrawArc with -ve width/height params
17265         which it did if either ellipse dimension was zero.
17267         * graphics/painting.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17268         Optimize RoundRect32 to call Rectangle32 if either ellipse dimension
17269         is zero.
17271         * relay32/mpr.spec, misc/network.c:
17272         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
17273         Added stub WNetEnumCachedPasswords.
17275         * msdos/int21.c, msdos/int25.c:
17276         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
17277         Made this file DOSMOD friendly.
17279         * loader/ne/segment.c, loader/pe_image.c:
17280         Andreas Mohr <mohr@elektron.ikp.physik.tu-darmstadt.de>
17281         Unified "No implementation for..." warnings.
17283         * win32/device.c: Marcus Meissner <marcus@jet.franken.de>
17284         monodebg.vxd used by some Origin programs implemented.
17286         * objects/bitmap.c:
17287         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17288         Fail if less then one entire line requested in GetBitmapBits32.
17290         * windows/winproc.c: Rein Klazes <rklazes@casema.net>
17291         Added WM_GETDLGCODE handling in (Un)MapMsg32Ato16.
17293         * if1632/compobj.spec, include/ole.h, ole/compobj.c, relay32/ole32.spec:
17294         John Richardson <jrichard@zealand.mv.com>
17295         Implementation of CoLoadLibrary, CoFreeAllLibraries,
17296         CoFreeUnusedLibraries, CoFreeLibrary.
17297         Fixed misspelling of CoUninitialize.
17299         * programs/clock/ChangeLog, programs/clock/main.c:
17300         Robert Pouliot <krynos@clic.net>
17301         Fixes for other languages.
17303 Fri Nov  6 17:36:13 1998  Alexandre Julliard  <julliard@winehq.com>
17305         * misc/registry.c: John Richardson <jrichard@zealand.mv.com>
17306         Fix wide character functions to return character count in character
17307         quantities not byte quantities.  Make RegQueryInfoKey and
17308         RegQueryInfoKey behave correctly in win95 mode.
17310         * include/dinput.h, windows/dinput.c:
17311         Lionel Ulmer <ulmer@directprovider.net>
17312         Changed mouse button mapping and check size of return buffer.
17314         * objects/clipping.c: Rein Klazes <rklazes@casema.net>
17315         ExtSelectClipRgn() with RGN_COPY copies the wrong region.
17317         * files/file.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17318         Fixed an error in the implementation of FILE_ShareDeny.
17320         * scheduler/handle.c, if1632/thunk.c, include/debugtools.h, include/sig_context.h, multimedia/mmsystem.c:
17321         Marcus Meissner <marcus@jet.franken.de>
17322         Solaris redefines ERR and CS, fixed occurances.
17323         Solaris has TRAPNO in its sigcontext, added to sig_context.h
17325         * include/mmsystem.h, multimedia/mmio.c, relay32/winmm.spec, if1632/mmsystem.spec:
17326         Eric Pouech <Eric.Pouech@wanadoo.fr>
17327         Made mmioSetBuffer callable from 16 and 32 bit code.
17329         * controls/menu.c: Juergen Schmied <juergen.schmied@metronet.de>
17330         Fixed wrong arg type.
17332         * objects/dib.c, objects/gdiobj.c, graphics/x11drv/Makefile.in, graphics/x11drv/dib.c, graphics/x11drv/init.c, include/x11drv.h:
17333         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17334         Moved X11 DIB stuff to x11drv.
17336         * win32/code_page.c:
17337         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17338         The API for WideCharToMultiByte says that the src-string has only to be
17339         treated as NULL-terminated if srclen is -1.
17341         * include/win.h, windows/event.c, windows/win.c:
17342         Ove Kaaven <ovek@arcticnet.no>
17343         Made sure ConfigureNotify is processed before Expose, deferring the
17344         Expose event if necessary, thus working around a WM flaw with virtual
17345         desktop scrolling in -managed mode.
17347         * resources/sysres_Fr.rc: Eric Pouech <eric.pouech@lemel.fr>
17348         Translated in French (not so good anyhow) message for the mark on
17349         system menu.
17351         * misc/main.c: Juergen Schmied <juergen.schmied@metronet.de>
17352         Changed the default from 0 to 0x409 (eng-us).
17354         * windows/mdi.c: Marcus Meissner <marcus@jet.franken.de>
17355         Two missing WINAPIs.
17357         * include/interfaces.h: Juergen Schmied <juergen.schmied@metronet.de>
17358         Fixed one wrong parameter.
17360         * configure, configure.in: Ove Kaaven <ovek@arcticnet.no>
17361         Fixed --disable-lib.
17363 Thu Nov  5 10:33:18 1998  Alexandre Julliard  <julliard@winehq.com>
17365         * include/commctrl.h: Juergen Schmied <juergen.schmied@metronet.de>
17366         Constants for controls in common dialogs.
17368 Wed Nov  4 18:08:33 1998  Alexandre Julliard  <julliard@winehq.com>
17370         * misc/crtdll.c: Juergen Schmied <juergen.schmied@metronet.de>
17371         Fixed some compiler warnings.
17373 Sun Nov  1 19:27:24 1998  Alexandre Julliard  <julliard@winehq.com>
17375         * windows/message.c, windows/nonclient.c, windows/painting.c, windows/winhelp.c, windows/winpos.c, misc/commdlg.c, misc/shell.c, misc/winsock.c, miscemu/instr.c, multimedia/audio.c, multimedia/joystick.c, objects/bitmap.c, objects/clipping.c, objects/color.c, objects/cursoricon.c, objects/dib.c, tools/wrc/dumpres.c, tools/wrc/parser.l, windows/clipboard.c, windows/mdi.c, files/file.c, graphics/x11drv/xfont.c, memory/heap.c:
17376         Jesper Skov <jskov@cygnus.co.uk>
17377         egcs 'ambiguous else' warnings fixes.
17379         * include/toolhelp.h, include/windows.h, scheduler/process.c:
17380         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17381         Get rid of the redefinition of MAX_PATH and move PROCESSENTRY32
17382         definition to toolhelp.h.
17384         * windows/win.c, include/pe_image.h, library/winestub.c, loader/elf.c, loader/module.c, loader/resource.c, misc/callback.c:
17385         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17386         Run Winelib applications as 32-bit processes in the initial task.
17387         Simplified/removed several special 'if (__winelib)' cases in
17388         Wine main code obsoleted by that change.
17390         * windows/event.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17391         Call mouse driver callback also if windows are not registered with X
17392         (if using native USER.EXE).
17394         * memory/atom.c, include/atom.h:
17395         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17396         Adapted to separation between KERNEL and USER.
17398         * if1632/builtin.c, include/main.h, loader/main.c, loader/task.c, miscemu/main.c, relay32/gdi32.spec, relay32/kernel32.spec, relay32/user32.spec, scheduler/process.c:
17399         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17400         Implemented new Wine startup sequence, separating startup into
17401         KERNEL/USER/GDI related parts, allowing native replacement.
17402         Implemented initial 'kernel' task.
17404         * include/ole.h, include/winerror.h, ole/compobj.c:
17405         John Richardson <jrichard@zealand.mv.com>
17406         Implementation of InprocServer32 CoGetClassObject.
17408         * include/bitmap.h, objects/bitmap.c, objects/cursoricon.c, objects/oembitmap.c, graphics/x11drv/bitmap.c:
17409         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17410         More bitmap fixes.
17412         * windows/winproc.c: Fixed crashes with WM_GETDLGCODE translation.
17414         * programs/winhelp/Makefile.in, programs/winver/Makefile.in, windows/win.c, windows/x11drv/.cvsignore, windows/x11drv/Makefile.in, windows/x11drv/init.c, include/config.h.in, include/win.h, libtest/Makefile.in, programs/clock/Makefile.in, programs/control/Makefile.in, programs/notepad/Makefile.in, programs/progman/Makefile.in, programs/regtest/Makefile.in, programs/view/Makefile.in, Make.rules.in, Makefile.in, configure, configure.in, include/acconfig.h:
17415         Patrik Stridvall <ps@leissner.se>
17416         Started moving some X11 window management code to windows/x11drv.
17418         * if1632/user.spec, windows/dialog.c, windows/winproc.c:
17419         Ove Kaaven <ovek@arcticnet.no>
17420         Fixed IsDialogMessage16.
17422         * Makefile.in: Douglas Ridgway <ridgway@winehq.com>
17423         Tell people to ignore the 'gets' warning. Some will listen.
17425         * graphics/x11drv/bitmap.c, windows/graphics.c:
17426         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17427         A couple of small fixes to my bitmap patch.
17429         * resources/TODO, resources/sysres_De.rc, resources/sysres_En.rc, windows/nonclient.c:
17430         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17431         Allow the user to put a mark in the debug log by adding a item in the
17432         SYSMENU. The messages needs implementation in all other languages than
17433         English and German.
17435         * files/file.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17436         Give tempfile a different name even if they are created in the same
17437         second. Removed some fixmes from the ShareDeny stuff.
17439         * include/mdi.h, include/windows.h, relay32/user32.spec, windows/mdi.c, windows/win.c:
17440         Rein Klazes <rklazes@casema.net>
17441         CreateWindowEx32[AW] now creates an MDI chils when the WM_EX_MDICHILD
17442         extended style is specified. Also implemented CreateMDIWindow32A()
17443         call - single thread only -.
17445         * dlls/comctl32/treeview.c: Marcus Meissner <marcus@jet.franken.de>
17446         Erred in the bit macros in treeview.c. Shiftcounts were wrong.
17448         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
17449         Detection of the end of imports with Characteristics 0 fail for Borland
17450         programs (which seem to have always characteristics 0). Changed to algorithm
17451         to something a bit more intelligent.
17453         * ole/compobj.c, relay32/ole32.spec: Ove Kaaven <ovek@arcticnet.no>
17454         Added CoFreeLibrary stub.
17456         * README: Updated FAQ location.
17458         * graphics/escape.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17459         Implement SEGPTR conversion for STARTDOC in Escape32().
17461         * objects/dc.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17462         Bugfix: SetDCState did not reset clipping region to empty.
17464         * win32/init.c: Marcus Meissner <marcus@jet.franken.de>
17465         Fixed small off by one error in GetComputerName32W, always killed the
17466         last character of a hostname.
17468         * objects/dib.c: Marcus Meissner <marcus@jet.franken.de>
17469         Don't HeapFree() colormap if we didn't allocate one.
17471         * win32/advapi.c, windows/message.c, windows/user.c, dlls/shell32/shellord.c, include/wintypes.h, misc/crtdll.c, misc/printdrv.c, relay32/advapi32.spec, relay32/crtdll.spec, relay32/mpr.spec, relay32/shell32.spec, relay32/user32.spec, relay32/winspool.spec:
17472         Marcus Meissner <marcus@jet.franken.de>
17473         Added stubs for user32,advapi32 functions.
17475         * Makefile.in, configure, configure.in, dlls/Makefile.in, dlls/ntdll/*, include/ntdll.h, misc/Attic/ntdll.c, misc/Makefile.in, relay32/ntdll.spec:
17476         Marcus Meissner <marcus@jet.franken.de>
17477         More Nt* and Rtl* function stubs, moved ntdll.c to dlls/ntdll/.
17479         * memory/local.c, memory/heap.c: Andreas Mohr <a.mohr@mailto.de>
17480         Changed many WARN()s related to internal Wine memory failures to
17481         ERR()s.
17483         * if1632/kernel.spec, scheduler/process.c:
17484         Andreas Mohr <a.mohr@mailto.de>
17485         Added .spec entry for KERNEL.RegisterServiceProcess.
17487         * if1632/display.spec, windows/keyboard.c:
17488         Andreas Mohr <a.mohr@mailto.de>
17489         Added stub for CheckCursor().
17491         * include/dialog.h, windows/defdlg.c: Tim Newsome <nuisance@cmu.edu>
17492         Fix for non-modal dialog closing.
17494         * windows/dinput.c: David Faure  <faure@kde.org>
17495         Rewrote the two routines using the vkey->scancode array to use
17496         keyc2vkey for each keycode, instead. Not tested.
17497         Removed unused IDirectInputDeviceA_GetDeviceState.
17498         Fixed warning in TRACE() call.
17500         * windows/keyboard.c: David Faure <faure@kde.org>
17501         Deleted the vkey->sancode array, because QWERTY specific.
17502         Back to using the X keycode instead as the scancode. Tested.
17504         * graphics/psdrv/init.c:
17505         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17506         Print a message if the PostScript driver can't find a PPD file.
17508         * msdos/int10.c: Ove Kaaven <ovek@arcticnet.no>
17509         Added VGA 256-color mode 0x13 using the DisplayDib VGA emulation.
17510         (DOS apps/games using this mode comes up now, although you can't
17511         really do anything with them (yet?).)
17513         * msdos/dpmi.c: Ove Kaaven <ovek@arcticnet.no>
17514         Use macro V86_FLAG.
17516         * msdos/dosmem.c: Ove Kaaven <ovek@arcticnet.no>
17517         Set default video mode to 3 (80x25 color).
17519         * loader/dos/dosmod.c: Ove Kaaven <ovek@arcticnet.no>
17520         Ignores a couple of signals.
17522         * graphics/Makefile.in, graphics/dispdib.c, graphics/vga.c, include/vga.h, msdos/ioports.c:
17523         Ove Kaaven <ovek@arcticnet.no>
17524         Moved VGA-emulating DirectX code from dispdib.c to a separate
17525         file. Made it use a system timer and trap I/O accesses to the VGA
17526         DAC registers to accommodate DisplayDib-using programs that try to
17527         access the VGA hardware directly.
17529         * miscemu/instr.c, if1632/signal.c, include/dosexe.h, loader/dos/dosvm.c, loader/dos/module.c, misc/system.c:
17530         Ove Kaaven <ovek@arcticnet.no>
17531         Indirection for INSTR_EmulateInstruction for use by DOS code.
17532         Added support for a 55Hz system timer, letting DOS apps calibrate
17533         their delay loops and such. Calls INSTR_EmulateInstruction for
17534         instruction emulation (principally I/O port access). Added macro
17535         V86_FLAG.
17537 Sat Oct 31 12:20:56 1998  Alexandre Julliard  <julliard@winehq.com>
17539         * windows/dinput.c, multimedia/dsound.c:
17540         Marcus Meissner <marcus@jet.franken.de>
17541         Small fixes.
17543         * memory/virtual.c: Marcus Meissner <marcus@jet.franken.de>
17544         Removed the FIXME() and moved SetLastError(0) to the end (so that
17545         GetTempFileName et.al. can't overwrite it).
17547         * misc/Attic/ntdll.c, relay32/ntdll.spec, relay32/relay386.c, relay32/user32.spec, windows/user.c:
17548         Marcus Meissner <marcus@jet.franken.de>
17549         Lots of stubs to get winlogon.exe from nt3.51 and other NT3.51 applets
17550         a bit further.
17552         * windows/mdi.c: Rein Klazes <rklazes@casema.net>
17553         MDIchild created when the MDI client has the MDIS_ALLCHILDSTYLES
17554         style, should not be shown at creation nor activated unless the
17555         WS_VISIBLE flag is set.
17557         * loader/pe_image.c: Stephen Langasek <vorlon@dodds.net>
17558         Bugfix for fixup_imports: Enable checking for terminating import
17559         struct with Characteristics bitfield set to 0.
17561         * windows/win.c: Rein Klazes <rklazes@casema.net>
17562         Delay linking newly created window in linked list until after the
17563         WM_NCCREATE message.
17565         * files/file.c: Rein Klazes <rklazes@casema.net>
17566         Small bug in FILE_InUse does not do a release on every acquired file
17567         pointer.
17569         * controls/static.c: Marcus Meissner <marcus@jet.franken.de>
17570         lpszName of NULL is handled (removes some warnings).
17572         * tools/testrun: Marcus Meissner <marcus@jet.franken.de>
17573         Now allows specification of a start directory on the cmdline.
17575         * dlls/comctl32/treeview.c: Marcus Meissner <marcus@jet.franken.de>
17576         Gets rid of the arch-dependent bit operations (tested on Linux and
17577         Solaris/x86).
17579 Wed Oct 28 14:58:02 1998  Alexandre Julliard  <julliard@winehq.com>
17581         * windows/win.c: Juergen Schmied <juergen.schmied@metronet.de>
17582         A dest buffer was printed out as string.
17584         * include/shlobj.h: Juergen Schmied <juergen.schmied@metronet.de>
17585         Corrected 2 wrong definitions.
17587         * include/windows.h, relay32/kernel32.spec, scheduler/process.c:
17588         Patrick Spinler <spinler.patrick@mayo.edu>
17589         Added stubs for Process32First/Process32Next.
17591         * include/x11drv.h, objects/clipping.c, objects/dc.c, objects/dcvalues.c, objects/palette.c, objects/region.c, graphics/escape.c, graphics/metafiledrv/graphics.c, graphics/painting.c, graphics/path.c, graphics/psdrv/graphics.c, graphics/win16drv/graphics.c, graphics/x11drv/graphics.c, include/debugger.h, include/gdi.h, include/metafiledrv.h, include/psdrv.h, include/win16drv.h, include/windows.h, include/wintypes.h, debugger/dbg.y, debugger/msc.c, debugger/stabs.c, debugger/types.c:
17592         François Gouget <gouget@metaintegration.net>
17593         Fixed some LPPOINT/LPSIZE mismatches and some missing "const" in the
17594         headers prototypes.
17596         * graphics/psdrv/init.c, graphics/win16drv/init.c, graphics/x11drv/bitmap.c, graphics/x11drv/brush.c, graphics/x11drv/init.c, graphics/x11drv/objects.c, include/bitmap.h, include/gdi.h, include/x11drv.h, objects/bitmap.c, objects/brush.c, objects/dib.c, objects/oembitmap.c, windows/graphics.c, graphics/metafiledrv/init.c:
17597         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17598         Added pBitmapBits and pCreateBitmap to the GDI function table and
17599         moved the X11 dependent stuff out of objects/bitmap.c into x11drv.
17601         * relay32/shell32.spec, dlls/shell32/shellole.c, dlls/shell32/shellord.c, include/shell.h, dlls/shell32/pidl.c:
17602         Juergen Schmied <juergen.schmied@metronet.de>
17603         New SHGetSimpleIDListFromPath32AW.
17604         Unicode-safe: PathFindFilename32AW.
17606         * include/shlobj.h: Justin Bradford <justin@busboy.sped.ukans.edu>
17607         IExtractIcon had an extra c in a struct definition.
17609         * relay32/dplay.spec:
17610         John Richardson <jrichard@zealand.mv.spamless.com>
17611         Added entry for DirectPlayEnumerate.
17613         * ole/nls/sky.nls, ole/ole2nls.c:
17614         Juergen Schmied <juergen.schmied@metronet.de>
17615         Added Slovak nls-resources.
17617         * objects/region.c: Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17618         Fixed differences between SetRectRgn16 and SetRectRgn32. Also a bug fix for
17619         CreateRoundRectRgn.
17621 Tue Oct 27 15:41:54 1998  Alexandre Julliard  <julliard@winehq.com>
17623         * windows/user.c: Marcus Meissner <marcus@jet.franken.de>
17624         EnumDisplayModes* returns a static list of modes with all depths
17625         (helps hexen2demo), ChangeDisplaySettings returns true all the time.
17627         * include/wintypes.h, multimedia/mmsystem.c, relay32/winmm.spec:
17628         Marcus Meissner <marcus@jet.franken.de>
17629         Stub for midiOpenStream (helps hexen2demo).
17631         * ole/nls/enc.nls, ole/nls/frc.nls, resources/sysres_Fr.rc:
17632         Robert Pouliot <krynos@clic.net>
17633         Small patch for better French support.
17635         * loader/elf.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17636         Bugfix: memory overwrite bug.
17638 Mon Oct 26 11:04:13 1998  Alexandre Julliard  <julliard@winehq.com>
17640         * controls/edit.c, windows/clipboard.c: Pascal Cuoq <pcuoq@ens-lyon.fr>
17641         32-bit clipboard support.
17643         * windows/queue.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17644         Bugfix for QUEUE_Signal: Always use PostEvent if no thread is waiting
17645         on the queue.
17647         * windows/mdi.c: NF Stevens <norman@arcady.u-net.com>
17648         Fixed a minor problem with the menus for mdi child windows.
17650         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
17651         Removed no longer necessary commented out code, destroy old window
17652         when SetDisplayMode is called again, EnumDisplayModes now returns
17653         all possible modes (using a static list).
17655         * memory/virtual.c: Marcus Meissner <marcus@jet.franken.de>
17656         Anon shared mapping fixed for file sharing.
17658 ----------------------------------------------------------------
17659 Sun Oct 25 10:32:23 1998  Alexandre Julliard  <julliard@winehq.com>
17661         * ole/ole2nls.c, include/winnls.h: Andreas Mohr <100.30936@germany.net>
17662         Fixes for LANG_NEUTRAL.
17664         * include/task.h:
17665         Added some padding to the PDB for ill-behaving apps (problem reported
17666         by Andreas Mohr).
17668         * documentation/ioport-trace-hints, include/debug.h, include/debugdefs.h, miscemu/instr.c:
17669         Jonathan Buzzard <jab@hex.prestel.co.uk>
17670         Added a new debugging channel io to allow read/writes on a port to be
17671         logged to a file.
17673         * windows/keyboard.c: David Faure <David.Faure@insa-lyon.fr>
17674         Replaced 0x00 with 0x01 in the vkey->sancode array, so that no key is
17675         ignored. 0x00 is used for generated key events only.
17677         * windows/message.c, windows/queue.c:
17678         Douglas Ridgway <ridgway@winehq.com>
17679         API Documentation for SendMessage, GetTickCount, PostQuitMessage,
17680         GetMessagePos, GetMessageTime.
17682         * memory/virtual.c: Marcus Meissner <marcus@jet.franken.de>
17683         Delete the filename for the mapping instantly.
17685         * dlls/shell32/shellord.c, relay32/shell32.spec:
17686         Michael Poole <poole@graviton.res.cmu.edu>
17687         Stub for SHSimpleIDListFromPath.
17689         * loader/task.c: Fixed bug in SwitchStackTo.
17691 Sat Oct 24 13:06:16 1998  Alexandre Julliard  <julliard@winehq.com>
17693         * controls/scroll.c: Patrik Stridvall <ps@leissner.se>
17694         Check if scrollbar and parent are visible before redraw.
17696         * if1632/shell.spec, include/shell.h, misc/shell.c, programs/notepad/main.c, relay32/shell32.spec:
17697         Kai Morich <kai.morich@darmstadt.netsurf.de>
17698         Added Drag*32 functions.
17700         * windows/event.c: Kai Morich <kai.morich@darmstadt.netsurf.de>
17701         Added Drag&Drop from KDE app to 16/32 bit Windoze app.
17703         * windows/message.c: Kai Morich <kai.morich@darmstadt.netsurf.de>
17704         Added FIXME message in PostMessage32x if parameters are truncated
17705         when calling PostMessage16.
17707         * include/process.h, scheduler/event.c, scheduler/handle.c, scheduler/process.c, scheduler/thread.c:
17708         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17709         Added support for global handles, implemented ConvertToGlobalHandle.
17710         Allocate startup data and 16-bit stack for initial process.
17712         * documentation/wine.texinfo: Leigh Wedding <lwedding@corplink.com.au>
17713         Small fix.
17715         * programs/progman/.cvsignore, programs/progman/Es.rc, programs/progman/Makefile.in, programs/winhelp/.cvsignore, programs/winhelp/Es.rc, programs/winhelp/Makefile.in, programs/clock/.cvsignore, programs/clock/Es.rc, programs/clock/Makefile.in, programs/notepad/.cvsignore, programs/notepad/Es.rc, programs/notepad/Makefile.in:
17716         Pablo Saratxaga <srtxg@chanae.alphanet.ch>
17717         Added Spanish resources.
17719         * ole/nls/euq.nls, resources/sysres_Es.rc:
17720         Pablo Saratxaga <srtxg@chanae.alphanet.ch>
17721         Small corrections.
17723         * relay32/kernel32.spec, scheduler/process.c:
17724         Marcus Meissner <marcus@jet.franken.de>
17725         LoadLibraryExW spec added (function was there).
17726         SetProcessPriorityBoost stub added.
17728         * msdos/dpmi.c: Patrik Stridvall <ps@leissner.se>
17729         Compile fix for Solaris.
17731         * if1632/.cvsignore, if1632/Makefile.in, if1632/builtin.c, if1632/dispdib.spec, include/dispdib.h, graphics/Makefile.in, graphics/dispdib.c:
17732         Ove Kaaven <ovek@arcticnet.no>
17733         Implemented DisplayDib.
17735         * controls/static.c: Marcus Meissner <marcus@jet.franken.de>
17736         Hack to support integer ids in all static controls.
17738         * include/dinput.h, windows/dinput.c:
17739         Lionel Ulmer <ulmer@directprovider.net>
17740         Beginning of mouse support in DirectInput (only "standard" mouse
17741         configuration supported for now).
17743         * include/*.h, dlls/comctl32/*.c:
17744         Eric Kohl <ekohl@abo.rhein-zeitung.de>
17745         Added xxx_Unregister() functions to all common controls.
17747         * dlls/comctl32/comctl32undoc.c, dlls/comctl32/pager.c, dlls/comctl32/toolbar.c, documentation/common_controls, relay32/comctl32.spec:
17748         Eric Kohl <ekohl@abo.rhein-zeitung.de>
17749         Some minor improvements and fixes.
17751         * dlls/comctl32/rebar.c, include/rebar.h:
17752         Eric Kohl <ekohl@abo.rhein-zeitung.de>
17753         Improved the rebar control.
17755         * dlls/comctl32/tooltips.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
17756         Added support for transparent and tracking tooltips.
17758         * controls/menu.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
17759         Fixed a popup menu selection bug.
17761         * windows/nonclient.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
17762         Fixed DrawCaption16() and DrawCaptionTemp16().
17764         * windows/keyboard.c: David Faure <David.Faure@insa-lyon.fr>
17765         Fixed warning.
17767         * graphics/psdrv/Makefile.in, graphics/psdrv/bitmap.c, graphics/psdrv/brush.c, graphics/psdrv/font.c, graphics/psdrv/graphics.c, graphics/psdrv/init.c, graphics/psdrv/ps.c, include/gdi.h, include/psdrv.h, objects/dib.c:
17768         Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
17769         Adds Arc, Chord, GetCharWidth, Pie, PolyPolygon, PolyPolyline, RoundRect,
17770         SetPixel, hatched brushes and a stub for StretchDIBits to the PostScript
17771         driver.
17773         * include/debug.h, include/debugdefs.h, include/miscemu.h, msdos/Makefile.in, msdos/interrupts.c:
17774         Joseph Pranevich <knight@baltimore.wwaves.com>
17775         Added support for int17 and int19.
17777         * msdos/int19.c: Carl van Schaik <carl@dreamcoat.che.uct.ac.za>
17778         Stubs for dos mode reboot interrupt.
17780         * msdos/int17.c: Carl van Schaik <carl@dreamcoat.che.uct.ac.za>
17781         Some printer stubs for DOS added.
17783         * msdos/int13.c: Joseph Pranevich <knight@baltimore.wwaves.com>
17784         More stubs added. These changes are only partially mine, I just made
17785         them compile.
17787         * msdos/int10.c: Joseph Pranevich <knight@baltimore.wwaves.com>
17788         Added some traces and cleaned up a couple of things.
17790         * dlls/shell32/shell32_main.h, dlls/shell32/shellord.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, include/shell.h, include/shlobj.h, memory/string.c, ole/ole2nls.c, relay32/shell32.spec, dlls/shell32/dataobject.c, dlls/shell32/enumidlist.c, dlls/shell32/pidl.c, dlls/shell32/shell32_main.c:
17791         Juergen Schmied <juergen.schmied@metronet.de>
17792         Changed some string-shell32 functions to 32AW, parameter are
17793         os depending 32A or 32W (-winver nt351 or nt40), some new functions.
17794         Some fixes in ole2nls.
17795         New OLE2NLS_CheckLocale() to handle Locale_User_Default and
17796         Locale_System_Default.
17797         Shell32 now dynamicly links to DPA_*(), comdlg32 works again
17798         (comctl32 heap alloc patch broke it).
17800         * include/winversion.h, misc/version.c:
17801         Juergen Schmied <juergen.schmied@metronet.de>
17802         Added VERSION_IsOsUnicode().
17804         * scheduler/handle.c:
17805         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17806         More off-by-one errors fixed.
17808         * include/file.h, misc/crtdll.c, msdos/vxd.c, win32/file.c, files/file.c:
17809         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17810         File sharing fixes.
17812 Fri Oct 23 17:26:44 1998  Alexandre Julliard  <julliard@winehq.com>
17814         * misc/commdlg.c: Nick Holloway <alfie@alfie.demon.co.uk>
17815         Bug fix.
17817         * loader/dos/module.c: Ove Kaaven <ovek@arcticnet.no>
17818         Fixed DOS environment passing.
17820         * misc/main.c: Juergen Schmied <juergen.schmied@metronet.de>
17821         Sysmetrics32W for SPI_GETICONTITLELOGFONT returns correct fontname.
17823         * include/font.h, objects/font.c, objects/gdiobj.c:
17824         Juergen Schmied <juergen.schmied@metronet.de>
17825         New FONT_GetObject32W(), GetObject32W().
17827         * relay32/user32.spec, win32/ordinals.c, windows/user.c:
17828         Juergen Schmied <juergen.schmied@metronet.de>
17829         New stub RegisterTaskList.
17830         New function EnumDisplaySettings32W().
17832         * misc/ntdll.c: Juergen Schmied <juergen.schmied@metronet.de>
17833         More parameter checking in RltCopySid.
17835         * windows/winproc.c: Juergen Schmied <juergen.schmied@metronet.de>
17836         More message mapping 32A<-->32W for EM_, CB_, LB_ for Unicode.
17838         * relay32/.cvsignore, relay32/Makefile.in, relay32/avifil32.spec, relay32/builtin32.c:
17839         Ove Kaaven <ovek@arcticnet.no>
17840         Added new dll avifil32.dll.
17842         * loader/dos/dosvm.c, loader/dos/module.c, msdos/dpmi.c, include/dosexe.h:
17843         Ove Kaaven <ovek@arcticnet.no>
17844         First shot at DPMI realmode calls.
17846         * loader/module.c:
17847         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
17848         Fixed several bugs with DLL initialization.
17850 Thu Oct 22 17:02:25 1998  Alexandre Julliard  <julliard@winehq.com>
17852         * scheduler/syslevel.c: Marcus Meissner <marcus@jet.franken.de>
17853         Added ordinal for two syslevel functions.
17855         * multimedia/midi.c: Marcus Meissner <marcus@jet.franken.de>
17856         Another missing WINAPI.
17858         * include/mmsystem.h: Marcus Meissner <marcus@jet.franken.de>
17859         Small corrections in mmio declarations.
17861         * loader/pe_image.c: Marcus Meissner <marcus@jet.franken.de>
17862         Take virtual sizes in account for the total vma size.
17864         * ole/nls/rom.nls: Dimitrie O. Paun <dimi@cs.toronto.edu>
17865         Add some more NLS definitions for the Romanian language.
17867         * multimedia/dsound.c: Marcus Meissner <marcus@jet.franken.de>
17868         Some programs (quake2 et al) do check for DSCAPS_EMULDRIVER and stop
17869         to work. 'Adjust' caps flags accordingly.
17871         * ole/compobj.c, relay32/ole32.spec:
17872         Pete Ratzlaff <pratzlaff@cfa.harvard.edu>
17873         Stub for CoCreateGuid().
17875         * dlls/comctl32/treeview.c, multimedia/mcicda.c:
17876         Brian Litzinger <brian@litzinger.com>
17877         Fixes for FreeBSD.
17879         * libtest/.cvsignore, libtest/Makefile.in:
17880         Petter Reinholdtsen <pere@minerva.cc.uit.no>
17881         Make sure hello3res.h is generated even if 'make depend' never has
17882         been run.
17884         * windows/nonclient.c: NF Stevens <norman@arcady.u-net.com>
17885         Fixed moving and sizing of child windows.
17887         * include/ts_xlib.h, tools/make_X11wrappers, tsx11/X11_calls, tsx11/ts_xlib.c, windows/keyboard.c:
17888         Marcus Meissner <marcus@jet.franken.de>
17889         XQueryKeymap -> TSXQueryKeymap (fixes the XIO errors reported).
17891 Wed Oct 21 17:20:48 1998  Alexandre Julliard  <julliard@winehq.com>
17893         * include/dosexe.h, loader/dos/dosvm.c, miscemu/main.c:
17894         Ove Kaaven <ovek@arcticnet.no>
17895         Added indirection for ctx_debug to the DOS loader, so Winelib works
17896         again.
17898         * memory/virtual.c: Marcus Meissner <marcus@jet.franken.de>
17899         Support anon shared mappings using temporary files (wont be deleted
17900         yet).
17902         * misc/main.c: Marcus Meissner <marcus@jet.franken.de>
17903         Was freeing the incorrect pointers -> crash in mallocs/frees.
17905         * files/dos_fs.c, relay32/kernel32.spec:
17906         Marcus Meissner <marcus@jet.franken.de>
17907         DefineDosDevice stub added.
17909         * miscemu/main.c, wine.ini: Chad Powell (pxpx@usa.net)
17910         Added a default program option in wine.conf in section [programs] key
17911         Default.
17913         * include/wintypes.h: David Cuthbert <dacut@ece.cmu.edu>
17914         Better fix for this_is_a_syntax_error.
17916         * ole/nls/*.nls:
17917         Pablo Saratxaga <srtxg@chanae.alphanet.ch>
17918         Added the entries for LOCALE_SISO639LANGNAME and
17919         LOCALE_SISO3166CTRYNAME.
17921         * documentation/wine.man: James Juran <jrj120@psu.edu>
17922         Updated manpage.
17924         * relay32/msacm32.spec: Patrik Stridvall <ps@leissner.se>
17925         Fixed wrong ordinals.
17927         * objects/region.c: NF Stevens <norman@arcady.u-net.com>
17928         Fixed a bug in RectInRegion.
17930 Tue Oct 20 15:26:26 1998  Alexandre Julliard  <julliard@winehq.com>
17932         * msdos/interrupts.c: NF Stevens <norman@arcady.u-net.com>
17933         Removed an incorrect error message.
17935         * files/drive.c: Petter Reinholdtsen <pere@minerva.cc.uit.no>
17936         Make sure the access functions are always used to get label and serial
17937         number.
17939 Mon Oct 19 08:48:24 1998  Alexandre Julliard  <julliard@winehq.com>
17941         * ole/ole2nls.c: Eric Pouech <eric.pouech@hol.fr>
17942         Fixed bug on platforms were buffers returned by getenv() shall not be
17943         free()'ed. Added French (default) in locale handling.
17945         * include/wintypes.h: Dave Cuthbert <dacut@ece.cmu.edu>
17946         Changed "this is a syntax error" to "this_is_a_syntax_error" to make a
17947         compile-time error message make more sense.
17949         * scheduler/handle.c:
17950         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17951         Fixed off by one error in HANDLE_GetObjPtr.
17953 ----------------------------------------------------------------
17954 Sun Oct 18 14:48:31 1998  Alexandre Julliard  <julliard@winehq.com>
17956         * files/file.c: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17957         Try to implement the OF_SHARE_XXX options.
17958         Move the mode translations to functions.
17960         * include/main.h, ole/compobj.c, ole/ifs.c, ole/ole2disp.c, ole/ole2nls.c, ole/olesvr.c, ole/storage.c:
17961         Matthew Becker <mbecker@glasscity.net>
17962         Documentation updates.
17964         * ole/compobj.c, relay32/ole32.spec:
17965         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
17966         Added stub for CoSetState32.
17968         * miscemu/main.c: Chad Powell <pxpx@usa.net>
17969         Added ability to read a startup program from wine.ini file.
17970         Put it in section [programs] key Startup.
17972         * include/trackbar.h, include/treeview.h, dlls/comctl32/trackbar.c, dlls/comctl32/treeview.c:
17973         Alex Priem <alexp@sci.kun.nl>
17974         Further improvements.
17976         * include/cursoricon.h, objects/cursoricon.c:
17977         Turchanov Sergey <turchanov@usa.net>
17978         Implemented LoadCursorFromFile, fixed DrawIconEx to support offscreen
17979         drawing, fixed CURSORICON_CreateFromResource to support LR_ semantics.
17981         * include/bitmap.h, objects/bitmap.c:
17982         Turchanov Sergey <turchanov@usa.net>
17983         Fixed LoadImage to support almost all LR_ flags.
17985         * objects/dib.c: Turchanov Sergey <turchanov@usa.net>
17986         Fixed bug in DIB_SetImageBits_RLE8 (because 'color' var was WORD, all
17987         COLOREFs had red part zeroed) that made plenty of cyan colors, minor
17988         bug fixes, changes to support LR_ flags.
17990         * include/global.h, memory/virtual.c:
17991         Turchanov Sergey <turchanov@usa.net>
17992         Added VIRTUAL_MapFileW to map file to memory in one function call.
17994         * include/ddraw.h, include/windows.h, include/wintypes.h, windows/multimon.c:
17995         Turchanov Sergey <turchanov@usa.net>
17996         Moved Multimonitor API declarations to windows.h.
17998         * if1632/user.spec, include/driver.h, multimedia/audio.c, multimedia/mcianim.c, multimedia/mcicda.c, multimedia/midi.c, multimedia/mmsystem.c, relay32/winmm.spec, windows/driver.c:
17999         Turchanov Sergey <turchanov@usa.net>
18000         Implemented DefDriverProc32 from winmm.dll.
18002         * controls/scroll.c, include/scroll.h, windows/mdi.c, windows/nonclient.c:
18003         Alex Korobka <korobka@ams.sunysb.edu>
18004         Got rid of flickering scrollbar arrows. MDI scrolling speeded up a
18005         bit.
18007         * include/winnls.h, ole/nls/deu.nls, ole/ole2nls.c:
18008         Juergen Schmied <juergen.schmied@metronet.de>
18009         GetLocaleInfo32A can handle len=0 now, sets LastError and touches
18010         buffer only when necessary.
18011         Updated deu.nls and some LCTYPES in winnls.h.
18013         * if1632/relay.c: Rein Klazes <rklazes@casema.net>
18014         CallProc[Ex]32W called with lpProcAddress==NULL should return zero and
18015         not crash.
18017 Sat Oct 17 13:07:48 1998  Alexandre Julliard  <julliard@winehq.com>
18019         * dlls/comctl32/commctrl.c: Ove Kaaven <ovek@arcticnet.no>
18020         Reduced huge (1GB) heap creation that caused Starcraft to fail.
18022         * include/dosexe.h, include/module.h, loader/dos/dosvm.c, multimedia/dplay.c, windows/dialog.c:
18023         Patrik Stridvall <ps@leissner.se>
18024         Compile fix for Solaris.
18026         * multimedia/midi.c: Patrik Stridvall <ps@leissner.se>
18027         Compile fix for non OSS systems.
18029         * graphics/ddraw.c: Patrik Stridvall <ps@leissner.se>
18030         Compile fix for non XF86-DGA systems.
18032         * libtest/Makefile.in, libtest/volinfo.c:
18033         Petter Reinholdtsen <pere@td.org.uit.no>
18034         New file to test DRIVE_GetLabel.
18036         * multimedia/mcicda.c: Peter Hunnisett <hunnise@nortel.ca>
18037         Small, suboptimal, fix for 32 bit cdaudio open routines. Needs proper
18038         32bit cdaudio bit support before it can be removed...
18040         * graphics/ddraw.c: Peter Hunnisett <hunnise@nortel.ca>
18041         Added a bunch of stubs for ddraw suface routines. All stubs for
18042         surface present now.
18043         Commented out message pump calls. I don't see a reason for them being
18044         there. Everything works fine with -desktop and -managed still has
18045         problems. Disagreements?
18047         * ole/ole2nls.c: Juergen Schmied <juergen.schmied@metronet.de>
18048         Fixed GetLocaleInfo32A for other languages than en_uk.
18049         Made it recognise LOCALE_SYSTEM_DEFAULT, LOCALE_SYSTEM_DEFAULT and
18050         last but not least the first argument lcid where is all about...
18052         * include/syslevel.h, misc/registry.c, multimedia/dplay.c, multimedia/dsound.c, multimedia/mmsystem.c, multimedia/time.c, windows/caret.c, dlls/msacm32/builtin.c:
18053         Marcus Meissner <marcus@jet.franken.de>
18054         Fixed some more missing WINAPIs (hopefully correct).
18056         * ole/ole2nls.c: Marcus Meissner <marcus@jet.franken.de>
18057         Fixed the = -> == bug.
18059         * msdos/int2f.c: Joseph Pranevich <knight@baltimore.wwaves.com>
18060         Shell parameters (config.sys) and ANSI support stubs.
18062         * msdos/Makefile.in: Joseph Pranevich <knight@baltimore.wwaves.com>
18063         Added int16.c and int29.c.
18065         * include/miscemu.h, msdos/interrupts.c:
18066         Joseph Pranevich <knight@baltimore.wwaves.com>
18067         More interrupts that can be done from DOS mode.
18069         * msdos/int29.c: Joseph Pranevich <knight@baltimore.wwaves.com>
18070         Added int29 (Fast Write to Screen) support.
18072         * msdos/int16.c, include/debug.h, include/debugdefs.h:
18073         Joseph Pranevich <knight@baltimore.wwaves.com>
18074         Added int16 (Keyboard) support, mostly stubs.
18076 Fri Oct 16 15:40:21 1998  Alexandre Julliard  <julliard@winehq.com>
18078         * relay32/shell32.spec, dlls/shell32/pidl.c, dlls/shell32/shell32_main.c, dlls/shell32/shellord.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c, include/shlobj.h:
18079         Juergen Schmied <juergen.schmied@metronet.de>
18080         Many bugfixes, new stubs SHGetRealIDL, SHRegQueryValue32W,
18081         SHRegQueryValueEx32W, StrRetToStrN, StrChrW, SHAllocShared,
18082         SHLockShared, SHUnlockShared, SHFreeShared, SetAppStartingCursor32,
18083         SHLoadOLE32, Shell_MergeMenus32, PathGetDriveNumber32, DriveType32,
18084         SHAbortInvokeCommand, SHOutOfMemoryMessageBox, SHFlushClipboard.
18086         * misc/ntdll.c, relay32/ntdll.spec:
18087         Dietmar Kling <dietmar.kling@usa.net>
18088         Added undocumented function RtlOpenCurrentUser.
18090         * objects/cursoricon.c, misc/shell.c, misc/ver.c, misc/version.c, loader/elf.c, loader/module.c, loader/pe_image.c, loader/pe_resource.c, include/neexe.h, include/pe_image.h, include/peexe.h, debugger/dbgmain.c, debugger/msc.c:
18091         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
18092         Renamed all LPIMAGE_* types to PIMAGE_*.
18094 Thu Oct 15 13:03:10 1998  Alexandre Julliard  <julliard@winehq.com>
18096         * windows/winpos.c: Rein Klazes <rklazes@casema.net>
18097         Fixed an error when an owned window activates its owner during
18098         creation.
18100         * windows/defdlg.c: Rein Klazes <rklazes@casema.net>
18101         Closing a dialog using the menu bar ("x" or "-" button or windows
18102         menu) must generate a WM_COMMAND+IDCANCEL message, unlike closing
18103         normal windows when DestroyWindow() is called.
18105         * dlls/shell32/pidl.c:
18106         Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
18107         Added missing WINAPIs.
18109         * windows/winpos.c, win32/ordinals.c, relay32/user32.spec:
18110         Juergen Schmied <juergen.schmied@metronet.de>
18111         New stubs PrivateExtractIconEx[AW], PrivateExtractIconsW,
18112         RegisterShellHookWindow, DeregisterShellHookWindow, GetProgmanWindow,
18113         GetTaskmanWindow, SetProgmanWindow, SetShellWindowEx,
18114         SetTaskmanWindow.
18116         * relay32/ntdll.spec, misc/ntdll.c:
18117         Juergen Schmied <juergen.schmied@metronet.de>
18118         New stubs NtQueryInformationThread, NtQueryInformationToken,
18119         RtlAllocateAndInitializeSid, RtlEqualSid, RtlFreeSid.
18121         * multimedia/mmsystem.c: Turchanov Sergey <turchanov@usa.net>
18122         Fixed PlaySound to start its thread the right way.
18124 Wed Oct 14 18:40:35 1998  Alexandre Julliard  <julliard@winehq.com>
18126         * controls/combo.c, controls/listbox.c:
18127         Alex Korobka <korobka@ams.sunysb.edu>
18128         CB_SETCURSEL and some other fixes.
18130         * windows/queue.c: Alex Korobka <korobka@ams.sunysb.edu>
18131         Better QUEUE_FlushMessages().
18133         * relay32/gdi32.spec, objects/font.c, include/windows.h, if1632/gdi.spec:
18134         Moshe Vainer <moshev@easybase.com>
18135         Partial implementation of GetOutlineTextMetrics32A.
18136         Added structures for OUTLINETEXTMETRICS.
18138         * objects/dc.c, include/gdi.h, graphics/x11drv/bitblt.c, graphics/x11drv/bitmap.c, graphics/x11drv/init.c:
18139         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18140         Do not clip source rectangle even by visible region for bitblts.
18141         Added field 'totalExtent' to WIN_DC_INFO.
18143         * msdos/vxd.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18144         Added stub for VMM PM API AH=026[de] (never say 'safe mode').
18146         * memory/heap.c: Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18147         Bugfix: Local32Free caused free handles list corruption.
18149         * include/debugtools.h: Marcus Meissner <marcus@jet.franken.de>
18150         Fixed --disable-debug config option.
18152 Tue Oct 13 12:50:04 1998  Alexandre Julliard  <julliard@winehq.com>
18154         * relay32/shell32.spec, dlls/shell32/shellord.c:
18155         Petter Reinholdtsen <pere@td.org.uit.no>
18156         Added stubs SHRegCloseKey(), SHRegOpenKey[AW](), SHRegQueryValueExA()
18157         and FileIconInit() needed by Win95 explorer.
18159 Mon Oct 12 07:25:54 1998  Alexandre Julliard  <julliard@winehq.com>
18161         * windows/dialog.c, controls/button.c, controls/menu.c:
18162         Norman Stevens <norman@arcady.u-net.com>
18163         Improving keyboard handling, including accelerator keys in dialog
18164         boxes. Also fixes enter key in Agent32 edit box.
18166 Sun Oct 11 19:37:23 1998  Alexandre Julliard  <julliard@winehq.com>
18168         * misc/commdlg.c: Eric Pouech  <eric.pouech@lemel.fr>
18169         Added support in file dialog boxes handling for filters like
18170         "*.txt;*.bat".
18172         * win32/kernel32.c, scheduler/thread.c, loader/module.c, loader/pe_image.c, loader/task.c, include/module.h, include/pe_image.h:
18173         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18174         Implemented new PE DLL initalization code, trying to call the
18175         DllEntryPoint routines always in correct order :-)
18176         Bypass snooping when getting data buffer addresses (thunk buffers,
18177         __GP handlers) and for 32-bit routines directly called from 16-bit
18178         (due to stack address size problems).
18180         * win32/ordinals.c, relay32/kernel32.spec, loader/ne/module.c:
18181         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18182         Implemented CommonUnimpStub, MapHInst(LS|SL)_PN, W32S_BackTo32.
18183         Stub for HouseCleanLogicallyDeadHandles, fixed k32wvsprintfA.
18185         * tools/build.c, if1632/kernel.spec, if1632/relay.c, if1632/thunk.c:
18186         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18187         Implemented (partially) the KERNEL Thunklet API and Callback Client
18188         API (KERNEL.560-568,604-612,619-622).
18189         Added stubs for K228, K237, KERNEL.365, KERNEL.447.
18191         * objects/bitmap.c, if1632/gdi.spec:
18192         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18193         Stubs for CreateUser(Discardable)Bitmap16.
18195         * memory/heap.c, include/winnt.h:
18196         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18197         Implemented HEAP_WINE_CODE16SEG SEGPTR heaps with 16-bit code segments.
18199         * memory/global.c, include/windows.h:
18200         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18201         GlobalFix16 is supposed to return selector to the memory area.
18203         * msdos/vxd.c, if1632/Makefile.in, if1632/builtin.c, if1632/comm.spec, if1632/wprocs.spec:
18204         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18205         Stubs for COMM.DRV, REBOOT.VXD, VDD.VXD.
18207         * scheduler/process.c, scheduler/syslevel.c, include/sig_context.h, include/syslevel.h:
18208         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18209         Use emergency TEB selector to avoid debugger crashes when stepping
18210         through relay stubs (or when FS is invalid otherwise).
18212         * windows/event.c, windows/keyboard.c:
18213         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18214         MOUSE.DRV routines moved to event.c. Call mouse event procedure.
18216         * windows/dce.c, windows/painting.c, windows/scroll.c, objects/clipping.c, objects/dc.c, objects/dcvalues.c, include/dc.h, include/windows.h, if1632/gdi.spec, graphics/x11drv/bitblt.c, graphics/x11drv/clipping.c, graphics/x11drv/graphics.c, graphics/x11drv/text.c, graphics/path.c:
18217         Ulrich Weigand <weigand@informatik.uni-erlangen.de>
18218         Changed DC members w.hVisRgn, w.hClipRgn, amd w.hGCClipRgn to
18219         coordinates relative to the device, not the DC origin. This is
18220         necessary to correctly implement GetClipRgn16 and InquireVisRgn.
18221         SelectVisRgn also expects region in device-relative coordinates.
18222         Adapted the rest of Wine to this coordinate change.
18223         Implemented ExtSelectClipRgn.
18225         * tools/winapi-check, scheduler/syslevel.c, files/dos_fs.c:
18226         Andreas Mohr <100.30936@germany.net>
18227         Small fix.
18229         * loader/ne/segment.c, include/module.h, include/neexe.h, if1632/kernel.spec:
18230         Andreas Mohr <100.30936@germany.net>
18231         Yet another small self-loader fix.
18233         * files/drive.c: Andreas Mohr <100.30936@germany.net>
18234         Fixed severe bug: SetCurrentDirectory32A didn't set pTask->curdir
18235         correctly due to current drive being set too late.
18237         * Make.rules.in: Patrik Stridvall <ps@leissner.se>
18238         Use $(AS) instead of $(CC) to compile .s files.
18240         * relay32/.cvsignore, relay32/Makefile.in, relay32/builtin32.c, include/debug.h, include/debugdefs.h, include/mmreg.h, if1632/.cvsignore, if1632/Makefile.in, if1632/builtin.c, dlls/Makefile.in, Makefile.in, configure, configure.in:
18241         Patrik Stridvall <ps@leissner.se>
18242         Started the implementation of MSACM.DLL, MSACM32.DLL and IMAGEHLP.DLL.
18244         * include/imagehlp.h, relay32/imagehlp.spec, dlls/imagehlp/.cvsignore, dlls/imagehlp/Makefile.in, 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:
18245         Patrik Stridvall <ps@leissner.se>
18246         Started the implementation of IMAGEHLP.DLL.
18248         * include/msacm.h, include/msacmdrv.h, relay32/msacm32.spec, if1632/msacm.spec, dlls/msacm32/.cvsignore, dlls/msacm32/Makefile.in, 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/msacm/.cvsignore, dlls/msacm/Makefile.in, dlls/msacm/msacm_main.c:
18249         Patrik Stridvall <ps@leissner.se>
18250         Started the implementation of MSACM.DLL and MSACM32.DLL.
18252         * win32/device.c: Patrik Stridvall <ps@leissner.se>
18253         Removed things that were earlier added by mistake.
18255         * relay32/winmm.spec: Patrik Stridvall <ps@leissner.se>
18256         The implementation of mmioWrite is now called instead of the stub.
18258         * include/shell.h, dlls/shell32/shellole.c, dlls/shell32/shellord.c, dlls/shell32/shlfolder.c, dlls/shell32/shlview.c:
18259         Juergen Schmied <juergen.schmied@metronet.de>
18260         Bugfixes, shellview uses DPA's now, IShellView_GetItemObject implemented.
18262         * relay32/shell32.spec, dlls/shell32/shell32_main.c:
18263         Juergen Schmied <juergen.schmied@metronet.de>
18264         New stubs: SHGetFileInfo32W, ReadCabinetState, WriteCabinetState, IsUserAdmin.
18265         Implemented: SHGetPathFromIDList32W.
18266         Changed PathCombine.
18268         * include/shlobj.h: Juergen Schmied <juergen.schmied@metronet.de>
18269         New structures DVASPECT, TYMED, IDLList.
18270         Shell specific clipboard formats.
18272         * relay32/winspool.spec, misc/printdrv.c:
18273         Juergen Schmied <juergen.schmied@metronet.de>
18274         Stub EnumPrintersW.
18276         * dlls/shell32/dataobject.c:
18277         Juergen Schmied <juergen.schmied@metronet.de>
18278         Implemented first functions.
18280         * dlls/shell32/pidl.c, dlls/shell32/pidl.h:
18281         Juergen Schmied <juergen.schmied@metronet.de>
18282         New class IDLList "Item ID List List" (internal).
18284         * misc/ver.c: Juergen Schmied <juergen.schmied@metronet.de>
18285         Small changes (uses HIWORD/LOWORD).
18287         * windows/dialog.c, relay32/user32.spec:
18288         Sat Oct 10 12:00:00 1998  Juergen Schmied <juergen.schmied@metronet.de>
18289         Stub CreateDialogIndirectParamAorW.
18291         * Makefile.in, configure, configure.in:
18292         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt>
18293         Don't install object files when --disable-lib is selected.
18295         * debugger/hash.c, debugger/msc.c:
18296         Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt>
18297         Don't print name for 32 bit lib multiple times.
18298         Clean up printing in DEBUG_ProcessDeferredDebug.
18300         * memory/heap.c, dlls/comctl32/tab.c, controls/combo.c:
18301         David Luyer <luyer@ucs.uwa.edu.au>
18302         Small fixes.
18304         * files/drive.c: Petter Reinholdtsen <pere@td.org.uit.no>
18305         Bugfix: Changed GetDriveType32A(NULL) to use cwd's root.
18307         * ole/typelib.c, ole/compobj.c, ole/ifs.c, ole/moniker.c, ole/ole2.c, ole/ole2disp.c, ole/ole2nls.c, ole/olecli.c, ole/olesvr.c, ole/storage.c, misc/ntdll.c, misc/registry.c:
18308         Matthew Becker <mbecker@glasscity.net>
18309         Documentation corrections/standardizations.
18311         * multimedia/audio.c, multimedia/init.c, multimedia/mcianim.c, multimedia/mcicda.c, multimedia/mcistring.c, multimedia/midi.c, multimedia/mmsystem.c, include/mmsystem.h, include/multimedia.h:
18312         Eric Pouech  <eric.pouech@lemel.fr>
18313         Started coding 32 bit MCI handling.
18314         Added Open/Close to low-level MCI drivers (audio, midi, anim, cda).
18315         Wrote MCI MIDI support.
18317         * graphics/x11drv/graphics.c: Rein Klazes <rklazes@casema.net>
18318         Yet another improvement to the bezier code.
18320         * windows/message.c: Rein Klazes <rklazes@casema.net>
18321         GetTickCounts() has a granularity in windows of 25 msec's.
18322         Girotel's serial communication appears to depend on it, so I guess
18323         it's a feature...
18325         * misc/comm.c: Rein Klazes <rklazes@casema.net>
18326         Update the modemn status bit that indicates whether the RLSD line is
18327         active in every call to GetCommError(). This is not the proper place,
18328         but since wine doesn't do any event-stuff...
18329         Fixed some TRACE call's faced with non zero terminated strings.
18330         Restore the terminal state at CloseCommt to the state it was at
18331         OpenComm(), so the modem will go off-hook.
18333         * loader/module.c: Alexander Larsson  <alla@lysator.liu.se>
18334         GetModuleFileName32A() returns long filename if app sets osversion >=
18335         4.0. Also moved the long filename hackery to GetLongPathName32A() so
18336         it can be used by win32 programs.
18338         * files/dos_fs.c: Alexander Larsson <alla@lysator.liu.se>
18339         GetLongPathName32A() returns dos format long filename instead of unix
18340         format.
18342         * dlls/comctl32/listview.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
18343         Small fixes.
18345         * relay32/shell32.spec, dlls/shell32/shellord.c:
18346         Eric Kohl <ekohl@abo.rhein-zeitung.de>
18347         Added SHFlushClipboard.
18349         * relay32/comctl32.spec, include/commctrl.h, dlls/comctl32/comctl32undoc.c:
18350         Eric Kohl <ekohl@abo.rhein-zeitung.de>
18351         Fixed some undocumented functions.
18352         Changed algorithm in DPA_QuickSort().
18353         Fixed heap creation/destruction and control [un]registration in
18354         ComCtl32LibMain().
18356         * dlls/comctl32/header.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
18357         Fixed a bug.
18359         * include/tooltips.h, dlls/comctl32/tooltips.c:
18360         Eric Kohl <ekohl@abo.rhein-zeitung.de>
18361         Added tracking support and fixed loading of resource strings.
18362         Added unregister code.
18364         * include/debug.h, include/debugdefs.h, include/ipaddress.h, include/nativefont.h, dlls/comctl32/Makefile.in, dlls/comctl32/commctrl.c, dlls/comctl32/ipaddress.c, dlls/comctl32/nativefont.c:
18365         Eric Kohl <ekohl@abo.rhein-zeitung.de>
18366         Added IPAddress and NativeFont controls.
18368         * include/imagelist.h, dlls/comctl32/imagelist.c:
18369         Eric Kohl <ekohl@abo.rhein-zeitung.de>
18370         Some minor improvements.
18372         * include/toolbar.h, dlls/comctl32/toolbar.c:
18373         Eric Kohl <ekohl@abo.rhein-zeitung.de>
18374         Improved drawing and placement code. Explorer style common dialogs are
18375         looking good now.
18377         * objects/cursoricon.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
18378         Fixed bug in DrawIconEx32().
18380         * misc/main.c: Eric Kohl <ekohl@abo.rhein-zeitung.de>
18381         Improved GetSystemInformation32[A/W].
18383         * windows/nonclient.c, relay32/user32.spec, include/windows.h, if1632/user.spec:
18384         Eric Kohl <ekohl@abo.rhein-zeitung.de>
18385         Added DrawCaption[16/32] and DrawCaptionTemp[16/32A/32W].
18386         Fixed handling of WS_EX_TOOLWINDOW.
18388         * documentation/common_controls: Eric Kohl <ekohl@abo.rhein-zeitung.de>
18389         Updated.
18391         * windows/event.c, windows/keyboard.c, include/keyboard.h:
18392         David Faure <faure@kde.org>
18393         Added KEYBOARD_UpdateState, to read the modifiers when the wine app is
18394         activated. Uses the new KEYBOARD_UpdateOneState.
18395         Fixed a problem with menu accelerators (Alt-letter generates a down
18396         arrow event which beeps if not filtered).
18397         Speeded up ToAscii16/32() a little bit.
18399         * debugger/break.c, debugger/db_disasm.c, debugger/dbg.y, debugger/expr.c, debugger/source.c, debugger/types.c:
18400         Ove Kaaven <ovek@arcticnet.no>
18401         Made Wine's debugger work satisfactorily with DOS apps.
18402         Perhaps dereferencing work better for Win16 apps too now, but
18403         it appears the debugger core wasn't designed for segmentation.
18405         * msdos/dpmi.c: Ove Kaaven <ovek@arcticnet.no>
18406         Simulates DPMI memory map by converting lower-MB segment base
18407         addresses as necessary. Implemented allocating/freeing DOS memory
18408         blocks. Added XMS hook. (DPMI remains disabled by default until
18409         someone implements the raw mode switch entry points pkunzip needs.)
18411         * msdos/int21.c: Ove Kaaven <ovek@arcticnet.no>
18412         I think it's time to rethink the HFILE16_TO_HFILE32 strategy,
18413         can't keep working around flaws in it like this (now stdio
18414         was getting closed when programs close handles >=5)
18416         * msdos/xms.c, msdos/Makefile.in, msdos/int2f.c:
18417         Ove Kaaven <ovek@arcticnet.no>
18418         Implemented basic XMS functions. wcb.exe (Win16 disassembler) now
18419         seems to work fine under Wine.
18421         * loader/dos/dosvm.c, loader/dos/module.c, include/dosexe.h, include/miscemu.h:
18422         Ove Kaaven <ovek@arcticnet.no>
18423         Moved some system dependencies to loader/dos/dosvm.c. Implemented
18424         environmental argv[0] passing to DOS apps. Added XMS hooks.
18426         * debugger/stabs.c: Ove Kaaven <ovek@arcticnet.no>
18427         Added a memset() to prevent a debugger segfault caused by
18428         uninitialized pointers in the stabs lookup tables.
18430         * graphics/ddraw.c: Marcus Meissner <marcus@jet.franken.de>
18431         A few fixes.
18433         * relay32/ntdll.spec: Marcus Meissner <marcus@jet.franken.de>
18434         Added RtlAllocateAndInitializeSid entry.
18436         * loader/Makefile.in, loader/elf.c, loader/module.c, loader/pe_image.c, include/config.h.in, include/module.h, include/pe_image.h, include/peexe.h, configure, configure.in:
18437         Marcus Meissner <marcus@jet.franken.de>
18438         Generic dynamic dll loader using dl*() API.
18439         Includes: stdcall->cdecl mapping ability, snooping.
18440         (Tested only with glide2x.dll -> libglide2x.so)
18442         * multimedia/init.c, multimedia/time.c, include/mmsystem.h, include/multimedia.h:
18443         Marcus Meissner <marcus@jet.franken.de>
18444         Added win32 enhanced functionality to timer callbacks.
18446         * win32/console.c: Marcus Meissner <marcus@jet.franken.de>
18447         Added bad hacks so WriteConsoleOutput works on vt100 and PeekMessage
18448         does at least a bit of keyboard input.
18450         * relay32/snoop.c: Marcus Meissner <marcus@jet.franken.de>
18451         Should display again.
18453 Sat Oct 10 15:52:46 1998  Alexandre Julliard  <julliard@winehq.com>
18455         * windows/dialog.c: Dave Pickles <davep@nugate.demon.co.uk>
18456         Implemented DS_CENTER dialog style.
18458         * misc/main.c: Pablo Saratxaga <srtxg@chanae.alphanet.ch>
18459         Added function to build the Windows numeric language ID from language,
18460         code, charset and dialect strings, like used by Unix LANG variable.
18462         * ole/ole2nls.c, ole/nls/README, include/winnls.h, ole/nls/*.nls:
18463         Pablo Saratxaga <srtxg@chanae.alphanet.ch>
18464         More NLS data.
18466         * graphics/ddraw.c: Peter Schlaile <udbz@rz.uni-karlsruhe.de>
18467         Fixed a lot of bugs in ddraw.c to make xlib support work.
18468         Runs successfully TR2Demo and Jazz Jackrabbit II Demo!
18470         * objects/gdiobj.c: Cliff Wright <cliff@snipe444.org>
18471         Added DC object type to the list of valid objects that can be deleted
18472         by DeleteObject32.
18474 Sun Oct  4 18:20:29 1998  Alexandre Julliard  <julliard@winehq.com>
18476         * ChangeLog:
18477         Starting new format changelog (older changes moved to
18478         documentation/ChangeLog.OLD).