Release 951212
[wine/multimedia.git] / ChangeLog
blobefd9fa46c774921d4144214e2da4eef556f172b7
1 ----------------------------------------------------------------------
2 Mon Dec 11 19:08:55 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
4         * [misc/lstr.c]
5         Replaced wine_strncpy() by a 32-bit version of lstrcpyn(), since
6         they do the same job.
8         * [tools/build.c]
9         Fixed __attribute__((stdcall)) to make it compile with gcc
10         versions under 2.7. Doesn't mean it will run OK though...
12 Sat Dec 09 13:22:58 1995  Cameron Heide  <heide@ee.ualberta.ca>
14         * [include/kernel32.h] [include/winerror.h]
15         Added file attribute definitions and more error codes.
17         * [win32/error.c]
18         Added some rudimentary errno-to-Win32 error conversion
19         code.
21         * [win32/file.c]
22         Added to GetFileInformationByHandle, filled in some known
23         error codes, and switched to dprintf_win32.
25         * [win32/time.c]
26         Added GetLocalTime.
28 Fri Dec  8 14:37:39 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
30         * [controls/combo.c]
31         Converted functions of the type LONG _(HWND,WORD,LONG) to the type
32         LRESULT _(HWND,WPARAM,LPARAM) where needed.
34         * [include/libres.h]
35         Restructured libres prototypes to closer match the windows API.
37         * [include/windows.h]
38         Changed several API prototypes' parameter types from 'short' to INT,
39         which is #defined as short in the emulator, but is a normal int in
40         WINELIB32.  Also changed SEGPTR from DWORD to void* when WINELIB32.
41         (This creates a lot of warnings at library-compile time, but less
42         warnings at app-compile time.  I'll remove the warnings soon.)
44         * [loader/resource.c]
45         Fixed parameter mismatch in call to LIBRES_FindResource().  Changed
46         various implementations of the LIBRES_* API functions.
48         * [loader/signal.c]
49         Deleted local 'i' from win_fault(), since it was unused.
51         * [objects/bitblt.c]
52         Mirrored changes to include/windows.h mentioned above.
54         * [toolkit/hello3.c]
55         Changed LoadMenuIndirect() call to LoadMenu() to test the new
56         resource registration technique.
58         * [toolkit/libres.c]
59         Removed definition of 'struct resource' and fixed bugs in the resource
60         implementation.  Implemented LIBRES_FindResource.
62         * [windows/graphics.c]
63         Mirrored changes to include/windows.h mentioned above.
65 Thu Dec  7 23:15:56 1995     Martin von Loewis <loewis@informatik.hu-berlin.de>
67         * [controls/edit.c]
68         LOCAL_HeapExists: Changed parameter to HANDLE. For WineLib, return true
70         * [controls/listbox.c]
71         CreateListBoxStruct: Initialize HeapSel to 0 for WineLib
73         * [include/listbox.h]
74         change HeapSel from WORD to HANDLE
76         * [include/resource.h][rc/winerc.c]
77         struct ResourceTable: removed
78         struct resource: moved to header file
79         autoregister resources if supported by compiler
81         * [memory/local.h]
82         LOCAL_GetHeap: expect HANDLE rather than WORD
83         
84         * [toolkit/Makefile.in]
85         Add ALLCFLAGS to make hello3
87         * [toolkit/heap.c]
88         LocalFree, HEAP_Free: handle 0 parameter gracefully
90 Wed Dec 06 15:34:23 1995  Greg Cooper <cooper@ima-inc.com>
92         * [misc/winsocket.c]
93         Fixed the msgsnd and msgrcv errors that winsock programs get.
95 Wed Dec 06 12:47:23 MET 1995 Sven Verdoolaege <skimo@dns.ufsia.ac.be>
96         
97         * [if1632/kernel.spec]
98         Fixed _hread and _hwrite return type
100         * [if1632/relay32.c] [loader/pe_image.c]
101         Hacked loading of PE-dll's in
103         * [win32/advapi.c]
104         Added stubs for RegCreateKeyEx, RegSetValueEx, RegQueryValueEx
106         * [win32/file.c]
107         Added stubs for OpenFileMapping, CreateFileMapping, MapViewOfFileEx
109         * [win32/process.c]
110         Added stubs for CreateMutexA, ReleaseMutex, CreateEventA,
111         WaitForSingleObject, DuplicateHandle, GetCurrentProcess
112         
113 Mon Dec 04 13:06:37 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
115         * [include/wine.h] [misc/lstr.c]
116         Define wine_strncpy(). This function does not pad the buffer with 
117         zeroes like GNU strncpy(), which might break some Windows programs
118         that pass bogus size arguments.
120         * [loader/module.c]: GetModuleFileName(),
121         [misc/commdlg.c]: GetFileTitle(),
122         [misc/keyboard.c], [misc/lstr.c]: lstrcpyn(),
123         [misc/ole2nls.c], [misc/profile.c], [multimedia/mcistring.c],
124         [multimedia/mmsystem.c], [objects/font.c]:
125         Use wine_strncpy() where strings are returned to Windows programs.
126         
127         * [objects/metafile.c]
128         PlayMetafile(): Clear the handle table before using it.
130         * [misc/shell.c] [misc/main.c]
131         Rename SHELL_RegCheckForRoot() to SHELL_Init() and call it from main().
132         
133         * [misc/profile.c]
134         load(): Need to handle comments.
135         
136         * [toolkit/libres.c]
137         Make it compile.
138         
139         * [windows/nonclient.c]
140         Use MAKE_SEGPTR macro in two places where a user heap block used
141         to be allocated instead.
143 Sat Dec 02 16:43:43 1995 Ramon Garcia <ramon@ie3.clubs.etsit.upm.es>
145         * [windows/winpos.c]
146         In function SetWindowPos: do not redraw the parent of
147         a window if the specified window is placed on the top.
148         This avoids that ShowWindow(hwnd,1) hides hwnd instead
149         of showing it.
151 Sat Dec 02 11:00:00 1995 Alex Korobka <alex@phm30.pharm.sunysb.edu>
153         * [windows/scroll.c]
154         Now it can scroll children along with the client region of parent 
155         window. Tried to optimize update region calculation. 
157         * [windows/mdi.c]
158         ScrollChildren function, more other features added. Basically
159         a rewrite.
161         * [windows/winpos.c] [windows/focus.c]
162         Reimplemented window activation and focus handling.
164         * [windows/nonclient.c]
165         Added new flag WIN_NCACTIVATED.
167         * [windows/message.c] [loader/task.c]
168         Small changes (to maintain linked list of message queues).
170 Wed Nov 29 15:51:48 1995  Daniel Schepler  <daniel@shep13.wustl.edu>
172         * [include/options.h] [misc/main.c] [windows/defwnd.c]
173           [windows/event.c] [windows/nonclient.c] [windows/win.c] [Wine.man]
174         Implemented a -managed option to replace the standard Windows
175         frame of top-level windows with the window manager's decorations.
176         If a top-level window makes its own frame, this will still show
177         up, inside the window manager decorations (I believe ctl3dv2.dll
178         would do this, although I can't test this).
180 ----------------------------------------------------------------------
181 Tue Nov 21 18:49:10 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
183         * [configure.in] [Makefile] [misc/dos_fs.c]
184         Got rid of autoconf.h file.
186         * [debugger/dbg.y]
187         More logical behavior upon syntax errors.
189         * [include/hook.h] [windows/hook.c]
190         Changed hook structure and rewrote most of the hook functions for
191         better compatibility, based on investigations by Alex Korobka.
193         * [include/message.h] [windows/message.c]
194         Added hooks to message queue structure and made the structure
195         layout Windows-compatible.
196         Added support for WH_MOUSE, WH_KEYBOARD, WH_HARDWARE and
197         WH_JOURNALRECORD hooks.
199         * [misc/main.c]
200         Added command-line option for changing the language at run-time
201         (not implemented yet), based on a suggestion from Michael Patra.
203         * [objects/cursoricon.c]
204         Fixed silly SEGPTR bug in DumpIcon().
206 Mon Nov 20 22:22:22 1995  Alex Korobka <alex@phm30.pharm.sunysb.edu>
208         * [controls/listbox.c] [controls/combo.c] [include/listbox.h]
209         Partial implementaion of LBS_EXTENDEDSEL style,
210         yet more updates for drag & drop support. Now works.
212         * [windows/defwnd.c]
213         More message handlers.
215         * [windows/win.c]
216         DragObject, DragDetect, AnyPopup functions. 
218         * [controls/listbox.c]
219         More kludgy fixes (WM_...TOITEM, etc.).
221         * [objects/cursoricon.c] [objects/oembitmap.c]
222         IconToCursor skeleton, patch for OBM_LoadCursorIcon to handle new
223         cursor.
225         * [include/bitmaps/ocr*]
226         New OEM cursors.
228 Mon Nov 20 11:05:20 EST 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
230         * [toolkit/heap.c]
231         Swapped flags and size arguments to LocalRealloc as per changes in
232         memory/local.c by William Magro in previous release.
234         * [include/wintypes.h]
235         Reinstated the #define's for 'min' and 'max', since they're part of
236         the Windows API.  I really don't think it's a wise idea, so I put
237         a '#ifndef DONT_DEFINE_min_AND_max' around them.  I think the actual
238         WINE code should never use these (it should use 'MIN' and 'MAX'
239         instead).
241         * [loader/*]
242         Put '#ifndef WINELIB' around many things that WINElib should not need.
244         * [controls/edit.c]
245         Took out many '#if defined(WINELIB)' sections with the associated
246         comment 'temporary fix, until Local memory is correctly implemented in
247         WINELIB', since the effective translations are now in 
248         toolkit/miscstubs.c.
249         Took out the #ifndef's I put in EDIT_ClearText.  Whoever modified this
250         file fixed (or at least postponed) the bug I had encountered.
252         * [loader/task.c]
253         Put an #ifdef in TASK_CreateTask() that hardwires the current drive to
254         C:  This will probably cause a lot of trouble if this change is
255         forgotten in the future, but it will let things like the OpenFileName
256         dialog work for now.
258         * [toolkit/libres.c] [toolkit/Makefile.in] [toolkit/Makefile]
259           [include/libres.h]
260         Made new libres.c file, which will contain functions for supporting
261         accessing resources by name in WINElib.  'winerc' will need to be
262         changed.
264         * [toolkit/heap.c]
265         Refined memory routines to allow for differences between LocalAlloc
266         and GlobalAlloc and between LocalSize and GlobalSize.
268         * [windows/message.c] [include/windows.h]
269         Defined the GetCurrentTime routine in windows/message.c, and removed
270         the #define in windows.h.
272 Mon Nov 20 00:36:42 MET 1995 Sven Verdoolaege <skimo@dns.ufsia.ac.be>
274         * [*/*]
275         Added new debugging type DEBUG_WIN32 and DEBUG_ENV.
277         * [loader/module.c]
278         Added undocumented GetExpWinVer.
280         * [tools/build.c]
281         Previous code didn't pop possibly changed %esi, %edi and %edx
282         from the stack.
283         
284         * [win32/advapi.c]
285         Added GetUserNameA.
287         * [win32/code_page.c]
288         Added stub for MultiByteToWideChar.
290         * [win32/console.c]
291         Added SetConsoleCtrlHandler stub.
293         * [win32/file.c]
294         Added ReadFile CreateFileA GetFileInformationByHandle stubs.
295         Added CloseHandle.
297         * [win32/memory.c]
298         Changed VirtualAlloc and VirtualFree.
300         * [win32/process.c]
301         Added ExitProcess.
303 Sun Nov 19 17:54:42 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
305         * [include/windows.h]
306         Fixed a few broken structure definitions.
308         * [loader/resource.c]
309         FindResource(): Need to check for '#xxx' strings here.
311         * [miscemu/int21.c]
312         FindNext(): Return MS-DOS filenames uppercase.
314         * [objects/cursoricon.c]
315         CreateIcon(), CreateCursor(): Added missing element to CURSORICONINFO
316         initializers.
317         
318         * [misc/file.c]
319         _lopen(): Files opened in OF_WRITE mode are truncated.
320         OpenFile(): Ignore OF_READ/OF_WRITE/OF_READWRITE when files are
321         created; use read/write mode.
322         
323         * [misc/profile.c]
324         load(): Rewritten.
325         
326         * [misc/commdlg.c]
327         Fixed bad call to strncpy() that smashed the stack.
329         * [controls/combo.c] [windows/winpos.c] [memory/selector.c]
330         Operator precedence fixes. People who use gcc 2.7.1 don't need a
331         debugger :-)
332         
333         * [if1632/gdi.spec] [objects/palette.c]
334         Add ResizePalette() and AnimatePalette() stubs. They don't do anything,
335         but sometimes that's good enough.
337 Fri Nov 17 09:10:35 GMT 1995  John Harvey <john@division.co.uk>
339         * [include/wine.h] [include/registers.h] [include/winsock.h]
340         Added definitions for Unixware.
342         * [loader/signal.c] [misc/comm.c] [misc/winsocket.c]
343         Misc. fixes for Unixware.
345         * [loader/task.c]
346         Made assignemts to context in InitTask for registers use the macros
347         from registers.h to make them more portable. (Needed for Unixware)
349         * [tools/build.c]
350         Fixed register acces routines to work on Unixware. Bit grubby but
351         it seems to work.
353         * [controls/edit.c]
354         EDIT_WM_NCCreate allocates local heap if hasn't been previously
355         allocated.
356         
357         * [miscemu/int21.c]
358         mkdir now creates directory with permission to access it.
360         * [misc/dos_fs.c]
361         mkdir now creates directory with permission to access it.
362         DOS_opendir now uses linked list of dirents to avoid problems with 
363         realloc changing address of malloced memory.
365 Thu Nov 16 12:47:13 1995  Michael Patra  <patra@itp1.Physik.TU-Berlin.DE>
367         * [controls/menu.c]
368         MENU_CalcItemSize(): Fixed handling of empty menu items.
370 Sat Nov 11 21:46:54 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
372         * [misc/file.c]
373         In OpenFile, unlink should be done on the unix filename.
375 Sat Nov 11 16:43:29 1995  Cameron Heide  (heide@ee.ualberta.ca)
377         * [include/handle32.h]
378         New header file containing internal Win32 kernel handle
379         information.
381         * [win32/file.c]
382         Added ReadFile, CreateFile, and CloseFileHandle, and did
383         some reorganizing to match the new handle allocation scheme.
385         * [win32/init.c]
386         Added CloseHandle and the creation of standard I/O handles.
388         * [win32/object_mgt.c]
389         New module for allocating and freeing Win32 kernel handles.
391 ----------------------------------------------------------------------
392 Fri Nov  3 20:08:17 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
394         * [configure.in]
395         Attempt to check for -li386 on NetBSD. Please test this.
397 Mon Oct 30 12:40:32 EST 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
399         * [*/*]
400         Eliminated various warnings with either explicit casts or more
401         accurate variable/parameter declarations (e.g. INT instead of short
402         or WORD).
403         Changed macros 'min' and 'max' to 'MIN' and 'MAX', since they're
404         macros.
406         * [controls/edit.c] [windows/defdlg.c]
407         Added '#ifdef SUPERFLUOUS_FUNCTIONS' wrappers around function
408         definition of EDIT_KeyVScrollDoc, EDIT_TextLineNumber, and
409         DEFDLG_FindDefButton to avoid warnings.
411         * [controls/button.c] [controls/scroll.c] [windows/defwnd.c]
412           [windows/message.c] [windows/nonclient.c]
413         Converted MAKEPOINT macro call to manual conversion.
415         * [include/windows.h]
416         For WINELIB32, structures POINT, SIZE, and RECT have LONG members
417         instead of INT.  This also invalidates the macro MAKEPOINT(), which
418         is not supported in Win32.  Also defined the POINTS structure (SHORT
419         members) and the MAKEPOINTS macro.
421         * [misc/commdlg.c]
422         Changed a lot of 'strcpy' calls to 'strncpy' calls.  I'm desperate to
423         find this memory bug, and this should be done anyway.
425         * [controls/edit.c]
426         Well, the alteration mentioned above didn't do it, but #ifdef'ing out
427         a few lines in EDIT_ClearText did.  This leads to bugs, but for now,
428         it's better than bizzare memory troubles.
430         * [toolkit/miscstubs.c]
431         Removed warning messages in GLOBAL_CreateBlock(), GLOBAL_FreeBlock(),
432         and RELAY32_GetEntryPoint().  These are the most popular warnings, and
433         their current implementation seems fine.
435 Sat Oct 28 09:39:18 1995  Jochen Karrer <cip307@wpax01.Physik.Uni-Wuerzburg.DE>
437         * [objects/cursoricon.c]
438         Fix for "broken" X servers that invert masked cursor colors.
440 Fri Oct 27 19:27:21 1995  Alex Korobka  <alex@phm6.pharm.sunysb.edu>
442         * [windows/dialog.c] [windows/nonclient.c]
443         Remove unnecessary items from the system menu.
445 Thu Oct 26 05:03:03 MET 1995  Philippe De Muyter <phdm@info.ucl.ac.be>
447         * [objects/color.c] [objects/palette.c]
448         Make GetNearestColor return a RGB value instead of a pixel value.
450 Wed Oct 25 23:33:39 1995    Martin von Loewis <loewis@informatik.hu-berlin.de>
452         * [controls/desktop.c][controls/menu.c][include/menu.h]
453         Changed WORD parameters to UINT parameters.
455         * [include/wintypes.h]
456         Made UINT 32bit for WINELIB.
458         * [loader/main.c]
459         Disabled RELAY32_Init and MODULE_Init for WINELIB.
461         * [misc/main.c]
462         Assume CPU386 for WINELIB.
464         * [rc/winerc]
465         add_popup: set MF_POPUP flag on menu item.
467         * [toolkit/Makefile.in][toolkit/hello3.c][toolkit/hello3res.c]
468         Add resource demo hello3 for WINELIB.
469         New file README.resources.
471         * [toolkit/miscstubs.c]
472         Add a case for 17.
474 Tue Oct 17 15:13:10 IST 1995  Itai Nahshon <nahshon@vnet.ibm.com>
476         * [loader/module.c]
477         Do not append .exe if the file name already has an extension.
479         * [misc/profile.c]
480         Avoid creating a file with a junk name if a .ini file does not
481         exist.
483         * [if1632/gdi.spec] [if1632/user.spec] [if1632/dummy.c]
484         Added a lot of dummy stubs for Windows Hebrew version.
486 Tue Oct 17 01:03:24 1995 William Magro <wmagro@tc.cornell.edu>
488         * [controls/button.c]
489         Fix for buttons with no label.
491         * [controls/combo.c][controls/listbox.c]
492         Fixes for scrollbar positioning.  Now disappears correctly
493         for short lists.
495         * [controls/edit.c]
496         Handle memory allocation differently when building as library.
498         * [controls/static]
499         Don't destroy old icon before drawing new icon. (Fixes landscape/
500         portrait toggle icon in print dialog.)
502         * [if1632/gdi.spec]
503         New functions SetMetaFileBits and GetMetaFileBits
505         * [include/sysmetrics.h] [windows/sysmetrics.c]
506         Add support for GetSystemMetrics(SM_CMETRICS) == SM_CMETRICS
508         * [include/windows.h]
509         META_EXTTEXTOUT, not META_SETTEXTOUT
510         define GetCurrentTime as GetTickCount (for wine library)
512         * [loader/main.c]
513         Don't initialize built-in modules in wine library
515         * [memory/local.c]
516         LocalReAlloc was defined incorrectly. Swap flags and size arguments.
518         * [misc/main.c]
519         Always report CPUTYPE=4 to wine library.
521         * [objects/dib.c]
522         RLE8 images were missing top line when decompressed.
524         * [objects/metafile.c]
525         SetMetaFileBits and GetMetaFileBits implemented.  Works when called
526         from winhelp.  More testing needed.  Various memory leaks plugged.
527         Various other bug fixes.  New metafile operations added in
528         PlayMetaFileRecord: CreatePalette, SetTextAlign, SelectPalette,
529         SetMapperFlags, RealizePalette, ExtTextOut, Escape.  Testing needed.
531         * [toolkit/heap.c]
532         LocalUnLock changed to LocalUnlock
534 Sun Oct 15 21:55:33 1995  Anand Kumria <akumria@ozemail.com.au>
535         
536         * [misc/winsock.c] 
537         Return the correct error number, for host lookup operations.
538         Also, correct the problem with send_message.
540 Fri Oct 13 19:04:35 1995  Morten Welinder  <terra@diku.dk>
542         * [Makefile.in]
543         Using nm's built-in sorting.
545         * [*/*.c]
546         Use xmalloc for malloc and xrealloc for realloc in all ungarded
547         cases.
549         * [debugger/dbg.y]
550         Handle C-like expressions.  Clean-up.
552         * [debugger/debug.l]
553         Lots of new tokens for expressions.
555         * [debugger/info.c]
556         Implement "list" command for disassembling.
558         * [misc/ole2nls.c]
559         Implement more Danish stuff.
561 Fri Oct  6 10:39:39 1995 Ram'on Garc'ia <ramon@ie3.clubs.etsit.upm.es>
563         * [loader/module.c]
564         Updated self-loading modules to support for new 32 bit 
565         stack frames.
567 ----------------------------------------------------------------------
568 Sun Oct  1 15:48:34 1995  Alexandre Julliard  <julliard@sunsite.unc>
570         * [controls/menu.c]
571         Fixed GetMenuString() for non-string items.
573         * [debugger/*.c]
574         First attempt to check validity of pointers before memory
575         accesses. For now only segmented pointers are checked.
577         * [debugger/dbg.y] [memory/ldt.c]
578         Added possibility to dump only one segment with 'info segment'.
580         * [include/bitmaps/ocr_*]
581         Added all OEM cursors as XPM bitmaps.
583         * [include/cursoricon.h] [objects/cursoricon.c]
584         Rewrote all cursor and icon management to use the same memory
585         layout as Windows, and to factor common code between icons and
586         cursors. Implemented icon directory lookup to find the best
587         matching icon (i.e. the color one).
588         Implemented CopyCursor() and DumpIcon().
590         * [loader/module.c]
591         For disabled built-in modules, we now try to load the Windows DLL
592         first, and if this fails we fall back to using the built-in module
593         anyway.
595         * [memory/global.c]
596         Fixed GlobalHandle() to return the correct selector in the high
597         word even if we are passed a handle in the first place.
599         * [miscemu/instr.c]
600         Take into account the size of the operand and of the stack segment
601         when incrementing the stack pointer.
602         Avoid referencing FS_reg and GS_reg on *BSD.
604         * [objects/dib.c]
605         All DIB functions now accept a BITMAPCOREHEADER format bitmap.
606         Monochrome DIBs are created as monochrome bitmap iff they are
607         black and white.
609         * [objects/oembitmap.c]
610         Added support for OEM cursors, changed OBM_LoadIcon to use the new
611         icon memory layout.
613         * [rc/sysres_Fr.rc]
614         Added French [Fr] language support.
616         * [win32/environment.c]
617         Fixed GetCommandLineA() to use current PDB.
619         * [windows/event.c] [windows/winpos.c]
620         Simulate a mouse motion event upon SetWindowPos() to force the
621         cursor to be set correctly.
623 Sat Sep 30 17:49:32  Cameron Heide  (heide@ee.ualberta.ca)
625         * [win32/*]
626         New Win32 kernel functions: GetACP, GetCPInfo,
627         GetEnvironmentVariableA, GetFileType, GetLastError, GetOEMCP,
628         GetStartupInfoA, GetTimeZoneInformation, SetEnvironmentVariable,
629         SetFilePointer, SetLastError, VirtualAlloc, VirtualFree,
630         WriteFile.  Completed implementations of GetCommandLineA.
632         * [include/kernel32.h]
633         New file.
635         * [loader/main.c]
636         Call initialization function for Win32 data (doesn't currently do
637         anything).
639         * [misc/main.c]
640         Implemented GetEnvironmentVariableA, SetEnvironmentVariableA.
642 Sat Sep 30 00:26:56 1995  Niels de Carpentier  <niels@cindy.et.tudelft.nl>
644         * [windows/winpos.c][miscemu/emulate.c][loader/module.c]
645           [misc/commdlg.c]
646         Misc. bug fixes
648 Fri Sep 29 16:16:13 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
650         * [*/*]
651         For Winelib, explicit casts have been placed where warnings were
652         usually generated.
653         printf formats which give the format for printing a handle as
654         "%04x" or something similar have been changed to use the NPFMT
655         macro defined in include/wintypes.h.  Some times, explicit casts
656         were also necessary.
657         Parameter, field, and variable declarations have been made more
658         exact, such as converting 'WORD wParam' to 'WPARAM wParam' or
659         'WORD hFont' to 'HFONT hFont'.
660         Any call of the form GetWindowWord(hwnd,GWW_HINSTANCE) has been
661         replaced with a call to WIN_GetWindowInstance(hwnd).
663         * [controls/combo.c]
664         Added WINELIB32 support in CLBoxGetCombo().
666         * [include/dialog.h]
667         Commented out the '#ifndef WINELIB' around the '#pragma pack(1)'.
668         winelib needs the packing as well (e.g. when accessing resources
669         like sysres_DIALOG_SHELL_ABOUT_MSGBOX).
671         * [include/windows.h]
672         Got rid of the F[a-k] macros, which were cluttering up the global
673         namespace.
675         * [include/windows.h] [windows/defwnd.c]
676         Added Win32 messages WM_CTLCOLOR*.
678         * [include/wintypes.h]
679         Put in preprocessor '#define WINELIB32' if appropriate and changed
680         the types of some typedefs (WPARAM, HANDLE) based on this.
681         
682         * [loader/module.c] [toolkit/miscstubs.c]
683         Added #ifdef'd portion in LoadModule to handle loading a WINElib
684         module (already loaded, just init values).  '#ifdef'ed out the
685         definition for GetWndProcEntry16 and added a new version to
686         toolkit/miscstubs.c.
688         * [misc/shell.c]
689         Adjusted the lengths of AppName and AppMisc from 512,512 to 128,906.
690         Same amount of total storage, but much more reasonable.  Also, changed
691         calls to strcpy() in ShellAbout() to calls to strncpy() instead.
692         This was a difficult bug to track down, but the AppMisc field was
693         being initialized with the contributers text, which was much larger
694         than 512 characters.
696         * [toolkit/atom.c]
697         New file for atom-handling functions.  Copied from memory/atom.c and
698         then heavily modified.  Right now, it's just a linked list of atoms.
699         Consider it as a hash table with just one entry.  It's easily changed
700         later.
702         * [toolkit/heap.c]
703         Commented out the heap functions with a "#ifdef WINELIB16" and put in
704         a Win32 version (which is basically a modified copy).
706         * [toolkit/sup.c] [toolkit/miscstubs.c]
707         Moved the stuff I put in toolkit/sup.c into toolkit/miscstubs.c and
708         added quite a few more stubs.
710         * [toolkit/winmain.c]
711         Rearranged startup code in _WinMain.  I think this will work.
713         * [toolkit/Makefile.in]
714         Added targets for 'hello' and 'hello2' in case anyone cares to try
715         out the sample programs.
717 Wed Sep 27 23:13:43 1995  Anand Kumria <akumria@ozemail.com.au>
718         
719         * [miscemu/int2f.c] [miscemu/vxd.c] [if1632/winprocs.spec]
720         First attempt at support for some VxDs. Comm, Shell and Pagefile.
722 Tue Sep 26 21:34:45 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
724         * [misc/dos_fs.c]
725         DOS_SimplifyPath: Also remove "/./" from path. (Happens when
726         starting applications like 'wine ./excel.exe')
728 Sat Sep 23 23:32:40 1995  Morten Welinder  <terra@diku.dk>
730         * [configure.in]
731         Avoid relative path for wine.ini.
733         * [rc/sysres_Da.rc]
734         Support for Danish [Da] language.
736         * [misc/main.c] [miscemu/cpu.c]
737         Return the processor we're running on correctly.
739         * [miscemu/int2f.c]
740         Minor stuff in int 0x2f, function 0x16.
742 Sat Sep 23 1995 17:58:04  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
744         * [misc/shell.c] [misc/main.c]
745         Implement saving and loading of the registry database (needed for
746         OLE). Very experimental. Fixed ShellExecute().
747         
748         * [miscemu/int21.c]
749         EEXIST is not a critical error condition for mkdir().
751 Fri Sep 22 01:33:34 1995  Alex Korobka  <alex@phm6.pharm.sunysb.edu>
753         * [include/shell.h] [misc/shell.c]
754         Implemented 4 drag/drop functions with documented functionality.
756         * [multimedia/time.c]
757         "Fixed" MMSysTimeCallback kludge so Excel5 loads up without crashing.
759         * [*/*] 
760         Added new files, more message definitions, structures, debug info,
761         etc.  Rewrote message logging functions to produce output similar
762         to WinSight.  Check out -debugmsg +message option.
764         * [misc/file.c]
765         Fixed GetDriveType return value.  
767         * [windows/message.c] 
768         Hooks are invoked in normal order.
770         * [miscemu/*]
771         Added some functions and interrupts.
773         * [misc/shell.c]
774         Implemented Drag... functions.
776 Thu Sep 21 23:50:12 1995  Jukka Iivonen <iivonen@cc.helsinki.fi>
778         * [rc/sysres_Fi.rc] [rc/sysres.rc]
779         First attempt at Finnish [Fi] language support.
781 ----------------------------------------------------------------------------
782 Sun Sep 17 16:47:49 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
784         * [configure.in] [*/Makefile.in] [Make.rules.in]
785         Cleaned up makefiles, added configuration option for Winelib,
786         grouped common make rules in Make.rules.in.
788         * [Configure]
789         Renamed to 'Configure.old'; please use 'configure' instead.
791         * [controls/menu.c]
792         Fixed DestroyMenu() to avoid deleting the same menu twice.
793         More fixes to WM_MENUSELECT, and added WM_INITMENU.
795         * [if1632/relay.c]
796         Fixed wrong register values displayed by RELAY_DebugCall32().
798         * [memory/local.c]
799         Fixed LocalLock() and LocalUnlock() to increment/decrement the
800         lock count for moveable blocks.
802         * [misc/commdlg.c] [misc/shell.c] [rc/winerc.c]
803         Modified the generated C file so that the resource information
804         (size, etc.) is also exported.
805         Modified common dialogs to use the new informations.
807         * [misc/main.c] [ANNOUNCE]
808         Update the list of contributors. Please let me know if I forgot
809         someone.
811         * [rc/sysres.rc] [rc/sysres_En.rc]
812         Moved English resources to sysres_En.rc.
813         Changed ids from numeric to symbolic for dialogs.
815         * [windows/dialog.c]
816         Modified template parsing to be able to pass segmented pointers to
817         CreateWindow().
819         * [windows/win.c]
820         CreateWindow() now takes segmented pointers for class and window
821         names.
822         Maxmimize or minimize the window upon creation if the WS_MAXIMIZE
823         or WS_MINIMIZE bits are set.
825 Thu Sep 14 17:19:57 1995  Paul Wilhelm  <paul@paul.accessone.com>
827         * [controls/scroll.c]
828         Fixed scroll-bar bugs for non-client windows.
830 Thu Sep 14 14:04:14 MET DST 1995 Jochen Hoenicke <Jochen.Hoenicke@arbi.Informatik.Uni-Oldenburg.de>
832         * [include/cursor.h] [windows/cursor.c]
833         Cursor is not mirrored any more and the hotspot is set right.
835 Wed Sep 13 14:22:31 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
837         * [ole.h]
838         Misc small fixes.
840 Mon Sep  4 00:01:23 1995  Jon Tombs <jon@gte.esi.us.es>
842         * [rc/sysres_Es.rc]
843         First attempt at Spanish [Es] language support.
845 Sun Sep  3 13:22:33 1995     Martin von Loewis <loewis@informatik.hu-berlin.de>
847         * [include/alias.h][windows/alias.c][include/relay32.h]
848         New files
850         * [controls/widgets.c]
851         WIDGETS_Init: register alias window procedures
853         * [if1632/callback.c]
854         CallWndProc: Call alias functions if necessary
856         * [if1632/gdi32.spec]
857         GetStockObject, TextOutA: new relays
859         * [misc/user32.c][if1632/user32.spec][misc/Makefile.in][misc/Imakefile]
860         user32.c: new file
861         BeginPaint,CreateWindowExA,DefWindowProcA,DispatchMessage,EndPaint,
862         GetMessageA,RegisterClassA,ShowWindow,UpdateWindow: new relays
864         * [if1632/winprocs32.spec][loader/pe_image.c][loader/module.c]
865         PE_Win32CallToStart: new function
866         MODULE_CreateInstance: removed static attribute
867         LoadModule: Try loading PE image on error 21
868         PE_LoadModule: new function
869         PE_LoadImage: initialize pe_data with 0
870         
871         * [include/dlls.h][include/peexe.h]
872         moved pe_data and w_files to peexe.h
873         
874         * [misc/shell.c]
875         ShellAbout: Register AboutWndProc aliases
877         * [miscemu/int21.c]
878         handle 0x440A and 0xDC
880         * [miscemu/int2f.c]
881         handle 0x84
883         * [objects/dib.c]
884         CreateDIBitmap: complain if BITMAPINFOHEADER is of wrong size
886         * [tools/build.c]
887         include windows.h and relay32.h into generated Win32 relays,
888         don't declare the implementation as int (*)();
889         limit in WIN32_builtin was off by one
891         * [windows/caret.c]
892         CARET_Initialize: new function, call on strategic places
894         * [windows/messagebox.c]
895         MessageBox: register message box proc aliases
897         * [if1632/advapi32.spec][if1632/comdlg32.spec]
898         New files
900         * [if1632/Makefile.in][if1632/Imakefile][if1632/relay32.c]
901         added new spec files
902         RELAY32_GetBuiltinDLL: perform lookup case insensitive
903         RELAY32_GetEntryPoint: start name search at 0
905         * [if1632/user.spec][if1632/kernel.spec][if1632/gdi.spec]
906         Added stubs for new Win95 API
908 Sat Sep 2 1995  Martin Roy
910         * [misc/commdlg.c]
911         In WM_INITDIALOG, current filter must reflect lpofn->nFilterIndex.
912         When process IDOK button in FILEDLG_WMCommand(),
913         lpofn->nFilterIndex should be updated to current selection.
915 Thu Aug 31 15:00:00 1995 Ram'on Garc'ia <ramon@ie3.clubs.etsit.upm.es>
917         * [loader/module.c] [loader/ne_image.c]
918         Added support of self-loading modules.
920 ---------------------------------------------------------------------
921 Thu Aug 31 17:19:57 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
923         * [Configure]
924         Added compile-time option for IPC.
926         * [configure.in]
927         Added command-line options for language, IPC and malloc
928         debugging.
930         * [controls/menu.c]
931         WM_MENUSELECT was sometimes sent to the wrong window.
933         * [debugger/break.c]
934         For the 'next' command, only step over instruction that require
935         it. This allows 'next' to do the right thing with jmp and ret
936         instructions.
938         * [ipc/*.c] [memory/atom.c] [memory/global.c]
939         IPC can now be configured out at compile-time.
941         * [loader/task.c]
942         Bug fix in TASK_Reschedule() that could cause a task to be deleted
943         twice.
945         * [miscemu/dosmem.c] (New file)
946         Partial emulation of the BIOS data segment.
948         * [miscemu/instr.c]
949         Trap attempts to access selector 0x40 and remap the access to
950         segment __0040H.
952         * [tools/build.c]
953         Fixed bug in CallTo32_LargeStack() that caused problems when
954         compiling Wine with the -fomit-frame-pointer option.
956         * [windows/message.c]
957         Fixed bug in hardware event handling that could cause some events
958         to get ignored.
960 Sat Aug 26 13:12:59 IST 1995 Michael Veksler <mveksler@vnet.ibm.com>
962         * [ipc/README] [ipc/dde.tex]
963         LaTeX documentation for the ipc and DDE stuff.
965 Wed Aug 23 22:01:23 GMT 1995 Michael Veksler <mveksler@vnet.ibm.com>
967         * [ipc/Imakefile] [ipc/wine_test_stub.c]
968         Fixed IPC testing. Now it can be compiled with "make tests"
970 Wed Aug 23 21:04:14 1995  Fons Botman  <botman@wab-tis.rabobank.nl>
972         * [if1632/kernel.spec] [include/windows.h] [misc/main.c]
973         Added GetWinDebugInfo/SetWinDebugInfo stub for player.exe
975 Sun Aug  20 13:49:42 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
977         * [miscemu/int21.c]
978         Misc fix to int21,ah=40 (write) to match _lwrite().
979         AX=0x440A (check if handle is remote) added.
981         * [multimedia/mmsystem.c]
982         Moved mciSendString to mcistring.c.
984         * [multimedia/mcistring.c]
985         New file, string interface for MCI (not complete, not thoroughly
986         tested).
988         * [multimedia/audio.c]
989         IOCTL prints errors; one paranoid check disabled.
991         * [misc/file.c]
992         Misc operator precedence fixes.
994         * [if1632/gdi.spec] [objects/bitblt.c]
995         Stub for FastWindowFrame (parameters not correct).
997 Sat Aug 19 01:31:23 1995  Graham Menhennitt <gfm@werple.mira.net.au>
999         * [loader/ne_image.c]
1000         Preliminary support for iterated segments.
1002 Sat Aug 19 00:43:04 1995  Andrew Taylor  (andrew@riscan.com)
1004         * [windows/mapping.c]
1005         In function MAPPING_FixIsotropic(), VportExt[XY] is multiplied by
1006         the absolute value of (ydim / xdim) or (xdim / ydim).
1008 Thu Aug 15 23:00:16  Gregory Trubetskoy  <grisha@mira.com>
1010         * [objects/oembitmap.c]
1011         Added some includes for Windows 95.
1013         * [include/sysmetrics.h]
1014         Added some sysmetrics for Windows 95.
1016         * [include/bitmaps/*95]
1017         New files: obm_close_95, obm_closed_95, obm_reduce_95, obm_reduced_95
1018         obm_zoom_95, obm_zoomd_95 - these are some pixmaps for Windows 95.
1020 Thu Aug 10 12:00:00 1995  Jan Willamowius  (jan@janhh.shnet.org)
1022         * [misc/shell.c] [rc/sysres*.rc]
1023         The caption of the ShellAbout dialog box is language specific and
1024         should be defined in the resources.
1026 ----------------------------------------------------------------------
1027 Thu Aug 17 19:30:14 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
1029         * [*/Makefile.in]
1030         Removed winelibclean target, as it doesn't work anyway.
1032         * [controls/button.c]
1033         Avoid drawing the focus rectangle outside of the button.
1035         * [controls/widgets.c]
1036         Fixed bug with the size of the reserved bytes for the Edit
1037         control (caused Eudora to crash).
1039         * [debugger/*] [include/debugger.h]
1040         Unified debugger address handling. Segmented and linear addresses
1041         are no grouped in a single type DBG_ADDR.
1042         All commands now accept seg:off addresses.
1043         Module entry points are now loaded upon first entry to the
1044         debugger, so that entry points of the loaded executable also
1045         appear in the symbol table.
1047         * [include/registers.h] [miscemu/*.c]
1048         Register macros are now of the form 'AX_reg(context)' instead of 'AX'.
1049         This makes code less readable, but will prevent a lot of name
1050         clashes with other definitions. It also avoids a hidden reference
1051         to the 'context' variable.
1053         * [ipc/dde_atom.c] [misc/atom.c]
1054         All *AddAtom and *FindAtom functions now take a SEGPTR parameter,
1055         to allow supporting integer atoms.
1056         Moved atom.c to memory/ directory.
1058         * [loader/task.c]
1059         Fixed environment allocation to compute the size dynamically.
1060         Added 'windir' environment variable.
1061         Fixed GetDOSEnvironment() to return the current task environment.
1063         * [windows/message.c]
1064         Fixed bug in MSG_GetWindowForEvent().
1066 Wed Aug  9 11:40:43 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
1068         * [include/ole.h]
1069         Added a lot of structures  from my Borland Manual. Neither complete,
1070         nor 100% right (check please)
1071         
1072         * [misc/shell.c]
1073         Fixed some of the Reg* functions.
1074         Enhanced ShellExecute.
1075         Please test: wine "regedit.exe /v" mplayer.exe soundrec.exe
1076         Do YOU know the format of \WINDOWS\REG.DAT? Mail me please :)
1078         * [misc/dos_fs.c]
1079         Make umsdos mounted windows dirs work again.
1081         * [miscemu/emulate.c]
1082         Added some comments, preimplementation of subfunction 7.
1084         * [multimedia/mmsystem.c]
1085         Implemented mciSendString. not complete, not clean, not
1086         necessarily working (only checked with a program which uses
1087         'cdaudio' (one working program is cool.exe, a shareware waveditor
1088         with cdaudio play facilities.)
1090         * [multimedia/mcicda.c]
1091         Segptr fixes in DriverProc
1092         Default cdrom drive in Linux is /dev/cdrom ... usually a symbolic
1093         link to your real cdrom device.
1095 Tue Aug  8 19:41:50 CDT 1995 Daniel Schepler <dks2@cec.wustl.edu>
1097         * [loader/resource.c]
1098         Don't crash in a LoadString to NULL
1100         * [loader/resource.c]
1101         Fixed accelerators to work with modifiers.  (ALT-x modifiers still
1102         won't work unless the ALT keypress exited the menu.)
1104         * [misc/file.c]
1105         Expand a file to the current offset with an _lwrite of size zero.
1107         * [misc/file.c]
1108         Set a newly created file to read-write instead of write-only.
1109         
1110 Sun Aug  6 20:28:35 1995  Anand Kumria <akumria@ozemail.com.au>
1112         * [misc/main.c] [include/msdos.h]
1113         Fixed to return DOS version 6.22, and the correct byte order
1114         for Windows programs.
1116 Wed Aug  2 12:36:33 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1118         * [include/options.h] [memory/global.c] [misc/main.c]
1119         Make the new IPC run-time selectible, disabling it by default.
1120         (I think it's only useful for libwine, anyway.)
1122         * [loader/task.c] [memory/selector.c]
1123         In FreeSelector(), walk up the stack and fix the frames.
1125         * [objects/dib.c]
1126         Missing break statement in DIB_SetImageBits_RLE8().
1127         In GetDIBits(), set the compression flag in the bitmap info to zero.
1129         * [windows/dialog.c]
1130         GetNextDlgGroupItem() needs to treat the first child as if it had
1131         an implicit WS_GROUP bit set.
1133 Mon Jul 31 15:44:47 EDT 1995 Louis-D. Dubeau <ldd@step.polymtl.ca>
1135         * [misc/dos_fs.c]
1136         Quick'n dirty fix for the initialisation of the Z: information
1137         structure.
1139 ----------------------------------------------------------------------
1140 Sat Jul 22 22:39:09 IDT 1995 Michael Veksler <e1678223@tochnapc2.technion.ac.il>
1142         * [ipc/*]
1143         New directory. This directory contains the new inter-wine
1144         communications support. It enables DDE protocols between two wine
1145         instances.  Currently it is limited to DDE, but can be enhanced to
1146         support OLE between 2 different wine instances.  This is very
1147         important for libwine.a DDE/OLE support.
1149         * [tools/ipcl]
1150         A script to delete garbage IPC handles (shared memory, semaphores
1151         and message queues).  The current inter-wine communication is not
1152         perfect, and sometimes leaves garbage behind.
1154         * [if1632/relay.c] [include/atom.h] [include/global.h]
1155         [loader/selector.c] [loader/task.c] [loader/module.c]
1156         [loader/signal.c] [memory/global.c] [misc/atom.c]
1157         [windows/class.c] [windows/message.c] [windows/win.c]
1158         [Imakefile]
1159         Hooks for inter-wine DDE support, current Global.*Atom functions
1160         renamed to Local.*Atom since Global.*Atom are used for Inter-Wine
1161         DDE communication. (The first call to these functions sets up the
1162         IPC structures - which otherwise cause unneeded overhead.
1164 Mon Jul 17 19:55:21 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
1166         * [controls/menu.c]
1167         Don't crash if a NULL string is passed to menu functions.
1169         * [memory/selector.c]
1170         We now use a bit in ldt_flags_copy to indicate free LDT entries.
1171         Fixed a bug in SELECTOR_ReallocBlock that could cause it to
1172         overwrite valid LDT entries when growing a block.
1174         * [miscemu/instr.c]
1175         Emulate int xx instruction by storing the interrupt vector in
1176         CS:IP and returning directly. This allows a program to install an
1177         interrupt vector.
1179         * [windows/win.c]
1180         Added function WIN_GetTopParent to get the top-level parent of a
1181         window.
1183 Sun Jul  16 18:17:17 1995  Gregory Trubetskoy <grisha@mira.com>
1185         * [loader/resource.c]
1186         Added LoadIconHandler. It doesn't do anything yet, but now you
1187         can use borland help files with winhelp.exe.
1189 Sun Jul 16 11:58:45 1995 Anand Kumria <akumria@ozemail.com.au>
1191         * [misc/main.c]
1192         Fixed to return 386 Enhanced mode correctly. Also return the same
1193         type of CPU, for both Enhanced and Standard mode, namely a 386.
1195 Sun Jul 16 00:02:04 1995    Martin von Loewis <loewis@informatik.hu-berlin.de>
1197         * [Configure] [include/options.h] [include/wineopts.h]
1198           [misc/main.c][misc/spy.c]
1199           Removed support of spy file. Redirected spy messages to stddeb.
1200           Removed -spy option. Added -debugmsg +spy option.
1202         * [debugger/dbg.y][debugger/debug.l]
1203         Enabled segmented addresses (seg:offs) for break and x commands.
1205         * [if1632/gdi.spec] [objects/region.c] [windows/graphics.c]
1206           [include/region.h]
1207         FrameRgn, REGION_FrameRgn: New functions
1209         * [if1632/kernel.spec]
1210         IsWinOldApTask: Return false
1212         * [if1632/mouse.spec]
1213         CplApplet: Removed
1215         * [if1632/user.spec] [windows/win.c]
1216         ShowOwnedPopups: New function
1218         * [if1632/winsock.spec] [misc/winsocket.c]
1219         inet_addr, select: New prototypes in relay code
1220         Fixed memory layout for netdb functions (getXbyY).
1221         WINSOCK_ioctlsocket: Translated FIONREAD, FIONBIO, and FIOASYNC
1223         * [objects/clipping.c]
1224         RectVisible: Fixed call to LPToDP
1226         * [rc/winerc.c]
1227         main: Removed extra argument to getopt for Linux.
1229 Tue Jul 11 00:14:41 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1231         * [controls/listbox.c]
1232         Yet another fix for ListBoxDirectory().
1233         
1234         * [loader/module.c] [if1632/kernel.spec]
1235         Make GetModuleHandle() accept instance handles as parameter.
1237         * [if1632/relay.c] [loader/task.c]
1238         Put a magic cookie at the bottom of the 32 bit stack, and check on
1239         each return from a 32 bit function whether it's still there. Complain
1240         if it's not.
1242         * [if1632/user.spec]
1243         Wrong entry for CloseDriver().
1245         * [misc/dos_fs.c] [loader/task.c] [include/dos_fs.h] [misc/file.c]
1246         [miscemu/int21.c]
1247         Large parts of dos_fs.c simplified. Changed it to use one
1248         current drive/directory per task, which is set to the module path on
1249         task creation.
1250         Prevent CorelPaint from closing stdin.
1251         open() with O_CREAT set must be passed three parameters.
1252         DOS FindFirst()/FindNext() could crash when FA_LABEL was set. Fixed,
1253         it's in DOS_readdir() now.
1255         * [misc/profile.c]
1256         Some badly written software (Lotus Freelance Graphics) passes a bogus
1257         size parameter that caused Wine to write off the end of a segment.
1258         Fixed. (It's probably too paranoid now.)
1259         
1260         * [multimedia/mmsystem.c] [multimedia/time.c] [multimedia/joystick.c]
1261         [multimedia/Imakefile] [if1632/winprocs.spec]
1262         16 bit entry point for MMSysTimeCallback.
1263         Split off time.c and joystick.c from mmsystem.c.
1264         
1265         * [objects/dib.c]
1266         GetDIBits(): call XGetImage() via CallTo32_LargeStack.
1268         * [windows/cursor.c]
1269         DestroyCursor(): do nothing for builtin cursors.
1270         
1271         * [windows/mdi.c]
1272         Half of WM_MDISETMENU implemented.
1273         
1274         * [windows/win.c]
1275         EnumWindows() and EnumTaskWindows() never enumerated any windows.
1276         Fixed.
1278         * [windows/*.c]
1279         Fixed GetParent() to return correct values for owned windows.
1281         * [windows/message.c]
1282         Don't try to activate disabled top-level windows.
1284         * [windows/nonclient.c]
1285         Work around a bug in gcc-2.7.0.
1286         
1287         * [tools/build.c] [include/stackframe.h] [memory/global.c] 
1288         [loader/task.c] [memory/selector.c]
1289         Some Visual Basic programs (and possibly others, too) expect ES to be 
1290         preserved by a call to an API function, so we have to save it.
1291         In GlobalFree() and FreeSelector(), we must clear CURRENT_STACK16->es 
1292         to prevent segfaults if ES contained the selector to be freed.
1294 Sun Jul  9 20:21:20 1995  Jon Tombs  <jon@gtex02.us.es>
1296         * [*/*]
1297         Added missing prototypes to header files and relevant includes
1298         to reduce compile time warnings.
1300 Sun Jul  9 18:32:56 1995  Michael Patra  <micky@marie.physik.tu-berlin.de>
1302         * [configure.in] [include/config.h] [*/Makefile.in]
1303         New configuration scheme based on autoconf.
1305 Sat Jul  8 14:12:45 1995  Morten Welinder  <terra+@cs.cmu.edu>
1307         * [miscemu/ioports.c]
1308         Revamp to have only one in- and one out- variant, both really
1309         implemented.
1311         * [miscemu/instr.c]
1312         INSTR_EmulateInstruction: Use new ioport interface.  Implement
1313         string io.  Correct instruction pointer for 32-bit code.
1315         * [include/miscemu.h]
1316         Update port function prototypes.
1318         * [include/registers.h]
1319         Defined FS and GS.
1321 Sat Jul  8 13:38:54 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
1323         * [misc/dos_fs.c]
1324         ChopOffSlash(): A path consisting off a single slash is left
1325         intact, and multiple slashes are all removed.
1327 ----------------------------------------------------------------------
1328 Wed Jul  5 19:06:35 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
1330         * [controls/scroll.c]
1331         Fixed drawing bug that caused part of a non-client scroll bar
1332         to be painted even when the scroll-bar was hidden.
1334         * [debugger/break.c] [debugger/dbg.y]
1335         Rewrote breakpoint handling to work in 16-bit mode.
1336         Implemented single-stepping ('step' and 'next' instructions).
1338         * [debugger/debug.l]
1339         Format specifier is now a separate token.
1340         Entering an empty line at the debugger prompt causes the previous
1341         command to be repeated, like under gdb.
1342         
1343         * [debugger/debug.l] [debugger/registers.c]
1344         Differentiate 16-bit and 32-bit registers without taking current
1345         mode into account ($eax is always 32-bit, $ax always 16-bit).
1347         * [debugger/stack.c]
1348         Fixed stack information routines to differentiate between 16-bit
1349         and 32-bit stacks.
1351         * [loader/task.c]
1352         Option -debug now sets a breakpoint at the first instruction of
1353         every loaded task.
1355         * [miscemu/instr.c]
1356         Added handling of lock, repe and repne prefixes.
1358         * [objects/dib.c]
1359         Changed StretchDIBits() to do the correct thing, even if it's still
1360         not really optimal.
1362         * [windows/graphics.c]
1363         Fixes in RoundRect(), thanks to Babak Masalehdan.
1365         * [windows/message.c]
1366         Tried to fix mouse event handling with respect to disabled
1367         windows.
1369         * [windows/painting.c]
1370         Clear WIN_NEEDS_NCPAINT flag before sending WM_NCPAINT to avoid
1371         infinite loops.
1373         * [windows/win.c]
1374         Fixed IsWindowVisible() to return FALSE when one of the parent
1375         windows is hidden.
1377 Sat Jul  1 22:08:21 1995   Martin von Loewis <loewis@informatik.hu-berlin.de>
1379         * [if1632/compobj.spec][misc/compobj.c]
1380         CoGetMalloc: New function
1381         Added relay entries for COMPOBJ ordinals above 100
1382         CoInitialize: Changed parameter to DWORD
1384         * [if1632/ole2.spec]
1385         Exported implementation of OleBuildVersion
1387         * [if1632/ole2disp.spec][misc/ole2disp.c][misc/Imakefile]
1388         ole2disp.c: New file
1389         SysAllocString, SysReallocString, SysAllocStringLen,
1390         SysReAllocStringLen, SysFreeString, SysStringLen: new functions
1392         * [if1632/ole2nls.spec][include/winnls.h][misc/ole2nls.c]
1393         CompareStringA: New function
1395 Thu Jun 29 19:42:02 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
1396         * [objects/font.c] [if1632/gdi.spec]
1397         New stubs for CreateScalableFontResource, GetGlyphOutline.
1399 Thu Jun 29 13:47:08 GMT 1995  Göran Thyni  (goran@norrsken.bildbasen.se)
1401         * [misc/commdlg.c]
1402         Extensive changes and bug fixes to FileDialog handling,
1403         behaves more like native Windows.
1405 Wed Jun 28 13:04:44 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1407         * [controls/listbox.c] [controls/combo.c]
1408         Some minor optimizations.
1409         
1410         * [memory/local.c]
1411         LOCAL_FindFreeBlock(): Never use the last one.
1412         
1413         * [memory/global.c]
1414         GlobalReAlloc(): GMEM_MODIFY must not be ignored when size==0.
1415         
1416         * [misc/file.c]
1417         read() returns an error when length==0. This is not what Windows
1418         programs expect, so pay attention to this in _lread(). Changed this
1419         in _lwrite(), _hread(), _hwrite(), too.
1421         * [loader/resource.c]
1422         LoadIcon(): Ignore bih->biSizeImage, some icons have wrong values in
1423         there.
1424         
1425         * [if1632/shell.spec] [misc/shell.c]
1426         Wrong spec file entries caused havoc: HKEY has 32 bit, not 16.
1427         Accept some more combinations of parameters in the Reg..() functions.
1428         
1429         * [if1632/toolhelp.spec]
1430         Make InterruptRegister() and InterruptUnregister() return false.
1432         * [windows/hook.c]
1433         CallNextHookEx() used to crash when called with a null hhook. Fixed.
1435 Wed Jun 28 10:14:34 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
1437         * [include/neexe.h][loader/ne_image.c]
1438         NE_LoadSegment: Detect iterated segments
1440         * [misc/ole2nls.c]
1441         LOCALE_SLONGDATE: fixed typo
1443         * [miscemu/int5c.c]
1444         Reordered include files to avoid conflicts with Linux libc.5.1
1446         * [rc/winerc.c]
1447         Added -b option to process binary resource files into C arrays
1449         * [include/callback.h]
1450         CallWndProc: Added dummy ds parameter for libwine
1452         * [include/gdi.h][include/user.h]
1453         USER_HEAP_ALLOC, GDI_HEAP_ALLOC: dropped flags parameter
1455         * [include/ldt.h][include/stackframe.h]
1456         defined segment conversion macros for libwine
1458         * [misc/atom.c]
1459         Defined USER_HeapSel for libwine
1461         * [misc/main.c]
1462         Disable -dll option for libwine
1464         * [misc/user.c]
1465         removed GetFreeSystemResources, SystemHeapInfo from libwine for now
1467         * [toolkit/heap.c]
1468         fixed LocalLock prototype
1470         * [toolkit/sup.c]
1471         sync'ed load_mz_header, load_ne_header with structures
1473         * [toolkit/winmain.c]
1474         Disabled resource DLLs for libwine for now
1476 Mon Jun 26 19:30:24 1995  Hans de Graaff  (graaff@twi72.twi.tudelft.nl)
1478         * [misc/main.c]
1479         Fixed -enhanced option to report a 386 CPU instead of a 286.
1481 Fri Jun 23 23:18:25 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
1483         * [misc/dos_fs.c]
1484         Remove maximum open dosdirent limit (fixing the winfile.exe
1485         problem) by using telldir()/seekdir().
1486         
1487 Fri Jun 23 13:42:25 1995  Hans de Graaff  (graaff@twi72.twi.tudelft.nl)
1489         * [misc/profile.c]
1490         Fixed problem parsing empty lines within sections in .ini files.
1492 ----------------------------------------------------------------------
1493 Mon Jun 19 20:29:50 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
1495         * [debugger/*.c]
1496         Modified debugger to use segmented pointers everywhere.
1498         * [if1632/shell.spec] [if1632/sound.spec] [if1632/user.spec]
1499         Declared all functions that return only 16-bit as 'pascal16'.
1501         * [include/ldt.h] [memory/ldt.c]
1502         Export LDT_EntryToBytes (new) and LDT_BytesToEntry for DPMI.
1503         Maintain a copy of the selector flags, removing the need to make a
1504         system call to retrieve an LDT entry.
1506         * [loader/module.c]
1507         Fixed bug with module file handle cache.
1509         * [loader/ne_resource.c]
1510         Fixed file name bug in NE_AccessResource().
1512         * [loader/resource.c]
1513         Fixed bug in LoadIcon() that caused wrong colors to be used for
1514         the icon mask.
1516         * [loader/signal.c]
1517         Moved instruction emulation to miscemu/instr.c.
1519         * [misc/dos_fs.c] [miscemu/int21.c]
1520         Lots of small fixes, thanks to Morten Welinder.
1522         * [miscemu/dpmi.c]
1523         More complete DPMI emulation.
1525         * [miscemu/instr.c]
1526         Added support for prefixes in instructions to emulate.
1528         * [miscemu/int2f.c]
1529         Use register macros instead of destroying the high part of 32-bit
1530         registers.
1532         * [objects/dc.c]
1533         Fixed bug in GetDCState() that failed to clear the new DC.
1535         * [rc/sysres.rc]
1536         Removed dialogs 11 and 12 that were never used.
1538         * [tools/build.c]
1539         'pascal16' generated functions did not save %dx.
1540         Removed use of %fs to access the stack.
1541         %ds is no longer initialized before calling a 16-bit routine.
1543         * [windows/defwnd.c]
1544         Accept a NULL pointer as window title.
1546         * [windows/mdi.c]
1547         MDICascade: skip iconic windows.
1548         Implemented CalcChildScroll().
1549         
1550         * [windows/utility.c]
1551         Fixed MulDiv() for illegal values.
1553         * [windows/win.c]
1554         Fixed X error in CreateWindowEx() when WM_NCCALCSIZE returned
1555         a zero width or height.
1557 Sun Jun 18 22:22:30 MET DST 1995  Fons Botman  (botman@inter.nl.net)
1559         * [controls/edit.c]
1560         Fixed "uninitalized" message which -Wall couldnt see to be ok
1561         in EDIT_WriteText.
1563         * [include/debug.h]
1564         Added define for extra checks in API definitions during debugging.
1566         * [loader/ne_image.c]
1567         Added newline in NE_FixupPrologs to avoid long lines.
1569         * [misc/dos_fs.c]
1570         Added extra safety check in DOS_ValidDrive.
1572         * [misc/exec.c]
1573         Fixed definition of ExitWindows.
1574         
1575 Sun Jun 18 21:16:08 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1577         * [controls/edit.c]
1578         Some fixes, mostly for memory management, but also for text selection
1579         and tab postitions. General cleanup. Notepad.exe now works.
1581         * [controls/combo.c]
1582         Fix: the hwnd field of the DRAWITEMSTRUCT should always be that of
1583         the combo box, not the ComboLBox that belongs to it.
1585         * [controls/listbox.c]
1586         Handle itemID field correctly throughout.
1588         * [memory/local.c]
1589         Implemented flag LMEM_ZEROINIT.
1590         LocalReAlloc() could trash the heap. Fixed.
1592         * [objects/font.c]
1593         FONT_MatchFont(): don't get confused by negative widths.
1594         Fixed a segfault in EnumFonts().
1596         * [objects/text.c]
1597         DrawText(): DT_CALCRECT implies DT_NOCLIP.
1599         * [objects/dcvalues.c]
1600         MAKELONG was used with bad parameters in DC_GET_X_Y.
1602         * [windows/dialog.c]
1603         Don't show the dialog if WS_VISIBLE isn't set in the template.
1605         * [windows/utility.c]
1606         UTILITY_convertArgs(): Never pass an expression containing ++ into a
1607         macro...
1609         * [windows/win.c]
1610         SetParent() should unlink the window before changing the parent.
1612         * [windows/message.c]
1613         Don't call timer functions via CallWindowProc(), since it checks
1614         whether hwnd==0 and does not call the function in that case.
1616         * [miscemu/instr.c]
1617         Ignore interrupt 0x3D, for VBRUN300.DLL.
1619         * [misc/commdlg.c]
1620         Don't rely on the itemData field of the DRAWITEMSTRUCT to contain a
1621         pointer to the item text.
1623         * [if1632/relay.c]
1624         Disable OLE and DDEML DLLs by default, since they contain nothing but
1625         stubs anyway. SHELL, COMMDLG and WIN87EM are left enabled, although
1626         some programs may work better without them.
1627         
1628         * [multimedia/*.c] [include/multimedia.h] [include/driver.h]
1629         Begun cleaning things up a little. Replaced printfs with dprintf_
1630         macros, made functions static where possible, and some other minor
1631         changes.
1633 Sun Jun 11 23:19:10 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
1635         * [debugger/dbg.y][debugger/dbg.l]
1636         Removed special handling for FILE_IDENTIFER, because it caused
1637         problems with x/<format> statements.
1639         * [debugger/info.c]
1640         Use SC_ESP instead of SC_EIP for stack dump.
1642         * [misc/compobj.c][if1632/compobj.spec]
1643         CoBuildVersion, CoInitialize, CoUninitialize: new functions
1645         * [misc/ole2.c][if1632/ole2.spec][misc/Imakefile][include/ole2.h]
1646         New files ole2.c, ole2.h
1647         OleBuildVersion, OleInitialize, OleUninitialize: new functions
1649         * [if1632/ole2disp.spec]
1650         Added missing ordinals above 109
1652         * [misc/ole2nls.c][if1632/ole2nls.spec][include/winnls.h]
1653         New file winnls.h
1654         GetLocaleInfoA: new function
1656         * [if1632/shell.spec]
1657         Added FindEnvironmentString as stub
1659         * [misc/olecli.c][if1632/olecli.spec]
1660         OleIsDcMeta: New function
1662         * [objects/font][misc/gdi.spec]
1663         GetKerningPairs: new function
1665         * [misc/shell.c]
1666         ShellExecute: Implemented support for starting programs
1668         * [if1632/user.spec]
1669         Inserted missing relay to GetClipCursor
1671 Sun Jun 11 20:34:47 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1672         
1673         * [controls/edit.c]
1674         Fix a problem with the local heap.
1676         * [include/wintypes.h]
1677         Fixed wrong declarations of CATCHBUF and LPCATCHBUF.
1678         
1679         * [include/mdi.h] [windows/mdi.c]
1680         This code still assumed segmented address==linear address. Fixed.
1682         * [include/msdos.h] [misc/dos_fs.c]
1683         The filemask field of the dosdirent structure could be overrun. Fixed.
1684         If you had a file called foobar and a file called foo, trying to 
1685         FindFile(foo) could accidentally find file foobar instead. Fixed.
1686         
1687         * [misc/file.c]
1688         OpenFile(): Always return the full pathname in ofs->szPathName. This 
1689         also fixes GetModuleFilename().
1690         Prevent _lclose() from closing stderr or stdout.
1692         * [misc/profile.c]
1693         Search for .ini files in the path of the current module as well.
1694         (Needed by Lotus Organizer.)
1696         * [loader/task.c] [loader/ne_image.c] [loader/module.c]
1697         [memory/local.c]
1698         Local heaps are now initialized by InitTask() for executables. DLLs
1699         have to call LocalInit() themselves, LocalInit() has to put the
1700         heap at the end of the segment when called with start==0. We no longer
1701         allocate the DGROUP with 64k on startup, but grow the local heap
1702         in LOCAL_GetBlock() when necessary.
1704         * [loader/module.c]
1705         LoadLibrary() should call LoadModule() in all cases, even if the
1706         DLL is already loaded, to ensure that the reference count is correct.
1708         * [loader/ne_image.c]
1709         Some changes to function prolog fixup. Does anyone know exactly how
1710         this is supposed to work? I am only guessing here.
1711         In NE_InitializeDLLs(), initialize the DLLs a module refers to before
1712         the module itself.
1713         
1714         * [loader/task.c]
1715         Initialize instance data at the beginning of the DGROUP in InitTask().
1717         * [memory/local.c]
1718         Some fixes for moveable blocks.
1720         * [memory/selector.c]
1721         All the IsBad*Pointer() functions returned exactly the wrong boolean
1722         value in all cases!
1723         
1724         * [objects/bitblt.c]
1725         Fixed another null pointer dereference in debugging output.
1726         
1727         * [objects/font.c]
1728         Some more recovery possibilities for FONT_MatchFont() if a specified
1729         font does not exist.
1730         
1731         * [windows/win.c]
1732         The dialog code may call CreateWindowEx with an integer in windowName.
1733         This happens for static icon controls that expect a resource ID as
1734         the window name. CreateWindowEx() used to crash. Fixed.
1735         
1736         * [windows/class.c] [windows/win.c]
1737         Window classes are owned by modules, not instances. Changed
1738         RegisterClass(), UnregisterClass(), GetClassInfo() and CreateWindowEx()
1739         accordingly.
1741 Sat Jun 10 16:10:53 1995  Olaf Flebbe <o.flebbe@science-computing.uni-tuebingen.de>
1743         * [miscemu/int21.c]
1744           clock.exe was displaying incorrect year.
1746 Fri Jun 9 20:36:56 1995  Victor Schneider <tailor@crl.com>
1748         * [include/cursor.h] [windows/cursor.c]
1749         Implemented CreateCursorIconIndirect().
1751 ----------------------------------------------------------------------
1752 Tue Jun  6 12:11:41 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
1754         * [controls/menu.c]
1755         Fixed bug with drawing multi-column menus with vertical separator.
1757         * [debugger/debug.l]
1758         Fixed NULL-pointer reference after readline().
1760         * [if1632/winprocs.spec] [miscemu/int21.c] [miscemu/interrupts.c]
1761         Added interrupt vector emulation. Allows to retrieve an interrupt
1762         vector and jump to it without crashing.
1764         * [loader/ldt.c]
1765         Moved ldt.c to memory directory.
1767         * [loader/task.c]
1768         Implemented LockCurrentTask() and GetInstanceData().
1770         * [objects/bitblt.c]
1771         Fixed a bug that caused StretchBlt() to use wrong colors when
1772         stretching a monochrome bitmap to a color display.
1774         * [objects/bitmap.c]
1775         Fixed a segmented pointer bug in CreateBitmapIndirect().
1777         * [tools/build.c]
1778         Added possibility to have arguments for register functions; used
1779         by interrupt vectors to remove the flags from the stack.
1780         Generate a new function CallTo32_LargeStack(), that allows calling
1781         a 32-bit function using the original 32-bit stack, for functions
1782         that need more that 64k of stack.
1784 Tue May 30 10:29:56 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
1786         * [if1632/shell.spec] [misc/shell.c]
1787         DoEnvironmentSubst: fixed prototype
1789         * [if1632/gdi.spec] [objects/palette.c]
1790         SetSystemPaletteUse: new function
1792         * [if1632/kernel.spec] [loader/resource.c]
1793         DirectResAlloc: new function
1795         * [if1632/user.spec] [windows/keyboard.c]
1796         SetKeyboardState: new function
1798 Mon May 29 12:58:28 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1799         
1800         * [tools/build.c]
1801         Prevent interrupts from destroying the args for a 32 bit function
1802         by loading the correct value into %esp directly after %ss.
1804         * [loader/ne_image.c] [loader/module.c]
1805         The new instance must be created earlier in LoadModule(), so that
1806         fixups referencing it will be handled correctly.
1807         Initialize the local heap for a DGROUP in NE_LoadSegment().
1808         
1809         * [objects/dib.c]
1810         Like RLE8 bitmaps, RLE4 bitmaps don't always end with a proper code.
1811         This used to crash Wine. Fixed.
1813         * [objects/text.c]
1814         Fix possible null pointer dereference in debugging output.
1815         
1816         * [misc/commdlg.c]
1817         Handle user input in the edit control better. Some bugs fixed.
1818         
1819         * [memory/local.c]
1820         Started implementing moveable blocks. This is unfinished (!), but
1821         at least it does not seem to break things.
1823 Wed May 24 13:26:36 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1824         
1825         * [loader/module.c]
1826         LoadModule(): DLLs occasionally have a data segment, and they work
1827         much better if it is loaded :-)
1828         LoadLibrary(): pass HMODULE instead of HINSTANCE to NE_InitializeDLLs.
1829         FindModule(): also strip off the last backslash of the pathnames
1830         (Winhelp tried to load C:\WINDOWS\SYSTEM\COMMDLG.DLL).
1831         GetModuleHandle(): just call MODULE_FindModule, it does the same job,
1832         only better.
1833         
1834         * [loader/ne_image.c]
1835         LocalInit() the heap of a DLL in NE_InitDLL. (This is probably
1836         not really correct, it seems that all programs and DLLs try to do
1837         this themselves. But they pass weird parameters.)
1838         NE_InitializeDLLs should also call NE_InitDLL for the passed hModule.
1839         
1840         * [loader/task.c] [misc/user.c]
1841         Finish global initializations in InitTask instead of InitApp, or
1842         all the DLLs will be initialized in InitTask without any available
1843         window classes!
1845 ----------------------------------------------------------------------
1846 Sun May 21 12:30:30 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
1848         * [debugger/hash.c] [debugger/info.c]
1849         Added support for symbolic segmented addresses. Add symbols for all
1850         built-in API entry points.
1852         * [if1632/relay.c] [include/dlls.h]
1853         Removed dll_table structure, as we now use the built-in module
1854         structures.
1856         * [if1632/relay.c] [loader/main.c]
1857         Removed winestat option, as it was no longer very meaningful.
1859         * [include/stackframe.h]
1860         New macro MAKE_SEGPTR that creates a segmented pointer to a local
1861         variable on the 32-bit stack.
1863         * [loader/module.c]
1864         Added support for multiple instances of an application.
1865         Implemented LoadModule() and FreeModule().
1867         * [loader/ne_image.c] [loader/task.c]
1868         Moved initialisation of built-in DLLs to InitTask().
1870         * [memory/global.c]
1871         Implemented discardable blocks.
1873         * [misc/file.c]
1874         Search path of current executable in OpenFile().
1875         Fixed bug with searching in Windows path.
1877         * [misc/lstr.c]
1878         Hard-coded translation tables for Ansi<->Oem.
1880         * [misc/user.c]
1881         Moved some global initializations to InitApp(), because they need
1882         a task context to be performed.
1884         * [objects/dc.c]
1885         Handle R2_BLACK and R2_WHITE specially so that they work correctly
1886         with palette displays.
1888         * [tools/build.c]
1889         Suppressed generation of the C file for DLL specs, because it's no
1890         longer needed. Output all the assembly code directly to stdout.
1891         Some changes to integrate Win32 support from Martin von Loewis. 
1893         * [windows/msgbox.c]
1894         Moved message box code from misc/ to windows/.
1896 Mon May 15 23:40:04 1995  Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
1898         * [misc/audio.c] [misc/mcicda.c] [misc/mcianim.c] [misc/midi.c]
1899           [misc/mmaux.c] [misc/mmsystem.c]
1900         Modify code & use pointers conversion macros.
1901         Make cdaudio & wave devices work again (only using some applets).
1903         * [misc/profile.c]
1904         Change getc() to fgetc() where needed.
1906 Mon May 15 22:10:56 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
1908         * [if1632/Imakefile]
1909         added entries for the new files gdi32.spec, kernel32.spec,
1910         user32.spec, shell32.spec and winprocs32.spec.
1912         * [if1632/commdlg.spec][if1632/kernel.spec][if1632/shell.spec]
1913           [if1632/storage.spec][if1632/system.spec][if1632/user.spec]
1914         ChooseFont, RESERVED5, InternalExtractIcon: Marked as stubs
1915         ExtractAssociatedIcon, DoEnvironmentSubst, DumpIcon:
1916                 stub implementations provided 
1917         marked storage.dll,storege.sys functions as stubs
1919         * [include/pe_image.h]
1920         Added structures WIN32_builtin and  WIN32_function
1922         * [include/peexe.h]
1923         PE_Import_Directory: renamed reserved fields to 
1924                 TimeDate, Forwarder, Thunk_List
1926         * [include/winerror.h]
1927         New file.
1929         * [loader/main.c]
1930         called RELAY32_Init
1932         * [loader/pe_image.c]
1933         xmmap: map BSS anonymous
1934         dump_imports: renamed to fixup_imports, do the fixup of imported
1935                       symbols
1936         PE_LoadImage: pass raw data size to xmmap
1938         * [loader/resource.c]
1939         DumpIcon: new function
1941         * [misc/kernel32.c]
1942         New file.
1944         * [misc/main.c]
1945         make stdout and stderr unbuffered
1947         * [misc/shell.c]
1948         DoEnvironmentSubst: new function
1950         * [objects/font.c]
1951         FONT_MatchFont: try oblique if there is no italic
1953         * [rc/Imakefile][rc/parser.l]
1954         yywrap: new function
1955         Don't link with libfl.a on Linux
1957         * [tools/build.c]
1958         Added keywords stdcall, subsystem, base
1959         GenerateForWin32: new function
1960         BuildSpecFiles: call GenerateForWin32 if subsystem is win32
1962 Mon May 15 10:38:14 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1963         
1964         * [controls/listbox.c] [controls/combo.c] [windows/defwnd.c]
1965         Minor fixes.
1966         
1967         * [misc/message.c] [misc/main.c] [rc/sysres*.rc] [include/texts.h]
1968         Rewrote message box handling.
1969         
1970         * [windows/dialog.c]
1971         Dialogs should be invisible until after WM_INITDIALOG is seent.
1972         Don't switch to invisible dialog items on a TAB keypress.
1973         
1974         * [windows/mdi.c]
1975         Send WM_NCPAINT message in MDIRestoreChild().
1976         
1977         * [windows/painting.c]
1978         Fixed typo (&& -> &).
1979         
1980         * [windows/message.c] [if1632/user.spec]
1981         Implemented PostAppMessage().
1982         
1983         * [windows/event.c]
1984         SetCapture(0) should act like ReleaseCapture().
1986 Tue May  9 11:55:52 1995     Eddie C. Dost             (ecd@dressler.de)
1988         * [Imakefile]
1989         Changed CDEBUGFLAGS for systems running __ELF__ (temporarily)
1990         Added ASFLAGS to exported variables.
1992         * [debugger/readline/Imakefile]
1993         Moved defines for libreadline from DEFINES to EXTRA_DEFINES
1995         * [memory/local.c] [miscemu/int21.c]
1996         Added some more debugging outputs.
1998 Mon May  8 00:55:27 MET DST 1995          Dag Asheim (dash@ifi.uio.no)
2000         * [misc/message.c]
2001         Fixed a "FIXME" concerning norwegian translation.
2003 Sun May  7 23:25:23 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2004         
2005         * [*/*]
2006         Removed warnings in a couple of files and deleted some obsolete code.
2008         * [controls/listbox.c]
2009         Cleanup, speed improvements & lots of bug fixes.
2011         * [controls/combo.c]
2012         Mostly rewritten. This is still very buggy, but not quite as bad as 
2013         before.
2015         * [include/commdlg.h] [misc/commdlg.c]
2016         Removed the need for sysres.dll. Small bug fixes.
2017         
2018         * [objects/oembitmap.c] [include/bitmaps/<many>] [include/windows.h]
2019           [loader/library.c] [loader/main.c] [rc/sysres*.rc]
2020         Removed sysres.dll and replaced the remaining bitmaps/icons with
2021         XPM equivalents.
2023         * [misc/message.c] [windows/nonclient.c] [misc/main.c]
2024           [if1632/winprocs.spec]
2025         "About Wine..." now brings up a standard ShellAbout() window with
2026         the Wine icon and the list of contributors.
2027         
2028         * [misc/shell.c]
2029         Fixed ShellAbout()/AboutDialogProc() to show the right icon.
2031         * [windows/event.c]
2032         Small hack for non-alphanumeric keys: Dont't send the ascii value in
2033         the WM_KEYDOWN message, but some unused code instead. Should be done
2034         properly by sending different codes for each key. The edit control
2035         used to get a VK_DELETE message each time the user typed '.'.
2037         * [windows/class.c]
2038         Removed a check for CS_GLOBALCLASS in CLASS_FindClassByName().
2039         This used to be no problem, but breaks Resource Workshop in 950403.
2040         
2041         * [objects/dib.c]
2042         New diagnostic for a bug I've been encountering. If it shows up,
2043         please report it.
2045 Sun May  7 23:11:18 EDT 1995  William Magro (wmagro@tc.cornell.edu)
2047         * [objects/color.c]
2048         Handle situation when 'dc' exists, but palette mapping
2049         does not.  (Fixes kidpix2 demo.)
2051 Sun May  7 03:32:00 1995  Charles M. Hannum  (mycroft@mit.edu)
2053         * [loader/ldt.c]
2054         LDT_Print: Only show the number of entries that the kernel
2055         returned. Make this work for NetBSD.
2057 Fri May  5 02:53:26 1995  Charles M. Hannum  (mycroft@mit.edu)
2059         * [debugger/dbg.y] [include/wine.h] [loader/signal.c]
2060         Modify cs and ds selector values for NetBSD-current.
2062         * [debugger/debug.l]
2063         $sp, $esp: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
2065         * [debugger/regpos.h]
2066         Modify sigcontext format for NetBSD-current.
2067         SC_ESP: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
2069         * [include/ldt.h]
2070         SELECTOR_TO_ENTRY: Explicitly clear the top half of the selector
2071         value, since only 16 bits of it may have been saved.
2073         * [misc/winsocket.c]
2074         Set structure packing with `#pragma pack' to accomodate
2075         other/older compilers.
2077 Tue May  2 18:15:01 1995 Paal Beyer (beyer@idt.unit.no)
2078         
2079         * [misc/commdlg.c]
2080         Fixed path-names so when changing directory the listboxes
2081         changes too.
2082         
2083         * [debugger/dbg.y debugger/debug.l wine.ini]
2084         Added SymbolTableFile to wine.ini so symbols can be read
2085         without standing in the directory containing wine.sym.
2086         Added the possibility to specify full name of wine.sym from
2087         the debugger prompt.
2089 ----------------------------------------------------------------------
2090 Sat Apr 29 20:42:01 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
2092         * [controls/static.c]
2093         Fixed painting of SS_*FRAME controls.
2095         * [if1632/callback.c]
2096         Pass the window instance as DS to the 16-bit window procedure.
2097         Rewrote Catch() and Throw() to make them work with multiple tasks.
2099         * [loader/main.c]
2100         New function MAIN_Init() to perform initializations before the
2101         first task is started instead of doing them in InitApp().
2102         Temporary hack to command-line parsing to load one program per
2103         command-line argument, to make testing task-switching easier.
2105         * [loader/*.c]
2106         Reimplemented modules to use a Windows-compatible layout and to
2107         allow multiple tasks and multiple module instances. Not really
2108         finished yet.
2110         * [loader/task.c] [misc/exec.c]
2111         Reimplemented tasks to use a common address space, and implemented
2112         preliminary task-switching capabilities.
2114         * [memory/global.c]
2115         Fixed bug in GlobalNext().
2117         * [misc/main.c]
2118         Updated the list of contributors. Let me know if I forgot someone.
2120         * [miscemu/int21.c]
2121         Use one DTA per task instead of a global one.
2123         * [objects/bitblt.c]
2124         Fixed bug in BitBlt() that could cause BadMatch errors.
2126         * [tools/build.c]
2127         Added new function type 'stub', that makes possible to export an
2128         unimplemented function by name as well as by ordinal. This will
2129         avoid loading errors for unimplemented functions.
2130         Generate an in-memory module layout for built-in DLLs so that the
2131         same code can be used for built-in and loaded modules.
2132         Changed relay code to make it unnecessary to save the value of the
2133         BP register.
2135         * [windows/message.c]
2136         Implemented multiple message queues and preliminary task-switching
2137         capabilities. Inter-task SendMessage() calls are not implemented
2138         yet and will probably cause crashes if used.
2140         * [windows/property.c]
2141         Reimplemented properties and allocate them on the USER heap.
2143         * [windows/win.c]
2144         Fixed bug in SetWindowWord().
2145         Reimplemented EnumWindows() and EnumTaskWindows().
2147 Tue Apr 18 09:48:38 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2148         
2149         * [misc/main.c]
2150         GetSystemParametersInfo(): Additional action SPI_GETICONTITLEFONT.
2151         
2152         * [loader/resource.c]
2153         Removed the check for NE_SEGFLAGS_EXECUTEONLY, since it broke
2154         control.exe.
2155         Fixed icon loading.
2156         
2157         * [objects/font.c] [include/windows.h]
2158         Fixed a bug in InitFontsList() and worked on the EnumFonts()
2159         functions to make them comprehensible.
2161         * [controls/button.c]
2162         Fixed my previous patch to handle LBUTTONUP messages.
2164 Fri Apr 14 11:41:28 1995  Cameron Heide  (heide@ee.ualberta.ca)
2166         * [misc/network.c, misc/dos_fs.c]
2167         Implemented WNetGetConnection.  All that is currently
2168         supported are drives, for which the remote name is simply
2169         the redirected UNIX directory name.
2171         * [miscemu/int2?.c]
2172         More drive number validity checking.
2174 Wed Apr 12 11:28:37 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2175         
2176         * [controls/listbox.c]
2177         Oops, my previous change to ListBoxDirectory broke the Borland
2178         file open dialog. Fixed.
2180 Mon Apr 10 23:17:12 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
2182         * [if1632/ole2nls.spec] [misc/ole2nls.c] [misc/Imakefile]
2183         New file ole2nls.c. Added stubs for GetUserDefaultLCID, 
2184         GetSystemDefaultLCID, GetUserDefaultLangID, GetSystemDefaultLangID.
2186 Mon Apr 10 10:05:18 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2187         
2188         * [memory/global.c] [memory/local.c] [include/windows.h]
2189         GlobalReAlloc(): If GMEM_MODIFY is set, don't resize the block.
2190         LocalReAlloc(): Same for LMEM_MODIFY.
2191         
2192         * [controls/listbox.c]
2193         Fixed a bug in ListBoxDirectory that prevented commdlg from working.
2194         Check for errors in some more places.
2196         * [if1632/gdi.spec] [if1632/user.spec]
2197         16 bit callback functions should be passed as segptrs.
2198         
2199         * [include/dlls.h] [loader/ne_image.c] [loader/selector.c]
2200         [loader/library.c]
2201         Prevent a DLL from being initialized twice (Borlands Resource
2202         Workshop used to do this).
2203         Provide an additional flag for each w_file that indicates whether
2204         it's an EXE or a DLL, for combinations like pbrush.exe/.dll.
2205         
2206         * [controls/button.c]
2207         Handle LBUTTONUP messages even if the button no longer has the
2208         capture (for WinHelp).
2209         
2210         * [include/wintypes.h]
2211         FARPROC is now a segptr for the emulator and a function
2212         pointer for the library.
2213         
2214         * [misc/commdlg.c] [misc/commdlg.h]
2215         Cleaned the file dialogs up a little. They now work reasonably well,
2216         although there are still some problems (e.g. files are initially
2217         invisible).
2219         * [windows/class.c] [if1632/user.spec] [include/windows.h]
2220         GetClassInfo() must take a segptr, as it checks whether the
2221         highword is zero.
2222         GetClassName() called the wrong atom function. No surprise it didn't
2223         find anything.
2225         * [misc/lstr.c]
2226         AnsiToOem() and OemToAnsi() didn't terminate the strings. Fixed.
2227         Removed some warnings.
2229         * [if1632/relay.c] [if1632/ddeml.spec] [include/dlls.h]
2230         New spec file for the 3.1 DDEML DDL. 
2232         * [controls/menu.c]
2233         Small fix to ChangeMenu - mask out the obsolete flags
2234         (MF_APPEND == MF_OWNERDRAW, this led to problems). It also had
2235         problems with the MF_BYPOSITION flag.
2237         * [windows/message.c]
2238         SendMessage(): call the WH_CALLWNDPROC hook function. This is rather
2239         ugly, I'm afraid. Windows probably passes a pointer to the 16 bit
2240         stack for speed reasons.
2241         
2242         * [windows/hook.c] [include/windows.h]
2243         Set/HookWindowsHook() shouldn't just call their *Ex counterparts, as
2244         they have slightly different semantics.
2245         MS Hearts now works somewhat, if you disable the new builtin DDEML.
2246         The graphics are completely messed up, though.
2248 ----------------------------------------------------------------------
2249 Sun Apr  2 18:31:12 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
2251         * [Configure] [if1632/Imakefile]
2252         Removed new build and short names options.
2254         * [if1632/*.c] [tools/build.c]
2255         Implemented compiled call-back functions for better performance;
2256         all the relay code is now done in assembly code generated by the
2257         build program.
2258         Relay code is no longer dependent on being loaded below 64K.
2260         * [loader/resource.c]
2261         Fixed memory leak in LoadString(). A fix will also be needed for
2262         other resources.
2264         * [memory/global.c]
2265         Implemented global heap arenas, so we can store informations about
2266         global blocks, like lock counts or owner handle.
2267         Implemented FarGetOwner() and FarSetOwner().
2268         Implemented global heap TOOLHELP functions.
2270         * [memory/selector.c]
2271         Bug fix: it was not possible to re-use a free selector.
2273 Sun Apr 2 01:34:52 1995 Constantine Sapuntzakis  (csapuntz@mit.edu)
2275         *  [controls/listbox.c]
2276         Major work on listbox code
2277          - Many bugs fixed (still many bugs)
2278          - More messages supported
2279          - Code simplified
2281 Fri Mar 31 03:27:16 EST 1995 William Magro (wmagro@tc.cornell.edu)
2283         * [controls/edit.c]
2284         Lots of bug fixes related to diappearing text, lost carets,
2285         highlighting, segmentation faults, occurance of random
2286         characters, insertion of characters over selection, misplaced
2287         caret location, display corruption, end of line behavior, etc.
2289         * [controls/widgets.c]
2290         EDIT class doesn't want to use CS_PARENTDC flag.
2292 Thu Mar 30 20:58:25 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2293         
2294         * [loader/selector.c]
2295           FixupFunctionPrologs() should also handle multiple data modules.
2296           (this bug only became visible because MakeProcInstance() was fixed
2297           in 950319)
2298         
2299         * [misc/dosfs.c]
2300           Simplified DOS_SimplifyPath.
2301           Small fix to DOS_opendir to reuse an entry if an open directory
2302           is opened again, to prevent "too many open directories" messages.
2304 Thu Mar 30 12:05:05 1995 Martin von Loewis  <loewis@informatik.hu-berlin.de>
2306         * [if1632/compobj.spec][include/compobj.h][misc/compobj.c]
2307         CoDisconnectObject: new stub function
2309         * [include/msdos.h]
2310         fix DOSVERSION
2312         * [loader/ne_image.c]
2313         NE_FixupSegment: Be more generous on additive fixups
2315         * [if1632/user.spec][misc/network.c]
2316         Add more WNet* stubs
2318 Wed Mar 29 11:47:22 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2320         * [controls/listbox.c]
2321           DlgDirList(): send segptr instead of linear pointer 
2322           in message to static control
2323         * [controls/menu.c]
2324           Tried to implement ownerdrawn menuitems. Doesn't work.
2325         * [if1632/gdi.spec] [include/windows.h] [objects/font.c]
2326           Provide a stub for GetRasterizerCaps()
2327         * [loader/selector.c]
2328           Pass end address instead of length to LocalInit() in 
2329           CreateSelectors()
2330         * [memory/local.c]
2331           LocalInit(): If there's already a local heap in the segment, do
2332           nothing and return TRUE
2333         * [objects/linedda.c]
2334           Replaced buggy LineDDA() with a Bresenham algorithm. Should work
2335           now.
2336         * [windows/cursor.c]
2337           LoadCursor()/CreateCursor(): Cleaned up the mess. Needs some
2338           more work still.
2340 Tue Mar 21 17:54:43 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2342         * [if1632/relay.c] [if1632/callback.c] [include/dlls.h]
2343           [if1632/winprocs.spec] [if1632/winprocs.c] [include/winprocs.h]
2344           [controls/widgets.c] [misc/shell.c] [misc/commdlg.c]
2345           [windows/nonclient.c] [misc/message.c]
2346           Added a new builtin DLL that provides 16 bit entry points for all
2347           the Def*Procs (DefDlgProc, ButtonProc etc.). OWL programs work
2348           again.
2349         * [misc/shell.c]
2350           RegOpenKey()/RegCreateKey() bugs fixed.
2351         * [loader/ne_image.c]
2352           Skipping the initialization of a DLL when CS == 0 was broken.
2354 ----------------------------------------------------------------------
2355 Sun Mar 19 16:30:20 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
2357         * [*/*]
2358         Implemented a new memory mapping scheme. There's no longer a
2359         one-to-one mapping between 16-bit and 32-bit pointers. Please see
2360         file DEVELOPERS-HINTS for technical details.
2362         * [controls/scroll.c]
2363         Fixed bug when dragging mouse in horizontal scrollbars.
2365         * [tools/build.c] [if1632/*.spec]
2366         Removed support for C callback functions and for re-ordering
2367         of the 32-bit arguments, as these were never used. This should
2368         allow a more efficient callback scheme to be implemented.
2370         * [if1632/olecli.spec]
2371         Reduced the number of entries to make the 16-bit code fit in 64k.
2372         This limitation will soon be removed.
2374         * [loader/ldt.c]
2375         Rewrote LDT manipulation functions and implemented LDT_GetEntry().
2377         * [memory/global.c]
2378         Rewrote Global*() routines to use the new selector allocation
2379         mechanism.
2381         * [memory/local.c]
2382         Rewrote local heap handling to use a Windows-compatible layout
2383         (not really finished yet).
2384         Implemented TOOLHELP heap-walking routines.
2386         * [memory/selector.c]
2387         Implemented LDT manipulation API functions.
2389 Tue Mar 14 19:50:28 EST 1995 William Magro (wmagro@tc.cornell.edu)
2391         * [windows/defdlg.c]
2392         Fixed problem where dialogs closed using the System menu 
2393         ('Close' item or double click on close box) would
2394         hang Wine.
2396 Sun Mar 12 14:28:13 1995  Michael Patra <micky@marie.physik.TU-Berlin.DE>
2398         * [controls/listbox.c]
2399         Removed most of the statements for sending a notification message
2400         ListBoxDirectory(), DlgDirSelect(), DlgDirList(): Improved the
2401         code; Borland's standard file open dialog will work now.
2402         
2403         * [misc/main.c], [misc/file.c], [miscemu/int21.c]
2404         Added support for new command line option "-allowreadonly". If set
2405         an attempt to open a read only file in write mode will be converted 
2406         to opening it read only (many programs try to open all files in 
2407         read/write mode even if they only intend to read it - this might 
2408         cause a few under problems under an unix-like environment where most 
2409         files are read only for a "normal" user)
2411         * [loader/selector.c]
2412         GetMemoryReference(): Added support for __AHIncr and __AHShift
2414         * [misc/dos_fs.c]
2415         DOS_SimplifyPath(): This routine simplifies path names ( e.g., it
2416         will change "/usr///local/bin/../lib//a" to "/usr/local/lib/a" )
2417         match(): rewritten
2418         
2419         * [objects/text.c]
2420         TEXT_NextLine(): Removed a bug in the handling of LF's
2422         * [miscemu/int21.c]
2423         GetFileDateTime(): Fixed. SetFileDateTime() is still broken.
2425 Sat Mar 11 19:46:19 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
2427         * [controls/menu.c]
2428         ChangeMenu: defaults to MF_INSERT
2429         InsertMenu: allow insertion even if position is one after last item
2431         * [if1632/Imakefile] [if1632/compobj.spec] [if1632/relay.c]
2432           [if1632/storage.spec] [include/dlls.h]
2433         Added stubs for STORAGE.DLL and COMPOBJ.DLL
2435         * [if1632/user.spec] [windows/message.c]
2436         InSendMessage: new function
2438         * [include/neexe.h][include/ne_image.c]
2439         NE_FixupSegment: fixed handling of additive records
2441         * [loader/selector.c]
2442         GetEntryDLLName: return NULL instead of pointer to DLL.0 if not found
2444         * [loader/signal.c]
2445         win_fault: Enter debugger on SIGFPE, too
2447 Wed Mar  1 21:47:42 1995  Cameron Heide  (heide@ee.ualberta.ca)
2449         * [miscemu/int*.c]
2450         Various minor modifications to the clock tick counter,
2451         FindFirst/FindNext funcs, and DPB handling.
2453 ----------------------------------------------------------------------
2454 Thu Mar  2 17:44:32 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
2456         * [loader/resource.c] [objects/oembitmap.c]
2457         Removed sysres bitmap code; you need libXpm to compile now.
2458         Implemented LoadIcon() for OEM icons.
2460         * [include/bitmaps/oic_*]
2461         Added OEM icons in XPM format.
2463         * [objects/dib.c]
2464         Bug fix in DrawIcon().
2466         * [rc/sysresbm.rc]
2467         Removed; all bitmaps are stored in XPM format now.
2469 Tue Feb 28 18:54:28 1995  Tomi Leppikangas  (tomilepp@paju.oulu.fi)
2471         * [controls/edit.c]
2472         Small patch to fix edit-control when it's created with text.
2474 Sun Feb 26 20:22:15 1995  Michael Veksler  (e1678223@tochnapc2.technion.ac.il)
2476         * [tools/make_debug]
2477         The created macros won't have side effects anymore when used in
2478         an "if-else" structure. No more warnings from the compiler when
2479         compiled without defining DEBUG_RUNTIME.
2481 Sun Feb 26 20:20:49 1995  Michael Patra <micky@marie.physik.TU-Berlin.DE>
2483         * [controls/listbox.c]
2484         ListBoxDeleteString(): Fixed
2486         * [loader/selector.c]
2487         GetMemoryReference(): When special segments are referenced by
2488         pseudo-functions like __0040H, a reference to a "normal" segment
2489         will be returned preventing the program from crashing as soon
2490         as the referenced segment is actually accessed.
2492 Sun Feb 26 15:55:14 MET 1995  Martin von Loewis (loewis@informatik.hu-berlin.de)
2494         * [Configure]
2495         Ask for OLE stubs and malloc debugging
2497         * [Imakefile]
2498         link with libmcheck.a if necessary
2500         * [if1632/relay.c][include/dll.h][if1632/Imakefile]
2501         Add OLE stubs, increase number of builtins
2502         dll_name_table_entry_s: new field dll_is_used
2504         * [loader/library.c]
2505         GetModuleHandle,ModuleNext: Check dll_is_used
2507         * [loader/ne_image.c]
2508         Bark on unsupported NE_RADDR_LOWBYTE flag (what is it supposed
2509         to mean, anyway?)
2511         * [misc/olecli.c][misc/olesvr.c]
2512         New files. Add to misc/Imakefile
2514         * [misc/dos_fs.c]
2515         DOS_GetUnixFileName: make a copy of the input parameter to 
2516         prevent overwriting
2518         * [misc/main.c]
2519         MAIN_ParseDLLOptions: new function
2520         MAIN_ParseOptions: treat -dll command line flag
2521         main: add support for malloc debugging
2523 Fri Feb 24 12:43:27 1995  Erik Svendsen  <z3esv@kmd-ac.dk>
2525         * [loader/signal.c]
2526         Small patch for people using FreeBSD-2.1.0.
2528 Fri Feb 17 22:49:18 1995  Miguel de Icaza (miguel@roxanne.nuclecu.unam.mx)
2530         * [toolkit/sup.c]
2531         Added return values to the Call* routines
2533         * [toolkit/winmain.c]
2534         Load the resource file properly for WineLib applications.
2536 ----------------------------------------------------------------------
2537 Thu Feb 16 18:57:31 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
2539         * [if1632/call.S]
2540         Only save the lower 16-bits of SP and BP.
2542         * [if1632/callback.c]
2543         When calling to 16-bit code, restore DS from its previous value on
2544         entry to the 32-bit code, instead of from the code segment owner.
2546         * [if1632/relay.c] [include/stackframe.h]
2547         Use a structure to represent the 16-bit stack frame layout
2548         instead of hard-coded offsets.
2549         
2550         * [rc/Imakefile]
2551         Use y.tab.c for bison output file for compatibility with yacc.
2553         * [tools/build.c]
2554         Small optimization for calls to 32-bit code.
2556 Sun Feb 12 03:19:47 1995  Michael Veksler (s1678223@t2.technion.ac.il)
2558         * [tools/build.c]
2559         Fixed bug (inflicted by previous change) - SEGV on ZMAGIC file format.
2561 Sun Feb 11 20:00:00 1995  Göran Thyni  (goran@norrsken.bildbasen.se)
2563         * [debugger/dbg.y]
2564         Remove unnecessary sym-table loading when stopped in 16-bit mode.
2566         * [include/segmem.h] [loader/selector.c]
2567         Added dynamic alloction of selectors.
2568         Fixed some problems with large programs SIGSEGV-ing while
2569         running out of selectors.
2571         * [include/segmem.h] [loader/selector.c] [if1632/callback.c] 
2572           [memory/global.c] [memory/heap.c] [memory/linear.c]
2573         Use __AHSHIFT and __AHINCR instead of 3 and 8.
2575 Mon Feb  6 18:07:38 1995  Cameron Heide  (heide@ee.ualberta.ca)
2577         * [misc/dos_fs.c]
2578         Better relative path handling when converting filenames between
2579         dos and unix, allowing '.' to be used in the Windows path.
2580         Startup working dir is now based on current working dir.
2582 Sat Feb  4 21:21:13 1995  Michael Veksler (s1678223@t2.technion.ac.il)
2584         * [if1632/relay.c] [include/dlls.h] [tools/build.c]
2585         Squeezed data structure that references internal dll's (mostly
2586         "struct dll_table_entry_s"). Caused 20% reduction in executable
2587         code size.
2589 Fri Feb  3 18:53:15 1995  Martin v. Loewis  (loewis@marie)
2591         * [Imakefile]
2592         make wine.sym only when making emulator
2594         * [misc/file.c]
2595         OpenFile(): report as not implemented for WINELIB
2597         * [misc/winsock.c]
2598         Fix CONVERT_HOSTENT and friends for use with WINELIB
2600         * [rc/Imakefile][rc/rc.y][rc/parser.c]
2601         Rename rc.y to parser.y
2602         Use flex and bison on Sun
2604         * [toolkit/sup.c]
2605         CallWindowProc: fix parameter type
2607         * [windows/event.c]
2608         Commented #ifdef sparc
2610 ----------------------------------------------------------------------
2611 Wed Feb  1 19:27:55 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
2613         * [windows/nonclient.c] [windows/winpos.c]
2614         Implemented maximized windows.
2615         Implemented icon positioning and ArrangeIconicWindows().
2616         Bug fixes in SetWindowPos().
2618         * [windows/painting.c]
2619         Implemented GetControlBrush().
2620         Window frame is no longer contained in the update region.
2622         * [windows/win.c]
2623         Destroy owned windows upon DestroyWindow().
2625 Sun Jan 29 16:17:22 1995  David Metcalfe <david@prism.demon.co.uk>
2627         * [controls/edit.c]
2628         Changed line terminator to \r\n to be compatible with
2629         Windows.  Fixed bug in text selection.
2631 Sun Jan 29 14:10:22 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2633        * [misc/shell.c]
2634        Rewrote RegCreateKey and RegOpenKey, since they were completely broken.
2635        Fixed a bug in RegQueryKeyValue. Implemented RegEnumKey
2636        These functions now work somewhat more the way Windows programs expect
2637        them to work.
2639 ----------------------------------------------------------------------
2640 Sun Jan 22 18:55:33 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
2642         * [loader/resource.c] [objects/dib.c]
2643         Fixed icon loading and drawing, now that BitBlt() works correctly.
2644         
2645         * [objects/clipping.c] [objects/region.c]
2646         Implemented elliptic regions with a set of rectangle. This greatly
2647         simplifies the region code and should boost clipping performance.
2649         * [objects/color.c]
2650         Fixed bug that caused seg-fault on 24bpp displays.
2652         * [objects/bitblt.c]
2653         Fixed bug when shrinking a bitmap to more than half its size.
2655         * [windows/graphics.c]
2656         Fixed bugs in PaintRgn() and Polyline().
2658         * [windows/nonclient.c] [windows/painting.c] [windows/winpos.c]
2659         Fixed some problems with window background painting.
2661 Thu Jan 12 12:20:25 PST 1995 Ross Biro (biro@yggdrasil.com)
2663        * [tools/build.c]
2664        * [tools/newbuild.c]
2665        * [Imakefile]
2666        * [include/wine.h]
2667        * [loader/call.S]
2668        * [loader/selector.c]
2669        * [include/segmem.h]
2670        * [misc/main.c]
2671        Changed selector code and 16/32 bit xfer code so that wine
2672        no longer has to be loaded low in memory.  Changed wine
2673        to work with ELF binary formats under Linux.
2674        
2675 Sat Sep 17 11:08:49 1994  Eric Youngdale  (eric@esp22)
2677         * [debugger/db_disasm.c]
2678         New instruction disassembler - borrowed from Mach kernel.  Has a
2679         BSD style of license as opposed to the gdb code we were previously
2680         using which was under the GPL.
2682 ----------------------------------------------------------------------
2683 Mon Jan  9 18:27:11 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
2685         * [Imakefile]
2686         Compiling with -Wall flag.
2688         * [*/*]
2689         Fixes to minimize the number of compilation warnings.
2691         * [objects/bitblt.c]
2692         Fixed BitBlt() and used the same code to rewrite PatBlt() and
2693         StretchBlt(). The three *Blt() functions should now be correct in
2694         every case (famous last words).
2696         * [objects/brush.c] [objects/dither.c]
2697         Merged the two files into brush.c
2699         * [objects/dc.c]
2700         Fixed bug when the Windows programs forget to re-select the
2701         original bitmap in a memory DC.
2703         * [objects/font.c]
2704         Tty to use 'fixed' font when the system font can't be found.
2706         * [windows/dialog.c]
2707         Tentative fix to make dialogs look better when using fixed-width
2708         fonts.
2710         * [windows/graphics.c]
2711         Partially implemented the PS_INSIDEFRAME pen style.
2713         * [windows/nonclient.c]
2714         Fix for windows that have the WS_EX_DLGMODALFRAME style bit
2715         without the WS_DLGFRAME style.
2717 Thu Jan  5 13:37:42 1995  Cameron Heide  (heide@ee.ualberta.ca)
2719         * [memory/global.c]
2720         GlobalCompact should now return the correct value when the
2721         largest run of free blocks includes the last block.
2723         * [windows/mdi.c]
2724         Tiling and cascading windows without any MDI children should
2725         no longer crash (assuming no-op is the correct thing to do).
2727 Sun Jan  1 23:30:25 1995  Fons Botman  <botman@rabo.nl>
2729         * [objects/font.c]
2730         GetTextExtentPoint: fixed debug output, str is counted string, not
2731         zero terminated.
2733         * [if1632/relay.c]
2734         DLLRelay: when debugging_stack got segv, added upper bound for
2735         stack dump.
2737 ----------------------------------------------------------------------
2738 Tue Dec 27 13:35:16 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
2740         * [*/Imakefile]
2741         All objects files are now kept in their respective directory.
2743         * [README]
2744         Rewrote most of it.
2746         * [objects/bitblt.c]
2747         Rewrote BitBlt() to look right in every case, while minimizing
2748         the impact on performance. Not really finished yet.
2750         * [objects/bitmap.c] [objects/dc.c]
2751         Fixed bug with pattern brushes.
2753         * [objects/clipping.c] [windows/painting.c]
2754         Fixes for logical coordinates.
2756         * [objects/color.c] [windows/graphics.c]
2757         Fixed GetPixel() to return the correct color, and made it faster.
2759         * [objects/region.c]
2760         Fixed bug in CombineRgn() when one of the region is empty.
2762 Fri Dec 22 01:42:57 MET 1994              Dag Asheim (dash@ifi.uio.no)
2764         * [Configure]
2765         Don't assume that expr handles '==', use '=' instead.
2766         Give a (hopefully informative) message if imake fails.
2768 ----------------------------------------------------------------------
2769 Wed Dec  7 14:52:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
2771         * [controls/listbox.c]
2772         Fixed problems due to new scroll-bar code.
2774         * [loader/signal.c] [miscemu/ioports.c]
2775         Handle I/O opcodes that use an absolute address.
2777         * [objects/text.c]
2778         Implemented TabbedTextOut().
2780 Sat Dec  3 18:53:08 1994  Kenneth MacDonald  <K.MacDonald@ed.ac.uk>
2782         * [objects/metafile.c]
2783         Implemented GetMetafile().
2784         Fixed bug in PlayMetaFile() when reading disc based metafile records.
2785         Added META_POLYPOLYGON, META_DELETEOBJECT and META_EOF to 
2786         PlayMetaFileRecord().
2787         
2788 Wed Nov 30 06:32:25 1994  Martin von Loewis  (martin@cs.csufresno.edu)
2790         * [Imakefile]
2791         wine.sym: Remove gcc2_compiled and friends
2793         * [controls/listbox.c][if1632/relay.c][if1632/relay.c]
2794           [loader/resource.c][memory/heap.c][objects/dib.c][windows/dialog.c]
2795         Replace #ifdef DEBUG_XXX with if(debugging_xxx){
2797         * [if1632/call.S]
2798         CallToLibMain: New function
2800         * [if1632/relay.c][include/options.h][misc/main.c]
2801           [miscemu/int1a.c][miscemu/int21.c][miscemu/kernel.c]
2802         removed Options.relay_debug
2804         * [include/heap.h]
2805         HEAP_OWNER: Use ds instead of cs:ip
2807         * [loader/ne_image.c]
2808         LoadNEImage: Remember current exe, handle nodata dlls
2809         InitNEDLL: handle nodata dlls, call CallToLibMain
2811         * [loader/selector.c]
2812         CreateSelectors: Initialize auto_data_sel with 0
2814         * [memory/heap.c]
2815         HEAP_CheckHeap: Check prev
2816         HEAP_CheckLocalHeaps: new function
2818         * [misc/profile]
2819         Remember and dump only changed profiles
2821         * [tools/makedebug]
2822         Introduce debugging_xxx flags
2824 Sun Nov 27 23:13:22 MET 1994    <erik@xs4all.nl>
2826         * [clipboard.h color.h dc.h dos_fs.h event.h font.h graphics.h
2827         if1632.h kernel.h library.h miscemu.h ne_image.h nonclient.h 
2828         pe_image.h selectors.h wintypes.h]
2829         Added.
2831         * [*/*]
2832         - Commented all 'static char copyright statements', see misc/main.c
2833         - moved prototypes to headers files, fixed wrong prototypes.
2834         - *please* add a header file for each .c if you need to export
2835           things.
2837         * [misc/main.c]
2838         Added one static string which list the names of the contributors.
2840 Fri Nov 25 16:24:27 MET 1994              Dag Asheim (dash@ifi.uio.no)
2842         * [Configure]
2843         Made the support for multiple languages more automatic.  Added
2844         a [fonts] section to the wine.conf file.  Made the defaults
2845         better.  Generally cleaned it up.
2847         * [rc/sysres_No.rc] [rc/sysres_De.rc] [rc/sysres.c]
2848         Norwegian resources and small fixes to the german resources.
2850 Wed Nov 23 20:28:59 1994  Martin von Loewis  (martin@cs.csufresno.edu)
2852         * [debugger/break.c]
2853         bark(), toggle_next(), should_continue(): New functions
2854         insert_break(): Fixed, adds write access to page before writing
2855         wine_bp.next_addr: new structure field
2857         * [debugger/dbg.y]
2858         Changed symbol's value to be it's value instead of the value
2859         pointed to by the symbol.
2860         Changed SIGTRAP handling to allow continuation after break point
2862         * [misc/shell.c]
2863         ShellAbout(): Load resource from memory
2865 ----------------------------------------------------------------------
2866 Sun Nov 20 18:30:06 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
2868         * [controls/scroll.c] [include/scroll.h]
2869         Rewritten most of scroll-bar code for better Windows look & feel.
2870         Implemented EnableScrollBar().
2871         Preliminary keyboard support.
2873         * [objects/bitblt.c]
2874         Fixed BadMatch error for BitBlt() and StretchBlt() when reading
2875         bits from outside the visible region.
2877         * [objects/oembitmap.c] [include/bitmaps/obm_*]
2878         Use XPM symbolic colors to load bitmaps. This allows the colors
2879         of the bitmaps to depend on the system colors.
2881         * [tools/make_debug]
2882         Made the make_debug script more robust.
2884         * [windows/dialog.c]
2885         Fixed CheckRadioButton().
2887         * [windows/nonclient.c]
2888         A few changes to scroll-bar drawing and tracking.
2890         * [windows/winpos.c]
2891         Renamed NextWindowFromPoint() to WINPOS_NextWindowFromPoint() to
2892         avoid confusion, and optimized it somewhat.
2894 Nov 19, 94 Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
2896         * [misc/audio.c]
2897         * [misc/mcianim.c]
2898         more coding but nothing spectacular.
2900         * [misc/mmaux.c]
2901         some coding to access '/dev/mixer'.
2903         * [misc/midi.c]
2904         some coding to read .MID files, but it's not playing yet.
2906 Sun Nov 13 19:31:03 1994    James Youngman (mbcstjy@afs.man.ac.uk)
2908         * [objects/dib.c]
2909         Reimplemented DIB_SetImageBits_RLE8() so that it would cope with
2910         bitmaps which don't end 0x00, 0x02 (previously it blew up).  This
2911         includes some bitmaps output by Paint Shop Pro.  Implementation is
2912         possibly now too lax.  Please see the notes on the function about
2913         why.
2915         * [controls/desktop.c]
2916         The desktop pattern should be painted if the wallpaper doesn't
2917         cover the whole screen width OR the whole screen height.
2919 Sun Nov 13 00:07:11 MET 1994    Erik Bos        <erik@xs4all.nl>
2921         * [objects/dib.c]
2922         Small bug in DIB_SetImageBits() fixed, bitmaps in 16,24 bpp
2923         now work.
2925         * [loader/ne_resource.c] [include/resource.h]
2926         Some cleanup.
2928 Thu Nov 10 20:44:58 1994  Martin von Loewis  (martin@cs.csufresno.edu)
2930         * [Configure]
2931           [rc/sysres.rc]
2932         Primitive compile-time support for multiple languages
2934         * [rc/sysres_De.rc]
2935         New file
2937         * [loader/resource.c]
2938         LoadBitmap: Recognize end of sysresbm properly
2940         * [rc/Imakefile]
2941         Rules to compile resources simplified, dependencies changed
2943         * [rc/sysresbm.rc]
2944         Don't use sysresbm if using XPM
2946         * [windows/dialog.c]
2947         CreateDialogIndirectParam: Reverse Z-order of controls
2949         * [windows/message.c]
2950         MSG_TranslateMouseMsg: Fix HTTRANSPARENT handling
2952         * [windows/winpos.c]
2953         NextWindowFromPoint: New function
2955         * [controls/button.c]
2956         WM_NCHITTEST: Group Box is HTTRANSPARENT
2957         BUTTON_CheckAutoRadioButton: New function
2958         BM_SETCHECK: Added call to BUTTON_CheckAutoRadioButton
2960 Mon Nov  7 11:20:26 1994  Paul Falstad  (pf@zoof.cts.com)
2962         * [objects/text.c]
2963         Fix hang when using DrawText(..., DT_WORDBREAK) with a word that
2964         is too long to break.
2966         * [objects/font.c]
2967         Don't assume helvetica if there is no font family; let the other
2968         font attributes decide what font to use.
2970         * [controls/widgets.c]
2971         Listboxes and combo boxes need to be notified of double-clicks.
2973         * [controls/listbox.c]
2974           [include/listbox.h]
2976         scrolling to bottom of list box should display last item at the
2977         bottom, not at the top.
2978         
2979         list boxes need to allocate a separate heap for their item data,
2980         rather than using the user heap.  Otherwise, it's very easy to run
2981         out of memory for list box items.
2983         removed redundant code in ListBoxAddString().  Implemented simple
2984         version of LBS_SORT.
2986         Don't put [.] in the list box when using DDL_DIRECTORY.
2988         * [controls/combo.c]
2989         Combos should pass CBS_SORT onto their list box.
2991         * [windows/win.c]
2992         If window creation is aborted, remove the window from the
2993         linked lists.
2995         * [controls/static.c]
2996         static controls with SS_ICON were always returning 0 from
2997         WM_NCCREATE.
2999         Make sure static controls have text to draw before drawing it.
3001 ----------------------------------------------------------------------
3002 Sun Nov  6 18:52:04 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
3004         * [objects/oembitmap.c]  (New file)
3005         Added possibility to use .xpm files for OEM bitmaps.
3007         * [include/bitmaps/obm*]  (New files)
3008         Redrawn all OEM bitmaps in xpm format.
3010         * [objects/font.c]
3011         Add space for internal leading when using a negative font height.
3012         Stubs for AddFontResource() and RemoveFontResource().
3013         Fix in FONT_Init() for uninitialised default font.
3015         * [windows/dialog.c]
3016         Make font height negative as it is really a point size and not a
3017         pixel size; dialogs using 8-point fonts look better now.
3019         * [windows/graphics.c]
3020         Fixed the fix :-) for Pie() to make it work for Arc() and Chord() also.
3022         * [windows/nonclient.c]
3023         A few changes for new OEM bitmaps.
3025 Sun Nov  6 18:22:18 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
3027         * [windows/class.c]
3028         The names of local classes have to be stored using GlobalAtom*.
3029         Otherwise they couldn't be accessed from other modules (e.g. BWCC) 
3031         * [if1632/call.S]
3032         CallTo16(cx): It's possible to set the contents of the cx-register.
3034         * [loader/ne_image.c]
3035         InitNEDLL(): The size of the local heap is now passed in the cx-
3036         register when initializing a DLL.
3038         * [memory/heap.c]
3039         LocalInit(): The case start==0 is now handled in the way it should.
3041         * [windows/win.c]
3042         GetWindowLong(): If the adress of the windows function is requested
3043         it's no longer returned if it's within the Wine code (and therefore
3044         unreachable by a windows program). This makes Borland's OWL happy.
3046         * [controls/edit.c]
3047         EDIT_GetStr(): Added handling for off<0.
3049 Sun Nov  6 17:37:14 1994  Chris Jones  <chrisj@ichips.intel.com>
3051         * [loader/library.c]
3052         Fixed infinite loop bug when two DLLs refer to each other (fixes
3053         hangup of Quicken during loading).
3055 Thu Nov 04 12:00:00 1994  Jan Willamowius  (jan@janhh.sh.sub.de)
3057         * [misc/dos_fs.c]
3058         Bug fix: The size of a disk an the available space
3059         is now returned in bytes instead of (incorrectly)
3060         KBytes.
3062 Thu Nov 03 12:00:00 1994  Jan Willamowius  (jan@janhh.sh.sub.de)
3064         * [windows/graphics.c]
3065         Bug fix: Pie segments are now filled with correct brush.
3067 Thu Nov  3 10:40:09 1994  Martin von Loewis  (martin@cs.csufresno.edu)
3069         * [Imakefile]
3070         generate rc.o before loader.o
3072         * [controls/menu.c]
3073         CopySysMenu: generate SYSMENU on the fly, eliminate hSysMenu
3075         * [include/resource.h]
3076         Add struct ResourceTable
3078         * [loader/bitmap.h]
3079         Load system bitmaps from sysresbmTable
3081         * [misc/clipboard.c]
3082           [windows/event.c]
3083         IsClipboardFormatAvailable,EVENT_SelectionRequest: bug fixes
3084         
3085         * [rc/Imakefile]
3086         generate rc.o from sysres.o and sysresbm.o. Added -lfl
3088         * [rc/rc.y]
3089         change style handling to allow ( S1 | S2 ) | S3
3091         * [rc/sysres.rc]
3092           [rc/sysresbm.rc]
3093         Put bitmaps and icons to sysresbm, everything else to sysres
3095         * [rc/winerc.c]
3096           [rc/winerc.h]
3097         Added -o, -c flags. New function set_out_file. Output to files.
3099         * [windows/dialog.c]
3100         DialogBoxIndirectPtr, DialogBoxIndirectParamPtr: New functions 
3102         * [windows/nonclient.c]
3103         Create AboutWine dialog from template pointer
3105 ----------------------------------------------------------------------
3106 Sun Oct 30 13:01:18 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
3108         * [controls/static.c]
3109         Bug fix for SS_ICON controls.
3111         * [if1632/Imakefile]
3112         Fixed call.o dependencies.
3114         * [objects/clipping.c] [objects/dc.c]
3115         Fixed visible region handling. hVisRgn is always non-null now.
3117         * [windows/dce.c]
3118         Bug fix in GetDCEx for CS_OWNDC windows.
3120         * [windows/nonclient.c] [windows/painting.c]
3121         Fixes to icon window drawing.
3123         * [windows/winpos.c]
3124         A few fixes in SetWindowPos().
3126 Sun Oct 30 12:50:24 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
3128         * [objects/bitblt.c]
3129         BitBlt(): BitBlt is now able to handle any raster operation. If
3130         the request can't be passed to XWindows directly, it's quite
3131         slow, though.
3133         * [*/*.c]
3134           [misc/main.c]
3135         Improvements of the system for handling debug messages. Options are
3136         now also loaded from /usr/lib/X11/app-defaults/Wine (insert
3137         *debugoptions: +xxx there if you want to have turn messages xxx on).
3139         * [controls/menu.c]
3140         DestroyMenu(): The whole window won't be destroyed as a sideeffect
3141         any longer.
3143         * [misc/file.c]
3144         OpenFile(): Fixed bug in searching in system/window-directory.
3146 Sun Oct 30 12:25:53 1994  Jimmy Tirtawangsa <j0t2527@tam2000.tamu.edu>
3148         * [include/windows.h]
3149         Bug fix for window related structures.
3150         DCB and COMSTAT are affected. They must be packed.
3152         * [misc/comm.c]
3153         Bug fix for COM ports:
3154         Dial and dialog window in terminal.exe now works.
3155         Non sequential COM assignments in wine.conf should not break now.
3156         Baudrate can be specified in wine.conf to overcome baudrate limitation
3157         in mswindow. See sample wine.ini
3159         * [include/comm.h]
3160         add baudrate field to DosDeviceStructre
3162         * [object/font.c]
3163         Bug fix for font assignment.
3164         Use pairs of foundry and family fontnames in X11 to correspond with
3165         window's fonts.
3166         Put font assignment ini wine.ini.
3168         * [wine.ini]
3169         Adding optional baudrate after port name in "serialports" section
3170         Add new section, "fonts".
3171         "default" is special key in "fonts" to match any unmatch window font.
3173 Oct 29, 94 (new address) wine@trgcorp.mksinfo.qc.ca (Martin Ayotte)
3175         * [if1632/relay.c]
3176         * [if1632/commdlg.spec]         New file.
3177         * [misc/commdlg.c]                      New file.
3178         * [include/commdlg.h]           New file.
3179         Begin of an emulated COMMDLG DLL, built-in for now.
3180         (BTW, if you want to switch between built-in & 16bits CommDlg, only 
3181         thing you need to do is to put the real/dummy name in file relay.c)
3183         * [controls/scroll.c]
3184         * [controls/combo.c]
3185         * [controls/listbox.c]
3186         Few bug fixes and/or cosmetic.
3188         * [misc/audio.c]
3189         * [misc/mmaux.c]
3190         bug fixes and flags returned to emulate SB16.
3192         * [misc/midi.c]                         New file.
3193         skeleton for 'Midi' MMSYSTEM & MCI driver.
3195         * [misc/mcianim.c]                      New file.
3196         skeleton for 'Animation1' MCI driver.
3198         * [windows/win.c]
3199         Add new stub for GetLastActiveWindow().
3201 Tue Oct 25 09:17:25 1994  Olaf Flebbe  (flebbe@tat.physik.uni-tuebingen.de)
3203         * [if1632/call.S] [tools/build.c]
3204            Support for ELF format. (Not complete)
3206 Sun Oct 23 00:51:50 1994  Paul Falstad  (pf@zoof)
3208         * [if1632/user.spec]
3209         Add stubs for ArrangeIconicWindows(), etc.
3211         * [if1632/kernel.spec]
3212         Add IsBad*Ptr() functions.
3214         * [loader/signal.c]
3215         Add test_memory(), for use with IsBad*Ptr().
3217         * [windows/winpos.c]
3218         Add stubs for TileChildWindows(), etc.
3220         * [windows/win.c]
3221         IsWindow() shouldn't crash if it's given a bad handle.
3222         Add stub for GetLastActivePopup().
3224         * [memory/global.c]
3225         Implement the IsBad*Ptr() functions.
3227         * [controls/listbox.c]
3228         Return the full longword of the item data in LB_GETITEMDATA.
3230         * [controls/edit.c]
3231         Don't let the user select an area past the end of the text.
3233         * [objects/text.c]
3234         In DrawText(), the code to delete crlfs also removed multiple
3235         consecutive newlines.  Also, using DT_CALCRECT didn't return
3236         the right height, and the width wasn't returned at all.
3237         This caused MessageBoxes to be missing much of their text.
3239         * [windows/scroll.c]
3240         ScrollWindow[Ex] didn't work right with null LPRECT arguments.
3242 Fri Oct 21 21:47:19 1994  Paul Falstad  (pf@zoof.cts.com)
3244         * [miscemu/int21.c]
3245         Fixed int21 0x42 handler to properly assemble 32-bit seek ptr.
3247         * [misc/property.c]
3248         Fixed inverted logic in EnumProps(), and changed CallBack16()
3249         call to use new arg format.
3251         * [windows/win.c]
3252         Fixed CallBack16() call in Enum[Child]Windows to use new arg
3253         format; this fixes crashes in enum procedures.
3255 Wed Oct 19 21:30:00 PDT 1994            martin@cs.csufresno.edu
3257         * [misc/clipboard.c]
3258           [windows/event.c]
3259           [windows/message.c]
3260         Added cut and paste between Wine and other X clients via
3261         the PRIMARY selection. Text only this time.
3263         * [controls/edit.c]
3264         EDIT_LineLength, EDIT_TextLine return 0 for lines after last one.
3266         * [windows/defwnd.c]
3267         Send WM_SYSCOMMAND to overlapped ancestor window, 
3268         not the receiver of WM_SYSKEYDOWN
3270 Sat Oct 22 15:01:02 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
3272         * [controls/edit.c]
3273         ClientWidth()/ClientHeight() macros: return 0 if size would
3274         be negative
3275         EDIT_StrLength(): takes unsigned char* instead of char*
3277         * [controls/listbox.c]
3278         ListBoxWndProc(): in "case WM_MOUSEMOVE" - set lphl at start of
3279         case instead of in each place required (it was omitted in
3280         some places causing problems!)
3282         * [controls/menu.c]
3283         MENU_CalcItemSize(): don't try to find size of a text item
3284         if the pointer is NULL
3286         * [include/heap.h]
3287         added definition of HEAP_LocalInit()
3289         * [include/msdos.h]
3290         removed buggy pointer() macro (use SAFEMAKEPTR() from segmem.h
3291         instead)
3293         * [loader/selector.c]
3294         IPCCopySelector(): added missing flags to shmget() call
3295         ? does this break linux - I added these flags in a previous
3296         patch but they were missing in the corresponding release ?
3298         * [loader/signal.c]
3299         win_fault(): added missing definitions of i, dump for those
3300         not running NetBSD or linux
3302         * [misc/dos_fs.c]
3303         DOS_GetCurrentDir(): made temp[] static so it can be safely
3304         returned
3306         * [miscemu/int21.c,int25.c,int26.c]
3307         Changed all invocations of pointer() to SAFEMAKEPTR(). Included
3308         segmem.h where necessary.
3310         * [windows/dialog.c]
3311         CreateDialogIndirectParam(): Changed HEAP_Init() call to 
3312         HEAP_LocalInit(), removed redundant variables
3314 Sat Oct 22 00:29:41 MET 1994              Dag Asheim (dash@ifi.uio.no)
3316         * [loader/library.c] [loader/main.c] [loader/ne_image.c]
3317           [misc/exec.c] [miscemu/int10.c] [miscemu/int21.c]
3318           [objects/bitblt.c] [objects/metafile.c]
3319         Rewritten more printf's to use the new debugging system, and
3320         made wine less verbose per default. Use "-debugmsg +module"
3321         to get (almost) the same behavior as before.
3323 ----------------------------------------------------------------------
3324 Sun Oct 16 13:29:07 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
3326         * [controls/button.c]
3327         Implemented WM_GETDLGCODE, WM_SETFONT, BM_SETSTYLE, BM_SETCHECK,
3328         BM_SETSTATE.
3329         Implemented default button painting.
3330         Optimised redrawing.
3331         Fixed owner-draw buttons.
3333         * [controls/static.c]
3334         Implemented WM_SETFONT.
3335         A few optimisations in painting code.
3336         Bug fix for SS_SIMPLE controls.
3338         * [if1632/callback.c]
3339         Preliminary GetCodeHandle().
3341         * [if1632/gdi.spec]
3342         Changed 'pascal' to 'pascal16' everywhere it's needed.
3344         * [include/windows.h]
3345         Fixed a few data structures.
3347         * [memory/heap.c]
3348         Bug fix in HEAP_ReAlloc().
3350         * [misc/cursor.c]
3351         Fixed SetCursor().
3353         * [objects/bitblt.c]
3354         Fixed PatBlt() when using BLACKNESS or WHITENESS codes.
3356         * [objects/font.c]
3357         Better font mapping code.
3358         Implemented GetTextFace().
3360         * [objects/region.c]
3361         Bug fix in REGION_MakePixmap().
3362         Faster region copying.
3364         * [objects/text.c]
3365         Implemented ExtTextOut().
3366         Implemented DT_NOCLIP style for DrawText().
3368         * [windows/dc.c]
3369         Free the bitmap when deleting a memory DC.
3371         * [windows/dce.c]
3372         Added support for windows that have no associated X window.
3373         Implemented DCX_CLIPSIBLINGS and DCX_PARENTCLIP in GetDCEx().
3375         * [windows/defdlg.c]
3376         Implemented default push button handling and DM_SETDEFID.
3377         Implemented WM_NEXTDLGCTL.
3379         * [windows/dialog.c]
3380         Implemented default push button handling.
3381         Beginning of a keyboard interface in dialogs
3382         (does not really work yet).
3383         Fixed dialogs that use a special font.
3385         * [windows/event.c] [windows/focus.c]
3386         Added support for non-X windows.
3388         * [windows/graphics.c]
3389         Rewritten FloodFill() and implemented ExtFloodFill().
3391         * [windows/message.c]
3392         Cleaner hardware messages and X events handling.
3394         * [windows/defwnd.c] [windows/painting.c]
3395         Implemented WM_SETREDRAW.
3397         * [windows/win.c]
3398         Only create an X window for top-level windows, or for the desktop.
3399         Child windows now use their parent's drawable.
3401         * [windows/winpos.c]
3402         Beginning of support for non-X windows (still somewhat broken).
3403         Implemented *DeferWindowPos().
3405         * [*/Imakefile]
3406         Cleaned up some Imakefiles.
3407         Moved dc.c from windows/ to objects/.
3408         Moved cursor.c from misc/ to windows/.
3410 Sun Oct 16 12:21:52 1994  Michael Patra <micky@marie.physik.tu-berlin.d400.de>
3412         * [include/debug.h]
3413           [include/stddebug.h]
3414           [*/*.c]
3415         Rewritten all the calls to printf for displaying debug-information
3416         (messages like "LoadImage: loading SOL (SOL.EXE)" etc.) 
3417         Added option "-debugmsg" to Wine. Example: "-debugmsg +all" will turn
3418         all these messages on, "-debugmsg -dll" will turn all messages 
3419         concerning DLLs off.
3421         * [controls/combo.c]
3422         Added some handling for combo controls with ownerdraw-styles
3423         (just creating and passing the necessary messages to the 
3424         corresponding listbox control; the edit-control needs to be
3425         replaced with something else).
3427         * [controls/edit.c]
3428           [windows/dialog.c]
3429         Added support for use of global heap memory in dialogs with 
3430         edit controls.
3432         * [controls/listbox.c]
3433         Added support for item data.
3434         ListBoxInsertString(): Fixed bug for elements which are not inserted
3435         after the currently last element.
3436         
3437         * [misc/dos_fs.c]
3438           [miscemu/int21.c]
3439         DOS_ValidDirectory(): Checks whether a given string is in fact the
3440         valid name of a directory.
3442 Sat Oct 15 17:35:00 PDT 1994            <martin@cs.csufresno.edu>
3444         * [Imakefile]
3445         generate wine.sym after creating wine
3447         * [debugger/dbg.y]
3448         load "wine.sym" when entering debugger
3450         * [debugger/info.c]
3451         symbolic backtrace for 32-bit stack. Breaks 16-bit bt.
3453 Sun Sep  25 12:00:00 PDT 1994   <martin@osiris.cs.csufresno.edu>
3455         * [rc/rc.y] [rc/rc.h] [rc/rc.l] [rc/winerc.c]
3456         Files created
3458 Sun Sep 18 11:04:45 MET DST 1994          Dag Asheim (dash@ifi.uio.no)
3460         * [misc/spy.c]
3461         Exclude and Include no longer requires a terminating ';' to
3462         register the last component.
3464 Thu Sep 15 23:10:09 MET DST 1994          Dag Asheim (dash@ifi.uio.no)
3466         * [Configure]
3467         Rewrote much of it.  Added capability to generate a wine.ini
3468         file.  Commented out the processor emulator options until that
3469         becomes interesting.  Gives a warning if it sees any *.rej
3470         files.  I hope I haven't assumed to much about the shell/OS so
3471         that it breaks under *BSD.
3473         * [misc/dos_fs.c]
3474         Removed/changed calls to ToUnix() (which calls tolower()) so
3475         that the part of the pathname which correspond with the drive
3476         letter on DOS no longer will be mapped to lowercase.  This
3477         means that it should be possible to have uppercase letters in
3478         the [drives] section of wine.ini.
3480         * [LICENSE]
3481         Cosmetic changes so that it displays better in the window you
3482         get from pressing "Credit_License" in the "About WINE" window.
3484 Sun Aug 21 21:12:06 MET DST 1994        <erik@xs4all.nl>
3486         * [controls/menu.c]
3487         LoadMenu() moved to loader/resource.c.
3489         * [misc/main.c]
3490         Added stub for FileCDR().
3492         * [include/peexe.h]
3493         Added, from Eric's pe-test.
3495         * [include/resource.h]
3496         Added.
3498         * [loader/resources.c]
3499         Removed duplicated code in *Resource() functions.
3500         Moved NE-program specific functions into ne_image.c.
3501         Moved NE-fileformat functions to ne_resource.c.
3503         * [pe_image.c] [pe_resource.c]
3504         Added. Nothing implemented to run PE-executables, resource
3505         loading only.
3507         * [misc/file.c]
3508         Changed OpenFile() to use macros.
3510         * [misc/shell.c]
3511         Added NULL-ptr checks to ShellAbout().
3513         * [miscemu/int21.c]
3514         Fixed a few typos.
3516         * [miscemu/kernel.c]
3517         Added _DI = _DS, to put the caller's instance in DI. Doesn't
3518         work properly if caller changed DS :-(
3520 ----------------------------------------------------------------------
3521 Thu Aug 25 15:24:36 EDT 1994            <jrichard@cs.uml.edu>
3523         * [include/win.h]
3524         Removed seperate X window for icon, added icon width,height.
3526         * [include/windows.h]
3527         Commented out the old SW_xxx emum and added defines since
3528         they aren't enumerated.
3530         * [windows/dce.c]
3531         Removed some older IsIconic checks from GetDCEx(), functionality
3532         is now in nonclient and generic wine window handling code.
3533         Lots of thanks to Alexandre Julliard all the hints and
3534         help...
3536         * [windows/defwnd.c]
3537         Removed call to NC_HandleNCPaintIcon() under case WM_PAINTICON,
3538         WM_PAINTICON now calls NC_HandleNCPaint.  
3540         * [windows/event.c]
3541         Removed IsIconic checks.
3543         * [windows/icon.c]
3544         Removed everything in this file for now... could be used later.
3545         Icon functionality is now handled by the generic wine windows
3546         handling functions.
3547         
3548         * [windows/mdi.c]
3549         Added a ShowWindow in MDIRestoreChild().  MDI child windows now
3550         show up when deiconified.  Removed IsIconic checks.
3552         * [windows/message.c]
3553         Removed old icon routines from hardware_event().
3555         * [windows/nonclient.c]
3556         Changed NC_HandleNCCalcSize() so it doesn't change the size
3557         of an icon window.  Made NC_InternalNCHitTest() on an Iconic
3558         window always return HTCAPTION.  Made NC_HandleNCLButtonDblClk()
3559         on an Iconic window always send a SC_RESTORE message.
3561         * [windows/painting.c]
3562         Changed RedrawWindow() so it doesn't redraw an iconic window
3563         unless it has to (no icon for this class).
3564         
3565         * [windows/win.c]
3566         Removed creation of seperate icon window from CreateWindowEx().
3567         
3568         * [windows/winpos.c]
3569         Added saving and restoring of window rectangle during
3570         iconification/deiconification to ShowWindow().  Added
3571         functions to recursively hide and show children... called
3572         by ShowWindow during iconification/deiconification.
3574 Sat, 27 Aug 1994 18:47:34 +0100 (MET DST)  micky@marie.physik.tu-berlin.de (Michael Patra)
3576         * [windows/message.c]
3577         WaitMessage(): Fixed handling of wm_timer-messages
3579         * [miscemu/int21.c]
3580         FindNextFCB(): Rewritten to support other functions than just
3581         returning the volume label
3583         * [misc/file.c]
3584         OpenFile(): Fix in handling of OF_CREATE
3586 Wed Aug 24 19:40:42 PDT 1994  Andrew Lagodzinski  (andrew@netcom.com)
3588         * [if1632/user.spec]
3589         Added SetParent.
3591         * [windows/win.c]
3592         Added SetParent.
3594 Fri Aug 19 16:37:00 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
3596         * [loader/selector.c]
3597         Many changes throughout file to correct handling of shared memory
3598         function return codes. FreeBSD and SunOS shm functions return
3599         -1 not 0 on error. If Linux is different, these changes
3600         will have to be backed out.
3601         CleanupSelectors(): this is a new (internal) call to free
3602         up all selectors (and shm handles/memory) for use on exit.
3604         * [include/segmem.h]
3605         Change comment to reflect new use of shm_key
3607         * [misc/main.c]
3608         called_at_exit(): add call to CleanupSelectors()
3610 Mon Aug 22 18:19:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
3612         * [controls/button.c]
3613         Use OBM_CHECKBOXES to draw check boxes with correct colors.
3614         Fixed bug with WM_SETTEXT handling.
3615         A few drawing optimisations.
3617         * [controls/menu.c]
3618         Implemented correct \t and \a handling in menu items.
3619         Implemented help items (flush right) on menu bar.
3620         Added WM_ENTERMENULOOP and WM_EXITMENULOOP messages.
3622         * [controls/static.c]
3623         Fixed SS_ICON controls and implemented STM_SETICON message
3624         handling.
3626         * [controls/widget.c]
3627         Set cursor to IDC_ARROW for built-in classes.
3629         * [include/options.h] [misc/main.c]
3630         Backing store is now off by default.
3632         * [objects/region.c]
3633         Use X regions for rectangle and polygon regions: *major* speed
3634         improvement.
3636         * [windows/dialog.c]
3637         Fixed the fix for integer ids in controls. SS_ICON controls in
3638         dialogs should work now.
3639         Implemented DS_ABSALIGN style.
3641         * [windows/graphics.c]
3642         Implemented InvertRgn().
3643         New internal function GRAPH_DrawBitmap() to draw bitmaps faster
3644         than with CreateCompatibleDC() + BitBlt().
3646         * [windows/message.c]
3647         Determining the window for a mouse message is now done at
3648         GetMessage() time.
3649         Modified PeekMessage() handling to avoid needlessly flushing the
3650         output queue.
3652         * [windows/timer.c]
3653         Check for restart of a timer (SetTimer call with the same hwnd and
3654         id than an existing timer).
3656 ----------------------------------------------------------------------
3657 Tue Aug  9 23:58:29 MET DST 1994        <erik@hacktic.nl>
3659         * [misc/file.c]
3660         OpenFile(): Completly rewritten.
3662         * [miscemu/int21.c]
3663         CreateFile(): Fixed wrong mode in call to open.
3664         OpenExistingFile(): Implemented file sharing.
3665         FindNext(): Fixed.
3666         CreateNewFile(): Fixed wrong mode in call to open.
3667         fLock(): Added to handle record locking.
3668         GetFileAttribute(): Added.
3669         As a result, AH = 0x5c, 0x09, and 0x0b were changed.
3671         * [miscemu/int2f.c]
3672         AH = 0x10: SHARE installation check
3674         * [loader/resource.c]
3675         AccessResource(): Fixed. A new file descriptor will be returned by
3676         every call to AccessResource().
3678         * [windows/utility.c]
3679         wvsprintf(): Fixed.
3681         * [controls/menu.c]
3682         FindMenuItem(): Fixed (handling for nPos == -1 added).  
3684         * [windows/win.c]
3685         CreateWindowEx(): Added call to WINPOS_GetMinMaxInfo.
3687         * [Configure]
3688         Added two options for a processor emulator that might be
3689         plugged in later..
3691         * [loader/task.c] [include/toolhelp.h] [if1632/toolhelp.spec]
3692         CreateNewTask() stores real modulename instead of 'TASKxxxx'.
3693         Added TaskFirst(), TaskNext(), TaskFindHandle().
3695         * [memory/global.c]
3696         Added stub for MemManInfo().
3698         * [objects/text.c]
3699         Added stub for GetTabbedTextExt().
3701         * [miscemu/*]
3702         Changed all references to registers. Please don't access
3703         the context structure.
3704         fix for GetSystemTime() by <jspeter@birch.ee.vt.edu> added.
3706         * [misc/lstr.c]
3707         Fixed bug in AnsiUpper() & AnsiLower().
3709         * [misc/winsocket.c]
3710         bugfix in getsockopt()/setsockopt(): winsock uses different values
3711         than unix.
3713         * [objects/dib.c]
3714         Added DIB_SetImageBits_RLE[48] to support compressed bitmaps.
3716 Mon Aug  8 21:12:33 1994  David Metcalfe <david@prism.demon.co.uk>
3718         * [controls/edit.c]
3719         Added support for WM_COPY, WM_CUT and WM_PASTE messages.
3721         * [windows/dialog.c] [windows/defdlg.c] [include/dialog.h]
3722         Modified dialog code to create new heap for edit controls
3723         unless DS_LOCALEDIT style is set.
3725 Thu Aug  4 18:50:56 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
3727         * [controls/button.c] [controls/edit.c] [controls/static.c]
3728         Removed unneeded GlobalUnlock() calls.
3730         * [controls/menu.c] [include/menu.h]
3731         Lots of changes, fixed a lot of old bugs and introduced a lot of
3732         new ones :-)
3733         - Changed message loop to use MSG_GetInternalMessage().
3734         - Fixed a bug that caused the main window to lose activation when
3735           displaying a menu.
3736         - Correctly send initialisation messages (WM_INITMENUPOPUP).
3737         - Implemented EndMenu() and LookupMenuHandle().
3738         - Changed internal structures to be as compatible as possible with
3739           MS-Windows.
3740         - Allocated everything on the USER heap instead of the global heap.
3741         - Prefixed all internal function names with MENU_ and declared
3742           them static.
3743         - Moved "About Wine..." handling to NC_HandleSysCommand().
3744         - Multi-line menus should now work correctly.
3746         * [loader/resource.c] [objects/bitmap.c]
3747         Added the possibility to create OEM bitmaps directly as X bitmaps.
3749         * [objects/dcvalues.c] [windows/dc.c]
3750         Fixed GetDCOrg() to return screen coordinates.
3752         * [windows/message.c]
3753         Fixed double-click checks when the message is not removed from the
3754         queue.
3755         Fixed MSG_GetInternalMessage() to send WM_ENTERIDLE messages.
3757         * [windows/nonclient.c]
3758         Bug fix in system menu hit-test calculation.
3759         A few changes for new menu functions.
3761 Thu Aug 11 17:51:02 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
3763         * [controls/edit.c]
3764         Bug fix in Edit_NCCreateMessage
3765         es->textlen was being used before being set
3767         * [controls/menu.c]
3768         Bug fix in MENU_DrawMenuItem
3769         don't try to write text if NULL pointer passed
3771 ----------------------------------------------------------------------
3772 Thu Aug  4 07:18:02 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
3774         * [windows/message.c]
3775         Implemented WaitMessage() (USER.112).
3777         * [if1632/user.spec]
3778         Added WaitMessage.
3780         * [windows/defwnd.c]
3781         WM_ERASEBKGND: Added support for hbrBackground=COLOR_xxx.
3783         * [miscemu/int{13,21,2a}.c]
3784         * [miscemu/Imakefile]
3785         * [signal/loader.c]
3786         Added a few basic disk information and diagnostic functions to
3787         prevent programs using this function from crashing. All drives
3788         are claimed to be remote ones, so direct I/O isn't allowed.
3790         * [controls/edit.c]
3791         EDIT_WriteText(): Added code to correctly erase the remaining space
3792         of the edit-control if the size of the control has changed sinced it's
3793         creation.
3795 Tue Jul 26 22:05:54 MET DST 1994 Erik Bos <erik@hacktic.nl>
3797         * [if1632/mouse.spec]
3798         Added mouse.dll entry, no functions.
3800         * [loader/resource.c]
3801         Bug fix in AccessResource(). 
3803         * [misc/keyboard.c], added [include/keyboard.h]
3804         Changed functions to return more useful values.
3806         * [windows/dialog.c]
3807         Hacked DIALOG_GetControl() to support resources which
3808         have 0xff00 - 0xffff as id. ** Needs to be done properly by
3809         someone who knows the NE fileformat **
3811 Jul 29, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
3813         * [windows/event.c]
3814         Add new stub for EnableHGardwareInput() function.
3816         * [windows/message.c]
3817         Add coding for HWND_BROADCAST in PostMessage().
3819         * [misc/file.c]
3820         Add coding for OpenFile() also search in WindowPaths.
3822         * [misc/mmsystem.c]
3823         * [misc/audio.c]
3824         * [misc/mmaux.c]
3825         * [misc/mcicda.c]
3826         Change #include "linux/soundcard.h" by #include "sys/soundcard.h"
3827         Add coding in MMIO functions. Now, mmioDescend() can find WAV chunks.
3828         SndPlaySound & MCI_ELEMENT now use MMIO and adjust to proper formats.
3829 ----------------------------------------------------------------------
3830 Mon Jul 18 23:55:13 MET DST 1994
3832         * [if1632/call.S]
3833         CallTo16(): added `mov %eax,%edx' just before lcall,
3834         to make sure that DX contain the DLL's hinstance when
3835         initialised.
3837         CallTo32_16() added, equal to CallTo32() except for
3838         one thing: it saves DX and 
3840         * [tools/build.c]
3841         Added some code to support 16 and 32 bit return values.
3843         * [1632/{kernel,user}.spec]
3844         Changed most of the `pascal' style to pascal_16 when
3845         function returned a 16bit value.
3847 Tue Jul 19 18:40:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
3849         * [controls/menu.c]
3850         Reorganized sizing and drawing code to implement multi-line menus.
3851         Implemented MENUBREAK style.
3852         Use system colors to draw menus.
3854         * [objects/color.c]
3855         Bug fix in COLOR_IsSolid().
3857         * [objects/font.c]
3858         Bug fix in FONT_GetMetrics(): calculate average character width
3859         only on existing chars (dialogs look much better).
3861         * [objects/text.c]
3862         Bug fix in DrawText(): use text color to underline mnemonic.
3864         * [windows/nonclient.c]
3865         Changed WM_NCHITTEST handling to cope with multi-line menu bars.
3867         * [windows/syscolor.c]
3868         Added system objects for menu colors.
3870 Mon Jul 18 19:32:08 PDT 1994  Andrew Lagodzinski  (andrew@netcom.com)
3872         * [controls/menu.c]
3873         Fixed bug in SelectPrevItem that caused seperators to not be
3874         skipped when using the up arrow key.
3876 ----------------------------------------------------------------------
3877 Thu Jul 14 17:50:45 1994  Bob Amstadt  (bob@pooh)
3879         * [Configure]
3880         Autodetects Linux version (if running Linux).
3882         * [loader/signal.c]
3883         New signals for Linux.
3885         * [loader/ldtlib.c]
3886         New structure field in sys call.
3888 Sun Jul 10 19:31:34 1994  Olaf Flebbe  (olaf@dragon)
3890         * [load/resource.c] 
3891           fixed Memory (Resource) Leak.
3893         * [load/main.c] 
3894           fixed a printf.
3896 Tue Jul 12 18:50:34 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
3898         * [controls/desktop.c]
3899         Implemented desktop wallpaper (only 16 colors for now).
3901         * [controls/menu.c] [windows/nonclient.c]
3902         Preliminary work to allow multi-line menus.
3904         * [misc/main.c]
3905         No backing store on desktop window (not useful).
3907         * [objects/text.c]
3908         A few fixes to DrawText() to make underlines under mnemonic
3909         letters to look better.
3911         * [windows/graphics.c]
3912         More fixes to GRAPH_DrawArc(), and some fixes to Polygon().
3913         Implemented PolyPolygon() (partially working).
3915         * [windows/winpos.c]
3916         New function WINPOS_SendNCCalcSize().
3917         Cleaned up SetWindowPos() and added preliminary support for
3918         multi-line menus.
3920 Mon Jul 11 19:15:51 1994  Miguel de Icaza  (miguel@sphinx)
3922         * [controls/edit.c]
3923         Changes to work as a library.
3925         * [if1632/callback.c] 
3926         Ifdefed module.
3928         * [if1632/relay.c]
3929         Changes to allow linking with WineLib.
3931         * [include/windows.h]
3932         Added macro WINELIB_UNIMP
3934         * [loader/library.c]
3935         When compiling WineLib, GetProcAddress is not implemented yet.
3937         * [loader/main.c]
3938         Added empty InitDLL when using WineLib.
3940         * [loader/ne_image.c]
3941         Some parts of the loader are needed for WineLib, ifdefed correctly
3943         * [misc/{audio.c,mcicda.c,mmaux.c,mmsystem.c]
3944         Disable compilation of module when compiling WineLib.
3946         * [toolkit/heap.c]
3947         Fixed small bug.  When passed an invalid handle WineLib would
3948         crash, now return NULL.
3950         * [toolkit/winmain.c]
3951         Call CreateNewTask in _WinMain.
3953 Sun Jul 10 09:08:02 1994  David Metcalfe <david@prism.demon.co.uk>
3955         * [controls/edit.c] [controls/widget.c]
3956         More changes to improve compatibility with Windows' edit
3957         control.  Finished off tab stop support.
3959 Mon Jul 11 21:05:02 MET DST 1994  Erik Bos <erik@hacktic.nl>
3961         * [if1632/relay.c]
3962         # of ordinals in shell.dll changed to 103.
3964         * [loader/signal.c]
3965         sti, cli will now be ignored.
3967         * [objects/brush.c]
3968         Added stub for GetSysColorBrush().
3970 ----------------------------------------------------------------------
3971 Sun, 3 Jul 1994 20:15:56 +0100 (BST)  David Metcalfe <david@prism.demon.co.uk>
3973         * [controls/edit.c]
3974         Bug fixes and tidying up.  Preliminary tab stop support
3975         (doesn't work yet).
3977         * [windows/dialog.c]
3978         Reversed order of buttons in CheckRadioButtons so that all
3979         buttons are now displayed.
3981 Tue Jul  5 18:30:24 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
3983         * [include/options.h] [misc/main.c] [windows/win.c]
3984         Removed nosaveunders option, replaced by handling
3985         the CS_SAVEBITS flag.
3987         * [windows/class.c]
3988         Modified the fix for negative size in class extra bytes to
3989         avoid modifying the caller's data.
3991         * [windows/dc.c]
3992         Bug fix: system font must be a proportional font.
3993         Fixed a bug that caused the default pen to not be selected
3994         correctly in a DC.
3996         * [windows/graphics.c]
3997         Bug fix in GRAPH_DrawArc(). Thanks to Adriano Azevedo for
3998         noticing it.
4000         * [windows/painting.c]
4001         Removed incorrect selecting of default objects in BeginPaint()
4002         (no longer needed because of the fix in dc.c).
4004 Jul 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4006         * [misc/mmsystem.c]
4007         * [misc/audio.c]
4008         Add more code to interface '/dev/dsp'.
4010         * New file [misc/mcicda.c]
4011         Create an MCI_DEVTYPE_CD_AUDIO driver connected to '/dev/sbpcd'.
4013         * New file [misc/mmaux.c]
4014         Stubs to make a future driver connected to '/dev/mixer'.
4016         * [windows/win.c]
4017         Temporary patch to CreateWindowEx() for reseting negative
4018         coordinates to 0,0 ; because 'soundrec.exe' give negative values
4019         and I need it to work on MMSYSTEM ... :-)
4021         * [miscemu/int2f.c]
4022         add a stub 'do_int2f_16' (function 0x16) for DMPI server.
4024 Mon Jun 20 10:08:40 BST 1994  William Smith (wos@dcs.warwick.ac.uk)
4026         * include/comm.h
4027         New file -- some definitions that were in comm.c now need to
4028         be shared with misc/dos_fs.c
4030         * misc/comm.c
4031         Some definitions moved into include/comm.h
4033         * misc/dos_fs.c (DOS_GetEquipment):
4034         Fixed error in equipment -- bitwise or of two values should
4035         be used instead of logical or.  Also added code to correctly
4036         report the number of serial and parallel devices.
4038 ----------------------------------------------------------------------
4039 Mon Jun 20 14:26:41 1994  Bob Amstadt  (bob@pooh)
4041         * [objects/bitmap.c]
4042         Allow negative bitmap sizes.
4044 Sun Jun 19 12:00:04 1994  David Metcalfe <david@prism.demon.co.uk>
4046         * [controls/edit.c]
4047         Improved selection display.  Added processing for WM_SETFONT,
4048         EM_REPLACESEL, EM_LINELENGTH, EM_UNDO, EM_EMPTYUNDOBUFFER,
4049         EM_GETHANDLE, EM_SETHANDLE messages.  Text buffer now stored on 
4050         application's local heap.
4052         * [windows/graphics.c]
4053         Corrected bug in Rectangle().  XFillRectangle has the same
4054         width as Rectangle, but XDrawRectangle is one pixel wider
4055         for the same co-ordinates.
4057         * [memory/heap.c] [include/heap.h]
4058         Added HEAP_LocalSize function.
4060         * [windows/event.c] [windows/keyboard.c]
4061         Improvements to KeyStateTable and addition of AsyncKeyStateTable.
4062         Added supporting code to GetKeyState and GetAsyncKeyState and
4063         merged mouse button states into GetKeyboardState.
4065         * [loader/resource.c] [include/accel.h]
4066         Added recognition of SHIFT, CONTROL and ALT keys to
4067         TranslateAccelerator.
4069         * [objects/metafile.c] [objects/font.c] [objects/bitblt.c]
4070         A bit more metafile support.
4072 Sun Jun 19 17:29:00 MET DST 1994  Erik Bos (erik@hacktic.nl)
4074         * [loader/resource.c]
4075         SizeofResource() and AllocResource() added, AccessResource() updated.
4077         * [if1632/kernel.spec]
4078         FreeLibrary() used for FreeModule().
4080         * [windows/graphics.c]
4081         Rectangle(): swap left & right corners when right < left,
4082         swap top & bottom when botton < top.
4084 Jun 19, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4086         * [controls/combo.c]
4087         Fix bug in window style of the associated listbox.
4089         * [controls/menu.c]
4090         Skip separators in keyboard navigation by using new internal 
4091                 functions SelectPrevItem() & SelectNextItem(),
4093         * [misc/profile.c]
4094         Bug fix in GetPrivateProfileInt(), was limited to 4 digit,
4095                 IntBuf must be alloc to (5+1)=6. char instead of 5.
4097         * [misc/main.c]
4098         Put code in functions SetEnvironment() & GetEnvironment().
4100         * [misc/shell.c]
4101         Start putting some code in ExtractIcon() function.
4103         * [misc/mmsystem.c]
4104         Some code for MMTimer functions & timers list.
4106         * [miscemu/int31.c]
4107         Few stubs for DPMI interrupt calls. Nothing work yet.
4109 Mon Jun 20 07:37:43 EDT 1994    John Richardson (jrichard@cs.uml.edu)
4111         * include/win.h (tagWND):
4112         Added icon fields icon, hIcon and rectClientSave to 
4113         the tagWND struct.
4115         * windows/Imakefile
4116         Added icon.c to the list of files to compile
4118         * windows/dce.c (GetDCEx):
4119         Added some checks for iconic mode and pass icon window as drawable,
4120         not the real window.
4122         * windows/defwnd.c (DefWindowProc)
4123         Added PAINTICON default windows procedure.
4125         * windows/event.c (EVENT_Expose)
4126         Added check for iconic window expose. If iconic window is exposed
4127         send a WM_PAINTICON message
4129         * windows/icon.c 
4130         New file.  ICON_Iconify, ICON_findIconFromPoint, ICON_Deiconify.
4132         * windows/mdi.c (DefMDIChildProc)
4133         Test for IsIconic during a SC_RESTORE, this doesn't work yet.
4135         * windows/message.c (hardware_event)
4136         Looks for icon as well as window now.
4138         * windows/nonclient.c (NC_HandleSysCommand, NC_DoNCPaintIcon)
4139         Added iconify/deiconify in NC_HandleSysCommand, new function
4140         NC_DoNCPaintIcon which paints an icon.
4142         * windows/painting.c (BeginPaint)
4143         Made a BeginPaint select the STOCK_BLACK_PEN, STOCK_WHITE_BRUSH,
4144         and STOCK_SYSTEM_FONT objects since this is (hopefully) default
4145         windows behavior.
4147         * windows/win.h (CreateWindowEx)
4148         Set the default background color of a window to be white.
4149         Create icon window, turn off MINIMIZE if it is on, since
4150         I don't know what to do with it as of yet... register
4151         the icon with the hwnd of its window so we can identify where
4152         icon messages are coming from.
4154 Mon Jun 20 10:15:59 1994  Miguel de Icaza  (miguel@sphinx)
4156         * windows/event.c: Added a hack to define XPointer when using
4157         X11R4. 
4159         * toolkit/hello.c: Test application for WineLib. To compile you'll
4160         need: gcc -Iinclude -DWINELIB -g hello.c -c, and to link you'll
4161         need: gcc hello.o libwine.a -lX11 -L/usr/openwin/lib -lm 
4163         * toolkit/heap.c: Extended the size of the block size per chunk.
4165         * misc/stress.c (GetFreeFileHandles): Fixed typo.
4167         * misc/main.c (main): Changes to allow compilation under SunOS. 
4169         * loader/library.c: Changed some ifdefs to compile WineLib.
4171 ----------------------------------------------------------------------
4172 Tue Jun 14 08:09:14 1994  Bob Amstadt  (bob@pooh)
4174         * loader/selector.c (GetCurrentPDB): 
4175         Added trivial function GetCurrentPDB() which returns the program
4176         segment prefix selector.
4178         * memory/heap.c (HEAP_Free): 
4179         If free list is empty, make the freed block the free list.
4181 Fri Jun 10 07:56:49 1994  Bob Amstadt  (bob@pooh)
4183         * controls/edit.c (EDIT_SetTextMsg): 
4184         Do not append a newline at the end of the last line.
4186         * windows/event.c (SetCapture): 
4187         Set winHasCursor if mouse capture succeeds.
4189 Jun 13, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4191         * [controls/listbox.c]
4192         Fix bug in listbox : InsertString should call AddString if -1.
4194         * [controls/menu.c]
4195         New function GetMenuState().
4197         * [controls/scroll.c] [windows/nonclient.c]
4198         Try to make ShowScrollBar() recalc NC_ regions. Not finished !
4200         * [objects/text.c]
4201         Add Stub for TabbedTextOut(), which temporarely call Textout().
4203         * [windows/keyboard.c] [windows/event.c]
4204         New function GetKeyBoardState() with an KeyStateTable array
4205                 & associated handling in function EVENT_key().
4207 Mon Jun 13 16:45:24 MET DST 1994 (erik@hacktic.nl)
4209         * [controls/menu.c]
4210         IsMenu() added.
4212         * [loader/library.c]
4213         ModuleFirst(), ModuleNext(), ModuleFindName(), ModuleFindHandle()
4214         added.
4216         * [object/gdiobj.c]
4217         IsGDIObject() added.
4219         * [miscemu/int2[56].c]
4220         bugfix: both didn't leave flags pushed on 16bit-stack.
4221         (winfile gets a bit further)
4223         * [miscemu/int16.c]
4224         Added (empty).
4226 Sat Jun 11 22:56:48 1994 Jon Tombs (jon@esix2.us.es)
4227         * windows/event.c:
4228         Added code to drop redundant motion Events in the XEvent queue.
4230 Thu Jun  9 10:55:55 MET DST 1994  Jochen Hein ( Hein@Student.TU-Clausthal.de )
4232         * [misc/main.c misc/message.c include/texts.h]
4233         Removed the text-constants from message.c into variables
4234         which may be changed from X-resources.
4236         * [misc/main.c misc/message.c]
4237         added <locale.h> and setlocale() to main.c, used toupper() in message.c
4239 Mon, 13 Jun 94 09:41:16 -0500 Paul Bramel <paulbr@comm.mot.com>
4241         * controls/button.c ( [CR]B_LButton* ) 
4242         left rc.right at full window width so click on label also 
4243         activates the control (MSWin behavior)
4245 Sat Jun 11 19:05:40 1994  Olaf Flebbe  (flebbe@tat.physik.uni-tuebingen.de)
4247         * include/windows.h:
4248           functions pointers can not be packed.
4249           (annoying warnings with forthcomming gcc-2.6.x)
4250         
4251         * loader/main.c (InitDLL): 
4252           Fixed a printf statement. (for control.exe) 
4254           (InitializeLoadedDLLs): 
4255           deleted shadow definition of  *wpnt.
4256           (Breaks many programs, because now COMMDLG will be
4257            initialized :-(
4259         * windows/win.c (SetWindowText): 
4260           added missing breaks; (PENSATE starts) 
4262         * windows/graphics.c (FloodFill): 
4263           Proper boundarys. (BANGBANG starts) FloodFile_rec should
4264           be rewritten.
4266         * objects/font.c (FONT_GetMetrics): 
4267           TYPO: use font->perchar only if it is defined. (WRITE starts)
4269 Sun June 12, Peter Broadhurst (pbr@ua.nwl.ac.uk)
4270         controls/scroll.c:
4271         Fixes for improved behaviour when dragging thumb;
4272         Added SB_THUMBPOSITION message when thumb is released.
4274 ----------------------------------------------------------------------
4275 Tue Jun  7 08:41:27 1994  Bob Amstadt  (bob@pooh)
4277         * loader/selector.c (FixupFunctionPrologs): 
4278         New function to fixup loaded DLL function prologs.  It replaces the
4279         do nothing code with code that loads DS with the appropriate data
4280         segment for the DLL.
4282         * misc/cursor.c (LoadCursor): 
4283         Disabled cursor loading from .EXE or .DLL.  The code needs to handle
4284         the possibility of multiple cursors in a single directory.  Also,
4285         it should check to see if the cursor is the right size.
4287         * objects/font.c (EnumFonts): 
4288         Checked for lpLogFontList[i] == NULL
4290         * objects/gdiobj.c (SetObjectOwner): 
4291         Removed stub.  Replaced with simple return in gdi.spec.  This
4292         function is not defined for the retail version of Windows.
4294         * memory/heap.c (WIN16_LocalHandleDelta): 
4295         New function.  This is really a dummy that imitates the proper
4296         return values.
4298         * loader/library.c (GetProcAddress): 
4299         Fixed definition of IS_BUILTIN_DLL() macro.
4301 Mon Jun  6 18:15:40 1994  Bob Amstadt  (bob@pooh)
4303         * miscemu/int21.c (SeekFile): 
4304         Needed to return current position in DX:AX.
4306         * windows/utility.c (windows_wsprintf): 
4307         Added support for '#' in format, and fixed bug with "ptr" being
4308         incremented too many times.
4310         * miscemu/int21.c (OpenExistingFile): 
4311         Add code to handle opening files read-only and write-only.
4313         * loader/wine.c:
4314         Segment fixups now done in LoadImage instead of _WinMain.  This
4315         is necessary to support LoadLibrary().
4317 Sun Jun  5 17:34:24 1994  Erik Bos (erik@hacktic.nl)
4319         * [loader/*]
4320                 - fixed: GetModuleHandle() sometimes returned
4321                   a wrong handle.
4322                 - don't init dlls when cs == 0 (lzexpand, doesn't
4323                   seem to have a init function)
4324                 - LoadLibrary & LoadImage now return error instead
4325                   of stopping wine.
4326                 - moved most of NE-functions into one file.
4327                 - LoadLibrary() uses w_files list instead of its
4328                   own list.
4329                 - NE exectables are now fixed-up and initialised when
4330                   loaded instead of only once before calling InitTask.
4332         * [miscemu/int15.c] [miscemu/int31.c]
4333         Added.  
4335         * [loader/selector.c]
4336         Stubs added for {Get|Set}SelectorLimit(), {Get|Set}SelectorBase().
4338         * [misc/main.c]
4339         Stub added for IsRomModule().
4341         * [miscemu/int21.c]
4342         Some cleanup, added heap for returning data.
4344 Jun 6, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4346         * [tools/build.c]
4347         Change MAX_ORDINALS     define to higher value, 1299 entries.
4348         (MMSYSTEM doesn't have succesive numbers, some are around 1200).
4350         * [windows/utility.c]
4351         Bug fix in windows_wsprintf(), (twice increments ...).
4353         * [windows/winpos.c]
4354         Bug fix in SetWindowPos(), redraw was done if flag
4355                 was set to SWP_NOREDRAW while SWP_SHOWWINDOW).
4357         * [misc/message.c] [controls/combo.c]
4358         Add an InvalidateRect() in WM_SHOWWINDOW to statisfy the new 'saveunder'.
4360         * [windows/win.c]
4361         In CreateWindowEx(), do SetMenu() calls after window creation,
4362                 just before sending to WM_NCCALCSIZE.
4364         * [controls/menu.c]
4365         In function SetMenu(), now use SetWindowPos() with 
4366                 flags SWP_FRAMECHANGED to readjust menu area.
4367         Function MenuBarCalcSize() redone.
4369 Sun May 29 11:08:24 1994  David B. Thomas  (dt@yenta.abq.nm.us)
4371         * [objects/text.c]
4372         Fixed problems associated with DT_WORDBREAK flag.  String length
4373         was not being properly decremented when lines were folded, and
4374         wrapping was not performed when DT_NOCLIP and DT_NOPREFIX were
4375         both on in addition to DT_WORDBREAK.  Windows does wrapping in
4376         this case, and now so does wine.
4378 Sun Jun  5 19:17:49 1994  Olaf Flebbe  (olaf@dragon)
4380         * [edit.c]
4381         cp1 was uninitialized iff lineno == 0
4383         *  FindFile tests for existance of file even if a full
4384            filename was supplied. What about unix file names?
4386         * [controls/listbox ]
4387         wndPtr was uninitialized for LB_SETTOPINDEX
4389         * [misc/property.c]     
4390         Do not free lpProp. Is it really allocated by malloc?
4391         {edited by Bob Amstadt: changed free() to GlobalFree()}
4393 ----------------------------------------------------------------------
4394 Sat May 28 12:03:23 1994  Bob Amstadt  (bob@pooh)
4396         * miscemu/int21.c (OpenExistingFile): 
4397         OpenExistingFile needed to return handle in AX register instead
4398         of the BX register.
4400         * miscemu/int21.c (ioctlGetDeviceInfo): 
4401         Added a little code to give a fake result for normal files.
4403 Wed May 25 21:55:38 1994  Bob Amstadt  (bob@pooh)
4405         * [memory/global.c]
4406         return value from GlobalSize was completely wrong.
4408         * [miscemu/int21.h]
4409         fixed bug in FindFirst.  Directory pointer (dp) was not placed in
4410         dta correctly.
4412         * [tools/build.c]
4413         fixed creation of pop.h to guarantee that flags are restored correctly.
4415         * [misc/comm.c]
4416         changed all occurance of strncmp() to strncasecmp().
4417         BuildCommDCB() should not require that OpenComm() be called first.
4419         * [loader/selector.c]
4420         Heap initialized to size of full segment less stack size and 
4421         automatic data size.
4423 Sat May 28 09:14:33 1994  Rick Sladkey  (jrs@world.std.com)
4425         * [controls/listbox.c]
4426         Correct typos in ListBoxResetContent where lpls variable is
4427         used where lsls2 variable is meant.  Don't call USER_HEAP_FREE
4428         twice on the same handle if hData and hMem are the same.
4430         * [debugger/opcodes/i386-dis.c]
4431         Add new name array names_rmw for table driven decoding of the
4432         16-bit mod/rm field.  Omit large case statement in OP_E and
4433         replace with array reference to match existing coding style.
4434         Add new static variable machine with value 286 or 386 to
4435         correctly decode mod/rm field in either 16 or 32 bit modes.
4436         Set it in print_insn_i{2,3}86.  In OP_E use it to decide how
4437         to decode mod/rm.  While the code was correct for 16 bit code,
4438         it was improperly decoding mod/rm fields on word prefixed
4439         32 bit instructions.
4441         * [debugger/debug.l]
4442         Recognize new token ABORT.   Recognize single letters 'p'
4443         and 'q' as tokens.
4445         * [debugger/dbg.y]
4446         Add new token ABORT.  Allow print command to be invoked by
4447         'p' and quit command by 'q', ala GDB.  Change lots of '};'
4448         to just '}'.  Add static dummy_regs to wine_debug so that
4449         wine_debug(0, NULL) doesn't core dump with qmagic.
4451         * [debugger/info.c]
4452         Correct syntax of break command in helptext and omit former
4453         comment about probable bugginess of the disassembly since it
4454         is now correct.  Change fprintf of first backtrace stack
4455         frame to match that of the second and subsequent frames.
4457         * [loader/selector.c]
4458         Change construction of command line in CreatePSP from creating
4459         a string that looks like "arg1 arg2 \r" to "arg1 arg2".  A DOS
4460         PSP command line looks like " arg1 arg2\r" with the length not
4461         including the trailing "\r" but that is not how Windows does it.
4463         * [loader/library.c]
4464         Change uses of %s to print strings in GetModuleHandle to %x so
4465         that string IDs don't cause a core dump with qmagic.  Handle
4466         converting a string id to a literal module handle.  For
4467         example, GetModuleHandle((LPSTR) 0x57) now returns 0x57 if
4468         it is a real module handle.
4470         * [misc/message.c]
4471         In MessageBox, translate a NULL title argument to the string "Error".
4473         * [misc/profile.c]
4474         In GetSetProfile translate a NULL Default argument to "".  Any
4475         caller whose Default argument is NULL is buggy, but CHARMAP does it
4476         anyway.
4478         * [objects/font.c]
4479         Add NULL pointer checks in EnumFontFamilies to prevent core dumps.
4481 Sat May 28 20:01:51 1994 Jon Tombs (jon@gtex02.us.es) 
4483         * New options/resourses nosaveunders and nobackingstore.  By 
4484         default backingstore and saveunders are now enabled, these use 
4485         more memory but avoids those slow (sometimes multiple) redraws 
4486         caused be exposure events.
4488 May 30, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4490         * [misc/driver.c] New file
4491         Skeleton for 'Installable Wine Drivers' functions. :-)
4492         * [misc/audio.c] New file
4493         Skeleton for basic 'Audio Driver' functions.
4494         * [misc/network.c] New file
4495         Stubs for few networking functions.
4497         * [misc/mmsystem.c]
4498         More coding ... a dust in a galaxy ...
4499         * [misc/shell.c]
4500         Some coding for 'RegXXX' functions ... a dust in the wind ...
4502         * [misc/profile.c]
4503         Bug fix in GetSetProfile(), bad enumeration if KeyName == NULL.
4505         * [objects/gdi.c]
4506         New function CreateDiscardableBitmap(), it just calling 
4507         CreateCompatibleBitmap() for now. It's get 'clock.exe' running ! :-)
4509         * [controls/listbox.c]
4510         * [controls/combo.c]
4511         New font member assigned to SYSTEM_FONT as default.
4512         Added processing for WM_SETFONT message;
4515 Tue May 31 20:34:25 EDT 1994  John Richardson <jrichard@cs.uml.edu>
4517         * [windows/event.c]
4518         Added AsyncMouseButtonsStates array for GetAsyncKeyState.
4520         * [windows/keyboard.c]
4521         Implemented beginning of GetAsyncKeyState.
4523 Wed May 25 23:35:03 1994  David Metcalfe <david@prism.demon.co.uk>
4525         * [objects/metafile.c] [include/metafile.h]
4526           [windows/mapping.c] [objects/clipping.c] [objects/bitblt.c]
4527           [windows/dc.c]
4528         Further metafile support.
4530 ----------------------------------------------------------------------
4531 Mon May 23 15:07:36 1994  Bob Amstadt  (bob@pooh)
4533         * [loader/selector.c]
4534         Allocate heap and stack segments as 64k.
4536 Sat May 21 01:15:49 1994  Rick Sladkey  (jrs@world.std.com)
4538         * [loader/selector.c]
4539         Correct typos where memcpy is used instead of memset.
4541         * [loader/resource.c]
4542         Allow for legitimate cases where biSizeImage is 0 in LoadIcon
4543         by calculating the value when the bitmap is not compressed.
4545         * [miscemu/int21.c]
4546         Fix NULL dereference caused by superfluous DOS_closedir in FindNext.
4548         * [loader/resource.c]
4549         New function type_match to handle string resource types as
4550         well as IDs.  In addition, compare only low 4 bits of type_id
4551         when both numbers are IDs so that 0x0002 matches 0x8002.
4552         In FindResourceByNumber and FindResourceByName use type_match
4553         instead of comparing numbers.  In FindResource handle the
4554         "#number" syntax and empty strings in both the resource and
4555         type names.
4557 Mon May 23 00:48:25 1994  Rick Sladkey  (jrs@world.std.com)
4559         * [windows/dialog.c]
4560         Fix inadvertent printing of string IDs as strings.
4562 May 23, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4564         * [controls/menu.c]
4565         New functions GetMenuItemCount(), GetMenuItemID().
4566                 GetMenuString() & HiliteMenuItem().
4567         Bug fix in CheckMenuItem().
4568         Function SetMenu() now make client area recalc if menu removed.
4570         * [windows/winpos.c]
4571         Bug fix in SetWindowPos(), no more XMapping or XConfiguring     of
4572                 windows with initial width or height equal zero.
4574         * [objects/gdiobj.c]
4575         New function EnumObjects(), using new lpPenBrushList buildup
4576                 from calls to new function GDI_AppendToPenBrushList().
4577                 ('pbrush.exe' don't show its face yet ! ... :-( )
4578         New EMPTY STUB for function SetObjectOwner(),
4579                 ('mplayer.exe' call it via GetProcAddress() ...)
4581         * [objects/font.c]
4582         New internal functions ParseFontParms() & InitFontsList().
4583         EnumFonts() & EnumFontFamilies() enumerates fonts (no more dummies).
4584         FONT_MatchFont now make retries to find closest-smallest font.
4585                 ('charmap.exe' can now show the differents fonts available)
4587         * [windows/nonclient.c]
4588         Use small dos OBM_OLD_CLOSE button for MDI windows.
4590         * [windows/graphics.c] [objects/bitmap.c]
4591         Start to remove obsolete globals such XT_screen ...
4593         * [loader/library.c]
4594         Make function GetProcAddress() working also with builtin DLLs.
4596 Tue May 24 20:18:02 1994  Erik Bos (erik@hacktic.nl)
4598         * [if1632/system.spec] [if1632/toolhelp.spec]
4599         system.dll & toolhelp.dll added.
4601         * [loader/library.c]
4602         Modified GetModuleFileName() to return the full
4603         filename.
4604         Added a check to LoadLibrary() to prevent loading
4605         built in dlls. (eg. user.exe)
4606         Added a check to FreeLibrary() to prevent built-in
4607         dlls from being freed.
4608         Modified GetProcAddress() to support builtin dlls.
4610         * [loader/signal.c] [miscemu/int2f.c]
4611         Added => pifedit runs.
4613         * [misc/dos_fs.c]
4614         Added a NULL-ptr check to DOS_closedir().
4616 ----------------------------------------------------------------------
4617 Tue May 17 23:03:16 1994  Bob Amstadt  (bob@pooh)
4619         * [windows/dce.c]
4620         Fixed bug with dce initialization that was causing dialog boxes to not
4621         be displayed.
4623         * [if1632/callback.c]
4624         Better fix for bug found by Martin.
4626 Sat May 14 19:48:39 1994  Rick Sladkey  (jrs@world.std.com)
4628         * [ memory/heap.c ]
4629         Redirect HEAP_ReAlloc calls with NULL argument to HEAP_Alloc.
4631 May 16, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4633         * [objects/font.c]
4634         Make EnumFonts() calling a callback with dummy fonts ... :-)
4636         * [objects/text.c]
4637         Add Empty Stub for ExtTextOut(), which temporarely call Textout().
4639         * [if1632/callback.c]
4640         Temporarely go around bug in CallWindowProc(), you will see printfs.
4642         * [controls/edit.c]
4643         Make EDIT controls focused by a mouse click.
4645         * [misc/property.c]
4646         Bug Fix in function EnumProps(), better use of CallBack16().
4648         * [misc/mmsystem.c]
4649         Basic Skelton's for MCI messages dispatching function.
4651 Sun May 15 16:15:17 1994  Erik Bos (erik@hacktic.nl)
4653         * [windows/utility.c]
4654         Added windows_wsprintf() for the emulator, wsprintf() is
4655         for libwine.
4657 Sat May 14 22:16:40 1994  Rick Sladkey  (jrs@world.std.com)
4659         * [misc/cursor.c]
4660         Fix pointer problems in LoadCursor leading to heap corruption.
4662         *  [ controls/menu.c ]
4663         Fix two NULL dereferencing bugs.
4665 Sun May 15 20:07:48 1994  Rick Sladkey  (jrs@world.std.com)
4667         * [objects/font.c]
4668         Fix NULL pointer dereferencing bug in GetCharWidth.
4670         * [loader/resource.c]
4671         Fix under-allocation of memory in LoadAccelerators.
4673         * [windows/class.c]
4674         Ignore negative sizes for extra fields in RegisterClass.
4676 Sun May 15 06:35:03 1994  David Metcalfe <david@prism.demon.co.uk>
4678         * [objects/metafile.c] [include/metafile.h] [include/windows.h]
4679           [objects/gdiobj.c] [objects/brush.c] [objects/pen.c]
4680           [objects/text.c] [objects/dcvalues.c] [windows/graphics.c]
4681           [windows/dc.c] [windows/mapping.c]
4682         Beginnings of metafile support.
4684         * [misc/file.c]
4685         Corrected spelling of _lcreat.
4687         * [controls/edit.c]
4688         Minor bug fixes.
4689 ----------------------------------------------------------------------
4690 May 9, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4692         * [controls/scroll.c]
4693         Make thumbtrack button disappear if scroll box ratio < 3:1.
4694         Make arrow buttons rectangular if scroll box ratio < 2:1.
4695         Add code for SBS_TOPALIGN, SBS_BOTTOMALIGN, 
4696                                 SBS_LEFTALIGN & SBS_RIGHTALIGN.
4697         Bug fix in NC_CreateScrollBars(), no more bigbutt in calendar.exe... :-)
4699         * [loader/library.c] [loader/task.c] [misc/exec.c]
4700         Continue playing around trying to get a second task running.
4702         * [windows/mdi.c]
4703         Change OBM_CLOSE for OBM_OLD_CLOSE, a smaller dot button when maximized.
4705         * [everywhere]
4706         Adding previous works of the Apr 25, 94.
4708 Tue May 10 18:09:14 1994 Erik Bos (erik@trashcan.hacktic.nl)
4710         * [if1632/mmsystem.spec] [misc/mmsystem.c] [include/mmsystem.h]
4711         Added Martin's mmsystem.dll stubs.
4713         * [misc/sound.c]
4714         Added remaining stubs for sound.dll.
4716         * [if1632/shell.spec] [misc/shell.c]
4717         Fixed prototypes (I found them in BC 4) and added ShellAbout()
4718         and AboutDlgProc().
4720 ----------------------------------------------------------------------
4721 May 1, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4723         * [loader/signal.c]
4724         Add XUngrabPointer() & XUngrabServer() in wine_fault().
4726 Fri Apr 22 19:30:08 1994  Erik Bos (erik@trashcan.hacktic.nl)
4728         * [objects/bitblt.c]
4729         color_stretch() rewritten to use ints only. *fast!*
4730         BLACKONWHITE & WHITEONBLACK stretchmodes redirected to
4731         use color_stretch().
4733 Mon May  2 21:39:43 1994  Erik Bos (erik@trashcan.hacktic.nl)
4735         * [controls/menu.c]
4736         SetSysMenu() added.
4738         * [misc/cursor.c]
4739         GetCursor() added.
4741         * [misc/main.c]
4742         SwapMouseButton() added, (NOP).
4744         * [windows/win.c]
4745         GetDesktopHwnd() added.
4747         * [if1632/*spec]
4748         Added not implemented functions defs as comment.
4750         * [misc/winsocket.c]
4751         Change WSAGetXbyY() functions to non-blocking ones,
4752         Added WSAAsyncSelect(). 
4753         (WSA functions can't be canceled yet).
4755 Wed Apr 20 23:58:58 1994  Scott A. Laird  (scott@curly)
4757         * misc/profile.c: Fixed bug with GetIniFileName returning wrong
4758         path when given a simple file name.  Fixed GetSetProfile to allow
4759         enumerating all key names when KeyName is null.
4761 Apr 25, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4763         * [objects/bitblt.c]
4764         Add protection to BitBlt() & StretchBlt() for width or height = 0.
4766         * [windows/nonclient.c]
4767         Avoid painting in NC_DoNCPaint() if IsWindowVisible().
4768         Simplify NC_TrackMouseMenuBar() because code moved to MenuFocusLoop().
4770         * [windows/win.c]
4771         CreateWindowEx() & DestroyWindow() now call respectively
4772                 AddWindowToTask() & RemoveWindowFromTask().
4773         New empty stub for function AnyPopup().
4775         * [loader/library.c]
4776         Bug Fix : GetModuleFileName() now return full path filename.
4778         * [include/menu.h] [controls/menu.c]
4779         Add hText handle and remove obsolete MENUITEM struct members.
4780         Add a ReleaseCapture() in SetMenu() when menubar changed while captured.
4781         Add MenuMouseMove() MenuButtonUp() in function MenuFocusLoop().
4783         * [misc/file.c]
4784         GetTempFilename() now create a file.
4785         _lcreate() use unix open (name, mode, perm), with perm=O666.
4787         * [if1632/relay.c]
4788         Remove temporarly builtin SHELL.DLL, Add MMSYSTEM.DLL in builtin list.
4790         * New file [misc/mmsystem.c]
4791         * New file [include/mmsystem.h]
4792         * New file [if1632/mmsystem.spec]
4793         Many, many empty stubs ... :-)
4795 ----------------------------------------------------------------------
4797 Wed Apr 20 14:53:35 1994  Bob Amstadt  (bob@pooh)
4799         * [tools/build.c] [if1632/call.S] [if1632/Imakefile]
4800         Fixed bug for non-Linux systems.
4802 Apr 18, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4804         * [windows/win.c]
4805         Bug fixed in CreateWindowEx() : Now use SetMenu() for menubar setup.
4806         New empty stub for function SetSysModalWindow().
4808         * [misc/exec.c]
4809         New empty stub for function ExitWindows().
4811         * [objects/font.c]
4812         New empty stub for function EnumFonts().
4814         * New file [misc/property.c]
4815         New functions RemoveProp(), GetProp(), SetProp() & EnumProps().
4817         * New file [misc/shell.c]
4818         New empty stubs for function RegisterShellProc(), 
4819                         ShellExecute() & ShellProc().
4821         * New files [loader/task.c] & [include/task.h]
4822         Move functions GetWindowTask(), GetNumTask(), EnumTaskWindows()
4823                 from 'loader/library.c'.
4825         * [if1632/user.c] [if1632/kernel.c]
4826         Put Atoms functions entries.
4828         * [controls/combo.c]
4829         New functions DirDlgSelectComboBox() & DirDlgListComboBox().
4831         * [controls/listbox.c]
4832         New functions DirDlgSelect() & DirDlgList().
4834 Sun Apr 17 20:57:59 1994  Erik Bos (erik@trashcan.hacktic.nl)
4836         * [objects/test.c]
4837         GrayString() added.
4839         * [if1632/callback.c]
4840         CallGrayStringProc() added.
4842         * [if1632/relay.c] [if1632/mmsystem.spec]
4843         Added.
4845         * [if1632/kernel.spec] [if1632/user.spec]
4846         Added forgotten specs for atom functions.
4848 ----------------------------------------------------------------------
4849 Tue Apr 12 00:05:31 1994  Bob Amstadt  (bob@pooh)
4851         * misc/spy.c (SpyInit): Added more message types
4853         * [windows/mdi.c] [include/mdi.h]
4854         Maximizing and restoring child windows.
4855         Tiling of child windows.
4857 Mon Apr 11 20:48:28 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
4859         * [windows/winpos.c]
4860         Revert focus and activation to previous window when hiding a window.
4862         * [windows/syscolor.c]
4863         Implemented system color objects (brushes and pens created at
4864         SetSysColor() time for better performance).
4866         * [windows/graphics.c] [windows/nonclient.c] [controls/button.c]
4867         Changed painting code to use system color objects.
4869         * [windows/message.c]
4870         New function MSG_InternalGetMessage() for internal messages
4871         loops (e.g. for dialogs or menus).
4873         * [windows/hook.c] [include/hook.h]  (New files)
4874         Beginning of the window hooks implementation.
4876         * [windows/dialog.c]
4877         Use new function MSG_InternalGetMessage() in DialogBox().
4879         * [if1632/callback.c]
4880         Added function CallHookProc().
4882 Apr 11, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4884         * [windows/event.c]
4885         Bug fix : WM_CHARs are sent to focused window like WM_KEY???.
4887         * [misc/exec.c]
4888         Nothing much more than a stub for LoadModule(), I saw there a lot
4889                 to be done in that corner, I will come back later ...
4891         * [loader/library.c]
4892         New functions GetWindowTask(), GetNumTask(), EnumTaskWindows() 
4893                         and associated modules & tasks linked-lists.
4894         (it's only an 'emerging bud', more to come next weeks).
4896         * [loader/wine.c]
4897         Use LoadLibrary() instead of LoadImage() for 'sysres.dll'.
4899         * [control/menu.c]
4900         You can now click outside menu region without problem.
4901         Keyboard navig more smootly, even if a child has the focus.
4902         Bug fix in InsertItem(), (bad linklist when insert point not found).
4903         change Realloc for Free & Alloc in ModifyItem().
4904         MF_STRING now set BLACK_PEN to fix bug of bad color of the underscores 
4905                 done by DrawText(), (maybe it should done in DrawText() itself ?).
4907 Sun Apr 10 14:06:08 1994  Erik Bos (erik@trashcan.hacktic.nl)
4909         * [misc/profile.c]
4910         .INI files will now be stored in / loaded from the windows dir
4911         if no path is supplied.
4913         * [if1632/kernel.spec]
4914         Fixed GetDriveType's prototype.
4916         * [if1632/winsock.spec] [include/winsock.h] [misc/winsocket.c]
4917         Fixed prototypes: winsock uses a word as socket handle not an int.
4919         * [misc/winsocket.c]
4920         Added heap allocation for returned structures.
4921         Added non-blocking WSAAsyncGetXbyY() functions as blocking ones.
4923         * [loader/wine.c]
4924         Added IsDLLLoaded(), used in LoadImage() to prevent loading
4925         a dll multiple times.
4926         Directory is added to wine's path when a fullpath is supplied when
4927         starting wine.
4928         LoadImage(): DLL filename used instead DLL's own internal name,
4929         fixes 'Bad DLL name' errors.
4931 Sat Apr  9 08:26:03 1994  David Metcalfe <david@prism.demon.co.uk>
4933         * [controls/edit.c] [controls/widgets.c]
4934         First release of edit control.
4936 ----------------------------------------------------------------------
4937 Tue Apr  5 14:36:59 1994  Bob Amstadt  (bob@pooh)
4939         * [include/mdi.h] [windows/mdi.c]
4940         Use WM_PARENTNOTIFY messages to activate children.
4941         Generate WM_CHILDACTIVATE messages.
4942         Beginnings handler for maxmized child window.
4943         Clean up when children are destroyed.
4945         * [windows/message.c] [windows/nonclient.c] [windows/winpos.c]
4946         Removed code add 94/03/26.
4948 Apr 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4950         * [control/menu.c]
4951         Make mouse menu navigation working again. :-))
4952         (be carefull, clicking outside menus (ie.: clientrect) 
4953         not resolved yet)
4955         * [windows/nonclient.c]  [controls/scroll.c]
4956         Bugs fix in NCTrackScrollBars().
4958         * [misc/dos_fs.c]
4959         Bug fix in 'ToDos()' in conversion for '/',
4960                 (example: '/window/' was translated to 'WINDOWs').
4962         * [miscemu/int21.c]
4963         Function ChangeDir() extract possible drive before DOS_ChangeDir().
4965         * [loader/library.c]  [loader/wine.c]
4966         Playing around moving function GetProcAddress() and put some code in.
4968 Mon Apr  4 21:39:07 1994  Alexandre Julliard (julliard@lamisun.epfl.ch)
4970         * [misc/main.c]
4971         Better explanation of command-line options.
4973         * [objects/dib.c]
4974         Implemented SetDIBitsToDevice().
4976         * [windows/dc.c]
4977         Bug fix in SetDCState().
4979         * [windows/event.c]
4980         Removed WS_DISABLED handling (now done in message.c).
4982         * [windows/message.c]
4983         Added sending a WM_PARENTNOTIFY message in MSG_TranslateMouseMsg().
4984         Use WindowFromPoint() to find the window for mouse events, taking
4985         into account disabled windows.
4987         * [windows/painting.c]
4988         Bug fix in BeginPaint() to allow calling it at other times than
4989         on WM_PAINT (Solitaire needs it...)
4991         * [windows/win.c]
4992         Implemented FindWindow().
4993         Rewritten EnableWindow() to behave more like Windows.
4995         * [windows/winpos.c]
4996         Rewritten WindowFromPoint() to also search child windows.
4998 Mon Apr  4 17:36:32 1994  Erik Bos (erik@trashcan.hacktic.nl)
5000         * [include/int21.h] -> [msdos.h]
5001         renamed.
5003         * [miscemu/int10.h] [miscemu/int25.h] [miscemu/int26.h] 
5004         new, added for int 10, 25 and 26.
5006         * [miscemu/ioports.c]
5007         new, added to allow win apps to use ioports.
5009         * [loader/signal.c]
5010         Added support for in, inb, out, outb instructions.
5012 ----------------------------------------------------------------------
5013 Sun Mar 27 13:40:25 1994  Bob Amstadt  (bob@pooh)
5015         * controls/menu.c (InsertMenu): Changed to use FindMenuItem().
5017 Sat Mar 26 21:23:55 1994  Bob Amstadt  (bob@pooh)
5019         * [windows/mdi.c]
5020         Window list properly updated.
5022         * [windows/message.c]
5023         Call WINPOS_ChildActivate() when mouse pressed.
5025         * [windows/nonclient.c]
5026         Use WINPOS_IsAnActiveWindow() instead of GetActiveWindow() in
5027         NC_HandleNCPaint().
5029         * [windows/winpos.c]
5030         Created functions WINPOS_IsAnActiveWindow() and WINPOS_ActivateChild()
5032 Thu Mar 24 14:49:17 1994  Bob Amstadt  (bob@pooh)
5034         * controls/menu.c (DeleteMenu): Changed to use FindMenuItem
5035         (DeleteMenu): Many bug fixes.
5037         * [controls/menu.c]
5038         Created function FindMenuItem().
5040 Thu Mar 24 14:17:24 1994  Bob Amstadt  (bob@pooh)
5042         * [windows/win.c]
5043         Removed incorrect MDI handling code from CreateWindowEx().
5045         * [controls/menu.c]
5046         MF_STRING items needed to allocate a private copy of string.
5048         * [controls/menu.c]
5049         Fixed buggy calls to GlobalFree().
5051         * [memory/global.c]
5052         Eliminated some redundant code with function call.
5054 Wed Mar 23 1994 Pentti Moilanen (pentti.moilanen@ntc.nokia.com)
5056         * [windows/timer.c]
5057         timer list pointers looped in InsertTimer
5059 Tue Mar 29 13:32:08 MET DST 1994  julliard@di.epfl.ch (Alexandre Julliard)
5061         * [misc/cursor.c]
5062         A few changes for desktop window support.
5064         * [misc/main.c]
5065         Added -depth option.
5067         * [misc/rect.c]
5068         Yet another bug fix in SubtractRect().
5070         * [objects/bitmap.c]
5071         Changes to use only one depth (specified with -depth)
5072         for color bitmaps.
5074         * [objects/brush.c]
5075         Added support for dithered solid brushes.
5077         * [objects/color.c]
5078         Use the same 20 system colors as in Windows.
5079         System palette initialisation now done in COLOR_InitPalette().
5080         Added support for a color mapping table to map logical color
5081         indexes to X colormap entries.
5082         Implemented GetNearestColor() and RealizeDefaultPalette().
5084         * [objects/dib.c]
5085         Added support for color mapping table.
5087         * [objects/dither.c]  (New file)
5088         Implemented solid color dithering.
5090         * [objects/palette.c]
5091         Implemented GetSystemPaletteEntries() and SelectPalette().
5093         * [windows/class.c]
5094         Make a copy of the menu name in RegisterClass().
5096         * [windows/dc.c]
5097         Fixed device caps when using a desktop window.
5098         Added support for the color mapping table in DCs.
5100         * [windows/event.c]
5101         Added ConfigureNotify handler on desktop window.
5103         * [windows/message.c]
5104         Removed call to XTranslateCoordinates() on every mouse motion
5105         New function MSG_Synchronize() to synchronize with the X server.
5107         * [windows/syscolor.c]
5108         Rewritten SYSCOLOR_Init() to read the system colors from WIN.INI.
5110         * [windows/winpos.c]
5111         Added synchronization on window mapping. Solves the double redraw
5112         problem when starting Solitaire.
5114 Mar 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5116         * [control/menu.c]      * [windows/defwnd.c]
5117         Make keyboard navigation working with menubar,
5118         but temporarely inserted a bug in menubar mouse handling ... :-((
5119         (it will be fix next week !)
5121         * [windows/defwnd.c]
5122         Connect VK_MENU to menubar navigation.
5124         * [loader/library.c]
5125         GetModuleHandle() return 'fictive 0xF000+ handles' for built-in DLLs.
5127 Sun Mar 20 22:32:13 1994 Erik Bos (erik@trashcan.hacktic.nl)
5129         * [misc/main.c]
5130         Added Copy(). Added a check for `-h' to show usage.
5132         * [misc/dos_fs.c]
5133         Fixed bug in FindFile(), to load directories as dlls.
5135         * [misc/dos_fs.c]
5136         Fixed ToUnix() and ToDos() again, as my previous patch
5137         didn't make it.
5139         * [misc/dos_fs.c] [miscemu/int21.c]
5140         Bug fixes, should be able to handle all winfile and progman int21
5141         requests now except for a few small things.
5143 Tue Mar 29 06:25:54 1994  crw@harris.mlb.semi.harris.com (Carl Williams)
5145         * [memory/heap.c]
5146         Implemented GetFreeSystemResources().
5148 ----------------------------------------------------------------------
5149 Mon Mar 21 17:32:25 1994  Bob Amstadt  (bob@pooh)
5151         * controls/menu.c (GetSubMenu): Function did not return correct value
5153         * [windows/mdi.c]
5154         Beginnings of menu handling.
5156 Thu Mar 10 11:32:06 1994  Stefan (SAM) Muenzel  (muenzel@tat.physik.uni-tuebingen.de)
5158         * [objects/font.c]
5159         if font.width equals zero use asterix instead.
5161 Mon Mar 21 17:23:37 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
5163         * [objects/bitmap.c]
5164         Rewritten bitmap code to use exclusively X pixmaps; *much* faster.
5166         * [objects/brush.c]
5167         Some changes with pattern brushes because of the new bitmap code.
5169         * [objects/color.c]
5170         Added function COLOR_ToPhysical for better color mapping.
5172         * [objects/dib.c]
5173         Heavily optimized SetDIBits().
5175         * [windows/dc.c]
5176         Opimized SetDCState() and DC_SetupGC*() functions.
5177         Added stub for CreateIC().
5179 Mar 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5181         * [misc/message.c]
5182         Call SetFocus() after closing box to give back focus to previous owner.
5184         * [misc/files.c]
5185         Small bug fix in GetTempFilename() : replace a '\' to '\\'.
5187         * [control/scroll.c]
5188         Calls to BitBlt() replace by StretchBlt().
5190         * [control/menu.c]
5191         Call SetFocus() to previous owner after closing Popups. 
5192         Fill stub DeleteMenu().
5194         * [control/listbox.c]
5195         * [control/combo.c]
5196         Use SetFocus() in WM_LBUTTONDOWN.
5197         Close ComboBox List upon WM_KILLFOCUS.
5198         Early development of WM_MEASUREITEM mecanism.
5200         * [windows/defwnd.c]
5201         Early development of WM_MEASUREITEM mecanism.
5203 Tue Mar 22 10:44:57 1994  Miguel de Icaza  (miguel@xochitl)
5205         * [misc/atom.c]
5206         Fixed sintaxis problem when building the library.
5208 ----------------------------------------------------------------------
5209 Tue Mar 15 13:11:56 1994  Bob Amstadt  (bob@pooh)
5211         * [include/windows.h]
5212         Added message types and structures for MDI
5214         * [include/mdi.h]
5215         Created internal structures for handling MDI
5217         * [windows/mdi.c]
5218         Began creating MDI support
5220 Thu Mar 10 16:51:46 1994  Bob Amstadt  (bob@pooh)
5222         * [loader/wine.c] [include/wine.h]
5223         Added new field to "struct w_files" to hold the "name table"
5224         resource for Windows 3.0 programs
5226         * [loader/resource.c]
5227         Added code to handle programs with a "name table" resource.
5228         LoadResourceByName() modified to check for the existence of
5229         this resource.
5231 Mon Mar 14 22:31:42 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
5233         * [objects/color.c]
5234         Added installing the private colormap on the desktop window.
5236         * [windows/event.c]
5237         Cleaned up focus event handling (see focus.c).
5238         Use GetFocus() to direct key events to the correct window.
5240         * [windows/focus.c]
5241         Rewritten SetFocus() to:
5242         - only set X focus on top-level windows
5243         - send WM_SETFOCUS and WM_KILLFOCUS messages (was done in event.c)
5244         - prevent setting focus to disabled windows
5245         - install private colormap so -privatemap option works again
5247         * [windows/message.c] [windows/timer.c]
5248         Changed timer management to no longer use PostMessage(), but
5249         to generate timer messages on the fly. Also fixed a related bug
5250         in GetMessage() which could cause busy-waiting.
5252         * [windows/win.c]
5253         Only select focus events on top-level windows.
5255         * [windows/winpos.c]
5256         Added some sanity checks for desktop window.
5258 Fri Mar  4 20:42:01 1994  Erik Bos (erik@trashcan.hacktic.nl)
5260         * [misc/dos_fs.c]
5261         bug fixes in ToUnix(), WinIniFileName(), GetUnixFileName(). 
5262         Support for tilde symbol added for rootdirectories in [drives]
5263         section of wine's configfile.
5265         * [misc/file.c]
5266         hread(), hwrite() added.
5268         * [misc/main.c]
5269         hmemcpy() added.
5271         * [if1632/stress.spec] [include/stress.h] [misc/stress.c]
5272         Added STRESS.DLL, an useless dll used to stress a windows system.
5274         * [*/*]
5275         Added missing #includes, fixed prototypes for prototype checking.
5277         * [include/prototypes.h]
5279         Added prototypes for loader/*c, if1632/*c.
5281 ----------------------------------------------------------------------
5282 Tue Mar  8 09:54:34 1994  Bob Amstadt  (bob@pooh)
5284         * [Configure]
5285         Added reminder to set WINEPATH, if it is not set.
5287         * [Imakefile]
5288         Removed #elif's
5290         * [controls/button.c]
5291         Added BN_CLICKED notification for owner-draw buttons.
5293         * [if1632/kernel.spec] [memory/heap.c]
5294         Changed Local* functions to WIN16_Local* to prevent unconcious use
5295         of these functions.
5297         * [if1632/relay.c]
5298         Push old Stack16Frame on stack before setting.
5300         * [include/atom.h] [misc/atom.c] [include/heap.h] [memory/local.c]
5301         Added multiple local heap handling in Atom* functions.
5303         * [include/regfunc.h] [miscemu/int21.c]
5304         Rewrote DOS3Call() use context frame that is already on the stack.
5306         * [misc/profile.c]
5307         Fixed to allow leading ";" to mark comments.
5309         * [misc/spy.c]
5310         Fixed bugs and added support for "include" and "exclude" filters.
5312         * [misc/user.c]
5313         Rearranged calls in InitApp().
5315         * [misc/font.c]
5316         Fixed font handling to create system fonts, if they are used.
5318         * [windows/dc.c]
5319         If text drawn on window with no font specified, then default the
5320         font to the system font.
5322 Mon Mar  7 20:32:09 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
5324         * [controls/desktop.c]
5325         Added handling of WM_NCCREATE and WM_ERASEBKGND functions.
5326         Implemented SetDeskPattern().
5328         * [misc/main.c]
5329         Added -desktop option to get a large desktop window with
5330         everything inside it.
5331         Added -name option.
5333         * [misc/rect.c]
5334         Bug fix in SubtractRect().
5336         * [objects/*.c]
5337         Replaced the DefaultRootWindow() macro by the rootWindow variable.
5339         * [windows/event.c] [windows/message.c]
5340           [windows/nonclient.c] [windows/win.c]
5341         A few changes to accomodate the new desktop window.
5343  Tue Mar  8 11:13:03 1994  Miguel de Icaza  (miguel@xochitl.nuclecu.unam.mx)
5345         * [toolkit/arch.c] --New file-- 
5346         Routines for converting little endian data structures to
5347         big-endian data structures, currently only BITMAP structures are 
5348         converted.
5350         * [misc/atom.c]
5351         When used as part of the WineLib, the code is much simpler.
5352         Doesn't depend on alignement.
5354         * [loader/wine.c]
5355         Ifdefed Emulator dependent code if compiling WineLib.
5357         * [loader/resource.c]
5358         Moved misc/resource.c to loader/resource.c.
5360         * [loader/dump.c,ldt.c,ldtlib.c,library,c,selector.c,signal.c]
5361         Ifdefed whole code if compiling WINELIB.
5363         * [include/winsock.h]
5364         Added compilation define to allow compilation on SunOS.
5366         * [include/wine.h]
5367         Removed load_typeinfo and load_nameinfo prototypes, they belong
5368         to neexe.h
5370         * [include/neexe.h]
5371         Added load_typeinfo and load_nameinfo prototypes.
5373         * [include/arch.h]
5374         Fixed some bugs in the conversion routines.
5375         Added macros for Bitmap loading.
5377 Tue Mar  8 12:52:05 1994  crw@maniac.mlb.semi.harris.com (Carl Williams)
5378         
5379         * [if1632/kernel.spec] [memory/global.c]
5380         Implemented GetFreeSpace()
5382         * [if1632/user.spec] [loader/resource.c]
5383         Implemented CreateIcon()
5385 ----------------------------------------------------------------------
5386 Tue Mar  1 11:30:21 1994  Bob Amstadt  (bob@pooh)
5388         * [Configure] [*/Imakefile]
5389         Created configure script to handle different types of Wine builds.
5391         * [Configure] [tools/build.c] [if1632/Imakefile] [Wine.tmpl]
5392         Added ability to compile Wine on systems with 14-char filename limit.
5394         * [if1632/relay.c] [include/options.h] [misc/main.c]
5395         Added -relaydbg option to command line if DEBUG_RELAY is defined.
5397         * [loader/selector.c]
5398         Fixed bug in GetEntryDLLName() that caused Wine to seg fault.
5400         * [memory/heap.c]
5401         Fixed LocalInit() to work correctly.
5403         * [misc/user.c]
5404         Added code to call loaded DLLs' initialization routines.
5406 Tue Mar  1 01:01:17 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
5408         * [windows/dce.c]
5409         Added clipping of child windows by their parent's client area.
5411         * [windows/nonclient.c]
5412         Bug fix in NC_DoNCPaint().
5414         * [windows/painting.c]
5415         Bug fix in RedrawWindow().
5417 Feb 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5419         * [mem/atom.c]
5420         Bug fix again in ATOM_DeleteAtom() : 
5421                 change LocalFree() by USER_HEAP_FREE().
5422         (Previous patch done Feb 13th had been lost)
5424         * [controls/scroll.c]
5425         Move bitmaps loading in AllocScrollBar() instead of in WM_CREATE.
5427         * [windows/class.c] (sorry Alex ...)
5428         There was no bug there "in RegisterClass() : 
5429                 WNDCLASS->lpszClassName was reset to NULL."
5430                               ^^^^^
5432         * [misc/clipboard.c]    --- New File ---
5433         New function EnumClipboardFormats().
5434         New function OpenClipboard().
5435         New function CloseClipboard().
5436         New function EmptyClipboard().
5437         New function GetClipboardOwner().
5438         New function GetClipboardViewer().
5439         New function CountClipboardFormats().
5440         New function IsClipboardFormatAvailable().
5441         New function OpenClipboard().
5442         New function GetClipboardData().
5443         New function SetClipboardViewer().
5444         New function EnumClipboardFormats().
5445         New function RegisterClipboardFormat().
5446         New function ChangeClipboardChain().
5447         New function SetClipboardData().
5448         New function GetOpenClipboardWindow().
5449         New function GetPriorityClipboardFormat().
5450         New function GetClipboardFormatName().
5452 Tue Mar  1 20:15:45 1994  Erik Bos <erik@trashcan.hacktic.nl>
5454         * [misc/comm.c]
5455         bugfix in OpenComm().
5457 ----------------------------------------------------------------------
5458 Tue Feb 22 18:04:02 1994  Jeffrey Hsu <hsu@freefall.cdrom.com>
5460         * [include/winsock.h]
5461         The sockproto struct is already defined in <sys/socket.h>
5463         * [misc/winsock.c]
5464         Need to include <netinet/in.h> for struct in-addr.
5465         Use sys_errlist[] instead of strerror[].
5467         *[toolkit/heap.c]
5468         ANSI C specifies that the malloc functions are defined in stdlib.h,
5469           so we don't need to include malloc.h.
5471         *[loader/ldtlib.c]
5472         Print informative error message about probable cause of i386_set_ldt()
5473           failure and then exit.
5475         *[Imakefile]
5476         For systems that don't use gmake by default, set the MAKE variable
5477           to gmake and propagate it on recursive makes.
5478         Take out -li386 for FreeBSD systems and define __FreeBSD__ so Wine
5479           can be built with the FreeBSD 1.0.2 compiler.
5481 Tue Feb 22 02:52:19 EST 1994    jrichard@cs.uml.edu (John Richardson)
5483         * [objects/bitblt.c]
5484         Added in three functions to do stretching and compression
5485         for WHITEONBLACK, BLACKONWHITE, and color copies.
5487 Tue Feb 22 15:01:31 EST 1994    jrichard@cs.uml.edu (John Richardson)
5489         * [windows/graphics.c]
5490         Added FloodFill and FloodFill_rec.  FloodFill_rec is pretty
5491         inefficent, but should suffice for now.
5493         * [include/windows.h]
5494         Changed the x,y paramaters for the FloodFill prototype 
5495         from ints to shorts
5497 Tue Feb 22 00:58:28 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
5499         * [windows/widgets.c]
5500         Added desktop window class.
5502         * [windows/painting.c]
5503         Bug fix in RedrawWindow().
5504         Implemented ExcludeUpdateRgn().
5506         * [windows/win.c] [windows/winpos.c]
5507         Implemented desktop window.
5509         * [controls/desktop.c]
5510         Preliminary desktop window procedure.
5512 Feb 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5514         * [controls/menu.c]
5515         New function LoadMenuIndirect().
5516         New function GetMenuCheckMarkDimensions().
5518         * [if1632/user.spec]
5519         Entry for DefDlgProc().
5521         * [windows/class.c]
5522         Fix bug in RegisterClass() : 
5523                 WNDCLASS->lpszMenuName was reset to NULL.
5525         * [windows/win.c]
5526         In CreateWindowEx(), if hMenu == 0 then use 
5527                 wndclass->lpszMenuName to load Menu from resource;
5529 Mon Feb 21 22:38:28 1994 Erik Bos (erik@trashcan.hacktic.nl)
5531         * [loader/library.c] [loader/wine.c]
5532         Fixed runing DLL's as main executable problem.
5534         * [misc/dos_fs.c]
5535         Added wildcard support in DOS_readdir().
5537         * [misc/winsocket.c]
5538         Added proper error handling of BSD winsocket functions.
5540         * [miscemu/int21.c]
5541         KERNEL_DOS3Call renamed to DOS3Call and modified to use do_int21().
5543         * [main/main.c]
5544         Added functions for GetVersion, GetWinFlags and GetTimerResolution
5545         for libwine.a, SystemParametersInfo() partly implemented.
5547 Tue Feb 22 19:00:02 1994  Miguel de Icaza  (miguel@xochitl.nuclecu.unam.mx)
5549         * [toolkit/winmain.c]
5550         Added _WinMain function. Setups the library (calls USER_InitApp).
5552         * [toolkit/sup.c]
5553         Added load_mz_header, load_ne_header, load_type_info and
5554         load_name_info functions.
5556         * [toolkit/heap.c] 
5557         Code cleanup. 
5559         * [misc/user.c]
5560         Moved from loader/misc.c. I hope to put back all the loader
5561         functions in the ~loader subdirectory in the future. CUrrently is
5562         needed since it has USER_InitApp.
5564         * [misc/resource.c]
5565         Since WineLib will probably need DLLs (currently it needs
5566         Sysres.dll). WineLib will be using much code of the loader again.
5567         So I removed some ifdefs that were used by WineLib.
5569         Added load_typeinfo and load_nameinfo (and the corresponding
5570         functions in [toolkit/sup.c]
5572         Added integer convertion functions in the needed places.
5574         Added very ugly patch (includes wine.c). In the next release I
5575         plan to move back all the loader routines to ~/loader. In the
5576         meantime I needed this patch. It doesn't affect any of the
5577         emulator code (its ifdefed for WineLib).
5579         * [misc/main.c]
5580         Cleaned up call to WinMain (now uses [toolkit/winmain.c]
5581         Ifdefed argument number checking when compiling the library.
5583         * [loader/wine.c]
5584         Modified to use load_(mz|ne)_header instead of doing a direct
5585         read.  When compiling the emulator it still uses the direct read
5586         for performance. 
5588         * [include/wine.h]
5589         Prototypes for loading routines.
5591         * [include/class.h]
5592         Added WINE_PACKED macro instead of __attribute__ ((packed))
5594         * [include/arch.h]
5595         Macros for converting integers (Little endian to big-endian).
5596         Needed in the Sun to allow loading of DLL files.
5598 ----------------------------------------------------------------------
5599 Mon Feb 14 23:48:09 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
5601         * [windows/clipping.c]
5602         Moved everything into windows/painting.c and removed this file.
5604         * [windows/message.c]
5605         Removed calls to memmove() in MSG_RemoveMsg().
5607         * [windows/nonclient.c]
5608         Added WM_GETMINMAXINFO support for window resizing.
5610         * [windows/painting.c]
5611         Implemented RedrawWindow().
5613         * [windows/scroll.c]
5614         Bug fix in ScrollWindowEx().
5616         * [windows/win.c]
5617         Moved UpdateWindow() to windows/painting.c.
5619 Fri Feb 11 12:41:28 1994  Erik Bos (erik@trashcan.hacktic.nl)
5620         
5621         * [loader/wine.c] [misc/dos_fs.c]
5622         getenv() eq NULL bugfixes.
5624         * [misc/comm.c]
5625         cfmakeraw changed for SunOS.
5627 Feb 13, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5629         * [mem/atom.c]
5630         Bug fix in ATOM_DeleteAtom() : 
5631                 change LocalFree() by USER_HEAP_FREE().
5633         * [misc/message.c]
5634         New function FatalAppExit().
5636         * [objects/font.c]
5637         New empty stub SetMapperFlags().
5639         * [controls/menu.c]
5640         Better CheckMark & other bitmaps placement.
5642         * [windows/graphics.c]
5643         New function RoundRect() : calc.exe now working...
5645 Tue Feb 15 14:29:37 1994  John Richardson
5647         * [objects/bitblt.c]
5648         Fixed StretchBlt so it works quicker and faster.  It still doesn't
5649         use the StretchMode bits for bitmap compression, but that will
5650         come soon.
5652 Mon Feb 14 13:21:04 1994  Miguel de Icaza  (miguel@roxanne.nuclecu.unam.mx)
5654         * [include/windows.h,dialog.h,gdi.h]
5655         Changed __atribute__ ((packed)) for WINE_PACKED. 
5656         When compiling the library this is defined as nothing. This gets
5657         rid with all the problems compiling under SunOS. Also 
5659         * [windows/utility.c]
5660         Added DebugPrintString.
5662         * [toolkit/sup.c]
5663         Added hSysRes = 1 definition to resolve externals.
5664         Added CallLineDDAProc function (toolkit version).
5665         Added toy, and hi ineficient memmove until code in message.c get
5666         rewritten.
5668         * [objects/gdiobj.c]
5669         Ifdefed linux/emulator-dependent code to allow compilation of
5670         WineLib.
5672         * [misc/winsocket.c]
5673         Added ifdef to allow compilation under SunOS.
5675         * [misc/resource.c]
5676         When compiling the library, the resource file is expected to be in
5677         a file called $argv[0].Res. Also the information of the resource
5678         is expected to be at offset 0 of the .Res file.
5680         * [misc/main.c]
5681         Call WinMain with arguments if compiling WineLib.
5682         Call shutdown functions (Comm_DeInit, DOS_DeInitFS).
5683         Call sync_profiles to preserve changes to .INI files.
5685         * [misc/comm.c,dos_fs.c]
5686         removed call to atexit(Comm_DeInit)
5687         removed call to atexit(DOS_DeInitFS)
5688         Shutdown functions are now called from the return of WinMain
5690         * removed memorylib subdirectory
5692         * moved memory/atom.c    to misc/atom.c
5693           moved memorylib/heap.c to toolkit/heap.c
5695         * [loader/wine.c]
5696         Moved DebugPrintString to windows/utility.c
5698         * [include/winsock.h]
5699         Define SO_DONTLINGER only if it has not been previously defined.
5701         * [include/windows.h]
5702         added definition for DLGPROC.
5703         added definition for LMEM_WINE_ALIGN and other LMEM_* constants.
5704         When compiling WineLib WNDPROC is defined with all the parameters
5705         to avoid compilation problems.
5707         * [include/user.h]
5708         When compiling WineLib USER_HEAP_(ALLOC|REALLOC|ADDR|FREE) the
5709         calls are translated to the library allocation routines.
5711         * [include/gdi.h,user.h]
5712         When compiling WineLib GDI_HEAP_(ALLOC|ADDR|FREE) the calls are
5713         translated to the library allocation routines.
5715         * [include/atom.h]
5716         Defined LocalAlign. When compiling the emulator it's translated as
5717         a call to LocalAlloc (the original code), when compiling WineLib
5718         as a call to LocalAlloc with a WINE-flag called LMEM_WINE_ALIGN
5719         (atom.c needs aligned data on a 4 byte boundary).
5721         * [misc/file.c]
5722         Renamed KERNEL_* functions and fixed prototypes.
5724         * [if1632/kernel.spec]
5725         Renamed KERNEL_* functions in order to be used by applications
5726         using Wine as a library (OpeFile, _lclose, _lread, _lcreate,
5727         _llseek, _lopen, _lwrite).
5729         * [Makefile]
5730         Create library instead of executable when building target
5731         libwine.a 
5733 ----------------------------------------------------------------------
5734 Tue Feb  8 13:52:11 1994  Miguel de Icaza  (miguel@roxanne)
5736         * [Makefiles]
5737         Use $(CC) instead of cc.
5738         Added libwine target.
5740         * [include/prototypes]
5741         #ifdefed section for WineLib
5743         * moved loader/cursor.c   to misc/cursor.c
5744           moved loader/resource.c to misc/resource.c
5745           moved misc/emulate.c    to miscemu/emulate.c
5746           moved misc/int1a.c      to miscemu/int1a.c
5747           moved misc/int21.c      to miscemu/int21.c
5748           moved misc/kernel.c     to miscemu/kernel.c
5749           moved misc/user.c       to miscemu/user.c
5751         * [memorylib/heap.c]
5752         Heap management for WineLib
5754         * [misc/comm.c]
5755         Modified to allow compilation under SunOS (#include errno, SunOS
5756         doesn't have atexit ()).
5758         * [misc/dos_fs.c]
5759         Modified to allow compilation under SunOS (#include vfs.h)
5761         * [misc/file.c]
5762         Modified to allow compilation under SunOS (OPEN_MAX constant,
5763         #include unistd.h)
5765         * [objects/palette.c]
5766         Modified to allow compilation under SunOS (#include limits)
5768         * [toolkit/sup.c]
5769         WineLib version of CallWindowProc.
5771         * [windows/event.c]
5772         Typedef XPointer under X11R4 (OpenWindows).
5774         * [windows/win.c]
5775         When compiling WineLib, use direct callbacks instead of the
5776         windows supplied callbacks.
5778 Mon Feb  7 22:37:34 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
5780         * [loader/cursor.c]
5781         New function CURSOR_SetWinCursor(), for internal use, to set
5782         the cursor of a specific window more reliably than with SetCursor().
5784         * [windows/nonclient.c]
5785         Better window management. Moving and resizing from the system
5786         menu should work now.
5787         Added scroll-bar mouse tracking.
5789         * [windows/win.c]
5790         Moved scroll-bar creation and destruction to defwnd.c.
5792 Feb 5, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5794         * [windows/nonclient.c]
5795         Call to StdDrawMenuBar() during NC's drawing.
5796         New NC_TrackMouseMenuBar() function which call 
5797                 MenuButtonDown(), MenuButtonUp() & MenuMouseMove().
5799         * [controls/menu.c]
5800         New ChangeMenu() function.
5801         Remove permanently old Xt menu code.
5802         Make common functions MenuButtonDown(), MenuButtonUp()
5803                 & MenuMouseMove() for both popups & menubar.
5804         
5805         * [controls/combo.c]
5806         Paint OBM_COMBO directly in combo client.
5808         * [controls/listbox.c]
5809         Fix bug in multicolumns calculations.
5811         * [controls/Makefile]
5812         Remove rules for old file 'caption.c'.
5814         * [misc/kernel.c]
5815         Remove empty stub GetModuleFileName().
5817         * [loader/library.c]
5818         New GetModuleHandle() function.
5819         New GetModuleUsage() function.
5820         New GetModuleFileName() function.
5822         * [loader/resource.c]
5823         Try to find the bug a missing menu loading ... Not found yet !
5825         * [windows/win.c]
5826         Remove old menubar creation.
5828 Thu Feb  3 22:30:11 1994  Erik Bos (erik@trashcan.hacktic.nl)
5830         * [misc/winsocket.c]
5831         More functions added.
5833         * [if1632/winsock.spec] [misc/winsocket.c]
5834         Added John Brezak's winsock.dll stuff.
5836 ----------------------------------------------------------------------
5837 Tue Feb  1 21:14:47 1994  Bob Amstadt  (bob@pooh)
5839         * [loader/selector.c]
5840         Added function CreateNewSegments().  Modified IPCCopySelector
5841         to allow aliasing to any arbitrary memory space.
5843         * [memory/global.c]
5844         Fixed potential bug in GlobalGetFreeSegments().
5846         * [memory/linear.c]
5847         Created functions GlobalLinearLock() and GlobalLinearUnlock().
5849 Tue Feb  1 05:51:43 1994  julliard@di.epfl.ch (Alexandre Julliard)
5851         * [controls/widgets.c]
5852         Removed CAPTION window class.
5854         * [loader/cursor.c]
5855         Bug fix in LoadCursor(): don't allocate memory every time for
5856         built-in cursors.
5858         * [windows/clipping.c]
5859         Invalidate child windows in InvalidateRgn().
5861         * [windows/defwnd.c]
5862         Added repaint of the caption when changing window text.
5864         * [windows/event.c]
5865         Modified SetCapture() to allow keyboard events while capturing.
5867         * [windows/message.c]
5868         New function MSG_GetHardwareMessage(), to do mouse tracking
5869         without returning control to the Windows program.
5871         * [windows/nonclient.c]
5872         A couple of changes in frame drawing for DLGMODALFRAME windows.
5873         Rewritten window moving code, to use MSG_GetHardwareMessage()
5874         instead of non-client mouse events (this is the way Windows
5875         does it), and to send WM_ENTERSIZEMOVE messages.
5876         Removed WM_NCBUTTONUP and WM_NCMOUSEMOVE handlers.
5878         * [windows/win.c]
5879         Allocate temporary structures on the USER heap instead of
5880         using GlobalAlloc().
5882         * [windows/winpos.c]
5883         Added function WINPOS_GetMinMaxInfo() to get sizing informations.
5885 Jan 31, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5887         * [windows/nonclient.c]
5888         Call to StdDrawScrollBar() during NC's drawing.
5889         Call to NC_ScrollBarButtonDown() on NC mouse events WM_LBUTTONDOWN.
5890         Call to NC_ScrollBarButtonUp() on NC mouse events WM_LBUTTONUP.
5891         Call to NC_ScrollBarMouseMove() on NC mouse events WM_MOUSEMOVE.
5893         * [controls/menu.c]
5894         New GetSubMenu() function.
5895         Move GetMenu() & SetMenu() functions from 'windows/win.c'.
5897         * [controls/listbox.c]
5898         Start changes to satisfy recent changes in scrollbars/windows.
5900         * [loader/resource.c]
5901         Put some code in LoadAccelerators() stub.
5902         New TranslateAccelerator() function.
5904         * [windows/win.c]
5905         Remove GetMenu() & SetMenu() functions.
5906         Call to NC_CreateScrollBars() if required by CreateWindow().
5908 ----------------------------------------------------------------------
5909 Mon Jan 24 10:40:10 EST 1994 John Richardson (jrichard@cs.uml.edu)
5911         * [window/win.c]
5912         Added functions EnumWindows, EnumChildWindows, and helper
5913         WIN_EnumChildWin.  EnumWindows won't list all wine windows
5914         because GetDesktopWindow isn't complete.  However, the code
5915         is in place for it to work correctly and only needs 
5916         GetDesktopWindow to do so.  
5918 Tue Jan 25 05:51:47 1994  julliard@di.epfl.ch (Alexandre Julliard)
5920         * [windows/defwnd.c]
5921         Added handling of activation messages (WM_ACTIVATE,
5922         WM_NCACTIVATE, WM_MOUSEACTIVATE)
5924         * [windows/event.c]
5925         De-activate the window when losing input focus.
5927         * [windows/focus.c]
5928         Bug fix in SetFocus().
5930         * [windows/message.c]
5931         Added activation of the window on mouse-clicks.
5933         * [windows/nonclient.c]
5934         Changed non-client area painting to use the correct colors
5935         depending upon the activation state.
5936         Added WM_NCACTIVATE message handling.
5937         Fixed a couple of bugs in window moving and resizing.
5939         * [windows/winpos.c]
5940         Implemented Get/SetActiveWindow().
5941         Implemented SWP_NOACTIVATE flag in SetWindowPos().
5943 Jan 17, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5945         * [misc/message.c]
5946         MessageBox has a CaptionBar for his title except for
5947                 MB_SYSTEMMODAL with MB_ICONHAND.
5949         * [windows/nonclient.c]
5950         Call to NC_TrackSysMenu on SysMenu button mouse click.
5952         * [windows/defwnd.c]
5953         Call to NC_TrackSysMenu on Alt key (VK_MENU).
5955         * [controls/menu.c]
5956         New GetSystemMenu() function.
5957         New CopySystemMenu() internal function.
5958         New NC_TrackSysMenu() internal function.
5960         * [include/windows.h]
5961         New WM_INITMENU, WM_INITMENUPOPUP, WM_MENUSELECT & WM_MENUCHAR defines.
5963 ----------------------------------------------------------------------
5964 Thu Jan 13 11:45:13 1994  John Richardson <jrichard@cs.uml.edu>
5966         * [window/win.c]
5967         Added functions EnableWindow, IsWindowEnabled, and helper 
5968         WIN_SetSensitive.
5969         
5970         * [window/event.c]
5971         Added checks for WS_DISABLED windows in EVENT_key, EVENT_MotionNotify,
5972         EVENT_ButtonPress, EVENT_ButtonRelease, EVENT_ConfigureNotify,
5973         EVENT_FocusIn, EVENT_FocusOut, and EVENT_EnterNotify.  Key and 
5974         button presses beep for a disabled window.  
5975         If anyone finds better places for these checks, please tell me.
5977 Jan 17, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5979         * [misc/message.c]
5980         Cleanup on buttons answer value returned.
5982         * [control/combo.c]
5983         Now use OBM_COMBO bitmap dropdown button.
5985 Mon Jan 17 21:56:45 1994  Erik Bos (erik@trashcan.hacktic.nl)
5987         * [misc/comm/c]
5988         A few bugfixes.
5990 Tue Jan 18 06:36:48 1994  julliard@di.epfl.ch (Alexandre Julliard)
5992         * [loader/cursor.c]
5993         Added X cursor for IDC_SIZENS and IDC_SIZEWE.
5995         * [include/options.h] [misc/main.c]  (New files)
5996         Rewrote main() function to get rid of Xt application context,
5997         and added command-line option parsing.
5999         * [objects/color.c]
6000         Use of a private map now configurable with command-line option.
6002         * [windows/defwnd.c]
6003         Added WM_SYSCOMMAND handling, and better WM_SETCURSOR handling.
6005         * [windows/event.c]
6006         Removed ConfigureNotify event handler (no longer needed).
6008         * [windows/message.c]
6009         Send WM_SETCURSOR message on mouse events.
6011         * [windows/nonclient.c]
6012         Use OEM bitmaps for the drawing of the non-client area.
6013         Added caption bar buttons handling, and moving and resizing of
6014         the window via the window frame (bypassing the window manager).
6016         * [windows/painting.c]
6017         Bug fix in BeginPaint().
6019         * [windows/win.c]
6020         Set the override_redirect flag for windows (to bypass window
6021         manager).
6023         * [windows/winpos.c]
6024         Implemented WindowFromPoint(), ChildWindowFromPoint(),
6025         BringWindowToTop(), Get/SetInternalWindowPos(),
6026         Get/SetWindowPlacement().
6028 Mon Jan 17 20:48:24 1994  Bob Amstadt  (bob@pooh)
6030         * [memory/heap.c]
6031         Added support for multiple local heaps.
6033 ----------------------------------------------------------------------
6034 Tue Jan  4 13:01:33 1994  David Metcalfe <david@prism.demon.co.uk>
6036         * [window/caret.c]
6037         Modified code to use system timer.
6039 Jan 9, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6041         * [windows/win.c]
6042         Windows create if required new XLIB MenuBar & CaptionBar.
6044         * [windows/defwnd.c]
6045         WM_CALCSIZE Move & Resize caption, menubar & scrollbars.
6046         (I'm not sure it's the good place for it, but it work...)
6048         * [loader/resource.c]
6049         optimize in FindResourceByNumber, make lseek() if next type ...
6051         * [controls/scroll.c]
6052         scrollbar buttons are now using system resources bitmaps.
6054         * [controls/caption.c] - new file ...
6055         captionbar showing title, close button with SysMenu,
6056         and other buttons using system resources bitmaps.
6058         * [controls/menu.c]
6059         New functions: SetMenuItemBitmaps() with 'glues',
6060         Make new version of LoadMenu() & ParseMenu(),
6061         ( put #define USE_POPUPMENU ).
6062         Implementation of MenuBar functions.
6063         
6064         * [sysres.dll]
6065         New bitmaps for system such OBM_CLOSE, OBM_MINIMIZE, OBM_UPARROWI.
6066         New SYSMENU menu, it don't work yet ! :-((
6068 Tue Jan 11 05:27:45 1994  julliard@di.epfl.ch (Alexandre Julliard
6070         * [memory/atom.c]
6071         Fixed a bug that could cause atoms to be case-sensitive.
6073         * [misc/rect.c]
6074         Bug fix in SubtractRect().
6076         * [objects/clipping.c]
6077         Bug fix when setting the clip mask to an empty region.
6079         * [windows/dce.c]
6080         Bug fix in ReleaseDC().
6082         * [windows/dialog.c]
6083         Call AdjustWindowRectEx() before creating the dialog window.
6084         Added support for DS_MODALFRAME style.
6086         * [windows/event.c]
6087         Cleaned up event handling and removed old Xt stuff.
6088         Moved double-click handling to windows/message.c
6090         * [windows/focus.c]
6091         Bug fix: only set the X focus when the window is viewable.
6093         * [windows/graphics.c]
6094         Rewritten DrawReliefRect() to use brush instead of pen, and
6095         to use the system colors.
6097         * [windows/message.c]
6098         Implemented WM_NCHITTEST message sending, and non-client
6099         mouse messages.
6100         Cleaned up double-click handling, and removed the Xt code.
6102         * [windows/nonclient.c]  (New file)
6103         Implemented AdjustWindowRect().
6104         Implemented WM_NCCALCSIZE, WM_NCHITTEST and WM_NCPAINT handling.
6106         * [windows/painting.c]
6107         Added sending of the WM_NCPAINT message in BeginPaint().
6109         * [windows/sysmetrics.c] [include/sysmetrics.h]  (New files)
6110         Implemented system metrics.
6112         * [windows/win.c]
6113         Bug fix in setting the parent and owner in CreateWindow().
6114         Removed the Xt code.
6116         * [windows/winpos.c]
6117         Added sending of the WM_NCPAINT message in SetWindowPos().
6118         Removed the Xt code.
6120 Sun Jan  2 12:38:53 1994  David Metcalfe <david@prism.demon.co.uk>
6122         * [windows/class.c]
6123         Implemented GetClassName and GetClassInfo.
6125         * [windows/caret.c]
6126         Various improvements to text caret code.
6128 Fri Dec 31 15:22:22 1993  John Brezak <brezak@apollo.hp.com>
6130         * [misc/comm.c]
6131         Patches to work with NetBSD.
6133 Thu Dec 30 12:11:55 1993  John Richardson <jrichard@cs.uml.edu>
6135         * [objects/bitblt.c] Added StretchBlt().
6137 Tue Jan  4 05:22:07 1994  julliard@di.epfl.ch (Alexandre Julliard)
6139         * [misc/user.c]
6140         Added creation of system message queue.
6142         * [objects/bitmap.c] [objects/dcvalues.c] [windows/dc.c]
6143         Added DC size fields into DC structure.         
6145         * [objects/clipping.c]
6146         Bug fix in CLIPPING_IntersectRect().
6148         * [windows/class.c]
6149         Allocate a DCE instead of a DC for CS_CLASSDC classes.
6151         * [windows/clipping.c]
6152         Fixed GetUpdateRect() and GetUpdateRgn() to clip to the client area.
6154         * [windows/dce.c]
6155         Implemented GetDCEx() and GetWindowDC().
6157         * [windows/defwnd.c]
6158         Implemented WM_WINDOWPOSCHANGED handling.
6160         * [windows/event.c]
6161         Preliminary support for Xlib event handling instead of Xt callbacks.
6162         Changed MSG_AddMsg() calls to hardware_event() or PostMessage().
6164         * [windows/message.c]
6165         Preliminary support for multiple message queues.
6166         Implemented hardware_event() to store messages into the system queue.
6167         Implemented Get/SetTaskQueue().
6168         Better WM_PAINT and WM_TIMER handling.
6169         Changes to use Xlib instead of Xt for events.
6171         * [windows/painting.c]
6172         Use GetDCEx() to retrieve the DC, to get a correct visible region.
6174         * [windows/timer.c]
6175         Moved the timer procedure callback into DispatchMessage().
6176         Changed implementation to get rid of Xt timeouts.  Timer checking
6177         is now done inside GetMessage().
6179         * [windows/win.c]
6180         Allocate a DCE instead of a DC for CS_OWNDC windows.
6181         Replaced Xt calls with Xlib calls.
6182         Moved window positioning functions into windows/winpos.c
6184         * [windows/winpos.c]  (New file)
6185         Rewritten most of the window positioning functions.
6186         Implemented SetWindowPos() and MapWindowPoints().
6188 Jan 3, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6190         * [if1632/user.spec]
6191         Bad arguments description for function SetDlgItemText.
6193         * [objects/text.c]
6194         Function DrawText now handle DT_CALCRECT request.
6196         * [misc/message.c]
6197         Message boxes now use DrawText with DT_CALCRECT.
6199         * [windows/graphics.c]
6200         Bug fix in function FrameRect, (it was using PEN instead of BRUSH).
6202         * [windows/win.c]
6203         Bug fix for flags in function ShowWindow.
6204         More accurate WM_SIZE generated by function ShowWindow.
6206         * [controls/listbox.c]
6207         More code for LBS_MULTIPLESEL.
6208         More code for LBS_MULTICOLUMN.
6210         * [include/windows.h]
6211         Bad define for MF_SEPARATOR.
6213         * [controls/menu.c]
6214         New functions: PopMenuWndProc() with 'glues',
6215         CreatePopupMenu(), AppendMenu(), InsertMenu(), RemoveMenu(), 
6216         DeleteMenu(), ModifyMenu(), TrackPopupMenu().
6217         Code in stubs: CreateMenu(), DestroyMenu(). 
6219 Sat Jan  1 10:22:43 1994  Bob Amstadt  (bob@pooh)
6221         * loader/wine.c: Added support for relocation types 5 and 6.
6223 Mon Dec 27 11:06:03 1993  Erik Bos (erik@trashcan.hacktic.nl)
6225         * [misc/comm.c]
6226         new functions: BuildCommDCB(), OpenComm(), CloseComm(),
6227         SetCommBreak(), ClearCommBreak(), EscapeCommFunction(), FlushComm(),
6228         GetCommError(), SetCommEventMask(), GetCommEventMask(),
6229         SetCommState(), GetCommState(), TransmitCommChar(), ReadComm(), 
6230         WriteComm().
6232 Wed Dec 22 13:00:15 1993  David Metcalfe <david@prism.demon.co.uk>
6234         * [windows/caret.c]
6235         Implemented text caret functions.
6237 Tue Dec 21 06:13:58 1993  julliard@di.epfl.ch (Alexandre Julliard)
6239         * [loader/wine.c]
6240         Bug fix in LoadImage().
6242         * [objects/bitblt.c] [objects/clipping.c] [objects/text.c]
6243           [windows/dc.c] [windows/dce.c] [windows/graphics.c]
6244         Modified graphics calls to take into account the DC origin.
6246         * [windows/defwnd.c]
6247         Added preliminary WM_NCCALCSIZE handling.
6249         * [windows/event.c]
6250         Send WM_NCCALCSIZE message on resize event.
6252         * [windows/win.c]
6253         Send WM_NCCALCSIZE message in CreateWindow().
6254         Realize widgets at creation time (should prevent problems with
6255         unrealized widgets).
6257 Dec 19, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6259         * [controls/static.c]
6260         Send mouse & keyboard message received to its parent.
6262         * [controls/scroll.c]
6263         Send keyboard message received to its parent.
6265         * [controls/listbox.c]
6266         Add Navigation keys .
6267         ListBox now use VSCROLL & HSCROLL instead of children.
6268         Alpha version of LBS_MULTIPLESEL.
6269         Alpha version of LBS_MULTICOLUMN.
6271         * [controls/combo.c]
6272         Add Navigation keys on closed ComboBox.
6273         Remove useless 'COMBOBOX_CreateComboBox' function.
6275 Mon Dec 19 20:39:34 1993  Erik Bos (erik@trashcan.hacktic.nl)
6277         * [loader/wine.
6278         LoadImage() modified to use FindFile().
6280         * [misc/file.c]
6281         SetErrorMode added
6283         * [misc/dos_fs.c]
6284         bug fixes.
6286 Dec 13, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6288         * [memory/global.c]
6289         bug fix in GlobalGetFreeSegment : good ptr in 'g_prev'.
6291         * [sysres.dll]
6292         preliminary version of a 'glass of wine' bitmap
6294         * [windows/event.c]
6295         New function 'GetCapture'.
6297         * [controls/scroll.c]
6298         Remove useless 'SCROLLBAR_CreateScrollBar' function.
6300         * [controls/listbox.c]
6301         Remove useless 'LISTBOX_CreateListBox' function.
6303 Mon Dec 13 13:51:00 1993  David Metcalfe <david@prism.demon.co.uk>
6305         * [objects/font.c]
6306         Corrected bugs in GetCharWidth().
6308         * [windows/event.c]
6309         Modified EVENT_key to send Windows virtual key codes for
6310         WM_KEYDOWN and WM_KEYUP messages, and a WM_CHAR message
6311         for printable characters.
6313 Wed Dec 08 19:20:00 1993  Karl Guenter Wuensch (hn324wu@unidui.uni-duisburg.de)
6315         * [windows/graphics.c]
6316         Added Polyline and Polygon
6318 Mon Dec 13 14:51:54 1993  Erik Bos (erik@trashcan.hacktic.nl)
6320         * [controls/listbox.c]
6321         ListBoxDirectory() modified to use dos_fs.c's functions to
6322         access files&|drives.
6324 Sat Dec 04 17:04:23 1993  Erik Bos (erik@trashcan.hacktic.nl)
6326         * [misc/dos_fs.c]
6327         Added FindFile() to search a file in a dos/unix style path.
6328         
6329         * [misc/file.c]
6330         New Win31 functions: OpenFile, _lcreate, _llseek, GetTempDrive,
6331         GetTempFileName, GetWindowsDirectory, GetSystemDirectory,
6332         GetDriveType.                      
6334         * [misc/int21.c]
6335         Modified.
6337 Wed Dec  1 16:20:45 1993  Miguel de Icaza  (miguel@roxanne.nuclecu.unam.mx)
6339         * [misc/profile.c]
6340         The Profile functions now return the correct values. They now
6341         implement all the features described in the SDK.
6343 Tue Nov 30 13:55:27 1993  Bob Amstadt  (bob at amscons)
6345         * [loader/selector.c]
6346         Rewrote selector aliasing routines to use System V IPC
6347         routine to alias memory segments.
6349 Nov 28, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6351         * [controls/listbox.c]
6352         More consistency in functions using wIndexes
6354         * [controls/scroll.c]
6355         New function : ShowScrollBar().
6357         * [loader/cursor.c] ... New file
6358         Move cursor functions from [loader/resource.c].
6359         New function : ClipCursor().
6360         New function : GetClipCursor().
6361         New function : CreateCursor().
6362         SetCursor() now working using gloabal variable 'winHasCursor'.
6364         *[object/palette.c]
6365         New stub only : SelectPalette().
6366         New stub only : RealizePalette().
6368         *[win/event.c]
6369         New function : EVENT_enter_notify(),
6370                 update 'winHasCursor' and send WM_SETCURSOR.
6372         *[win/defwnd.c]
6373         Add processing of WM_SETCURSOR message.
6375         *[win/win.c]
6376         New members in WND structure : hCursor, hWndVScroll & hWndHScroll. 
6377         CreateWindowEx() now create children for WM_HSCROLL & WM_VSCROLL.
6378         New function ClientToScreen().
6379         New function ScreenToClient().
6381 Mon Nov 25 18:25:40 1993  Erik Bos (erik@trashcan.hacktic.nl)
6383         * [files.h / regfunc.h / misc/dos.c]
6384         Removed.
6386         * [misc/dos_fs.c]
6387         Added support for loading dosdrive cfg from wine.ini.
6389         * [misc/int21.c]
6390         Modified.
6393 Wed Nov 24 11:37:33 1993  julliard@disuns2.epfl.ch (Alexandre Julliard)
6395         * [include/atom.h] [memory/atom.c]
6396         Implemented atoms.
6398         * [windows/class.c]
6399         Modified RegisterClass() to use atoms.
6400         Implemented CS_GLOBALCLASS style.
6402         * [windows/message.c]
6403         Implemented RegisterWindowMessage().
6405         * [loader/resource.c]
6406         Bug fix in LoadResource().
6408         * [windows/dialog.c]
6409         Modified CreateDialogParam() to use Find/LoadResource().
6411 Mon Nov 22 13:58:56 1993  David Metcalfe <david@prism.demon.co.uk>
6413         * [windows/scroll.c]
6414         Preliminary implementations of ScrollWindow, ScrollDC and
6415         ScrollWindowEx.
6417 Nov 21, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6419         * [controls/listbox.c]
6420         Optimization of redraw during 'Add' or 'Insert'.
6422         * [controls/scroll.c]
6423         Optimization of WM_PAINT during 'thumbtracking'.
6425         * [controls/button.c]
6426         Add of beta implement of 'BS_OWNERDRAW'
6428         * [controls/static.c]
6429         Style 'SS_ICON' new supported.
6431         * [misc/message.c]
6432         Begin of implemantation of MB_XXX styles.
6434         * [loader/resource.c]
6435         Function LoadIcon() : now prepare transparency Bitmap mask.
6436         Function LoadCursor() : now prepare a 'X pixmapcursor'.
6437         New function SetCursor() : not finished.
6438         New function ShowCursor() : not finished.
6439         New function AccessResource() : stub.
6441         * [obj/dib.c]
6442         Function DrawIcon(): deugging phase of icon transparency mask.
6444         * [loader/library.c]
6445         new file for news functions LoadLibrary() & FreeLibrary().
6447         * [sysres.dll]
6448         Resources only 16bits DLL for System Resources, icons, etc...
6450 Sun Nov 14 14:39:06 1993  julliard@di.epfl.ch (Alexandre Julliard)
6452         * [include/dialog.h] [windows/dialog.c]
6453         Simplified dialog template parsing.
6454         Implemented DialogBoxIndirect().
6456         * [windows/win.c]
6457         Fixed bug in CreateWindow() when aborting window creation.
6458         Modified UpdateWindow() to only update visible windows.
6459         Implemented IsWindow().
6461 Nov 14, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6463         * [controls/listbox.c]
6464         Listbox control window : new messages.
6466         * [controls/combo.c]
6467         Combo box control window : new messages.
6469         * [misc/message.c]
6470         Moved stub MessageBox() to this new file.
6471         Implemented of a callback, now MessageBox show a window.
6473         * [loader/resource.c]
6474         New function DestroyIcon()
6475         New function DestroyCursor()
6476         Filled stub LoadIcon()
6477         Filled stub LoadCursor()
6478         Bug fixed in FindResourceByName() : missing lseek().
6480         * [obj/dib.c]
6481         New function DrawIcon()
6483         * [windows/win.c]
6484         New function CloseWindow()
6485         New function OpenIcon()
6486         New function IsIconic()
6487         New Function FindWindow()
6489 Sun Nov 14 08:27:19 1993  Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de)
6491         * [loader/selector.c]
6492         Wrote AllocCStoDSAlias() and AllocDStoCSAlias()
6494 Sun Nov 14 08:27:19 1993  Bob Amstadt  (bob at amscons)
6496         * [loader/selector.c]
6497         Wrote AllocSelector() and PrestoChangoSelector().  YUK!
6499 Sat Nov 13 13:56:42 1993  Bob Amstadt  (bob at amscons)
6501         * [loader/resource.c]
6502         Wrote FindResource(), LoadResource(), LockResource(),
6503         and FreeResource()
6505         * [include/segmem.h] [loader/selector.c] [loader/signal.h]
6506         Changed selector allocation method.
6508 Sun Nov 10 08:27:19 1993  Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de)
6510         * [if1632/callback.c if1632/call.S if1632/user.spec] 
6511         added Catch (KERNEL.55) and Throw (KERNEL.56)
6512         
6513 Nov 7, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6515         * [controls/scroll.c]
6516         Scroll bar control window
6517                 Bug resolved : Painting message before scroll visible.
6519         * [controls/listbox.c]
6520         Listbox control window
6521                 Destroy cleanup.
6523         * [controls/combo.c]
6524         Combo box control window
6525                 Destroy cleanup.
6527         * [controls/button.c]
6528                 GetCheck Message now return is state.
6530         * [windows/win.c]
6531         New function IsWindowVisible()
6533 Mon Nov  1 14:40:21 1993  julliard@di.epfl.ch (Alexandre Julliard)
6535         * [if1632/user.spec]
6536         Removed some duplicate entries.
6538         * [include/dialog.h] [windows/dialog.c]
6539         Implemented dialog units and fonts.
6540         Added preliminary loading of dialog resources.
6541         Preliminary implementation of DialogBox().
6542         Implemented Get/SetDlgItem* functions.
6544         * [windows/win.c]
6545         Implemented WM_PARENTNOTIFY message.
6546         Implemented CreateWindowEx() and GetWindow().
6547         Completed DestroyWindow().
6549 Mon Nov  1 18:19:34 1993  Erik Bos
6551         * [loader/signal.c]
6552         Added support for int 0x11 & 0x12.
6554         * [loader/int21.c]
6555         Improved function handling.
6557 Sun Oct 31 12:38:09 1993  David Metcalfe <david@prism.demon.co.uk>
6559         * [objects/font.c]
6560         Implemented GetCharWidth().
6562 Wed Oct 27 09:56:06 1993  John Brezak <brezak@ch.hp.com>
6564         * [Makefile]
6565         Use GNU malloc.
6567         * [include/int21.h include/wine.h]
6568         Change sc_eflags to sc_efl .
6570         * [include/wine.h]
6571         Fix misplaced #endif
6572         Include <signal.h> for NetBSD
6574         * [loader/int21.c]
6575         Don't include <sys/vfs.h> in NetBSD
6576         Do include <sys/mount.h> in NetBSD
6577         Cleanup some lint.
6579 Mon Oct 26 17:59:01 1993  Erik Bos
6581         * [include/int21.h]
6582         Added.
6584         * [loader/int21.c]
6585         Added support for many dos ints.
6587         * [misc/file.c] [include/files.h]
6588         Moved OPEN_MAX and DosDriveStruct to files.h.
6590 Sun Oct 24 13:36:50 1993  David Metcalfe <david@prism.demon.co.uk>
6592         * [controls/button.c]
6593         Implemented CHECKBOX, AUTOCHECKBOX, 3STATE, AUTO3STATE,
6594         RADIOBUTTON, AUTORADIOBUTTON, GROUPBOX controls, together with
6595         a preliminary USERBUTTON control.
6597         * [objects/text.c]
6598         Corrected bugs in TEXT_NextLine() and added handling of prefix
6599         character.
6601         * [controls/button.c]
6602         Disabled focus handling by commenting out SetFocus() calls until
6603         serious bug can be found.
6605 Oct  20, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6607         * [controls/listbox.c]
6608         Listbox control window
6609                 Painting cleanup, new messages processed.
6611         * [controls/scroll.c]
6612         Scroll bar control window
6613                 Painting cleanup.
6615         * [controls/combo.c]
6616         Combo box control window
6617                 Painting cleanup.
6619 Tue Oct 12 17:50:11 1993  julliard@di.epfl.ch (Alexandre Julliard)
6621         * [objects/color.c] [objects/palette.c] [windows/syscolor.c]
6622         Better support for the private color map.
6623         Using a private map is now the default.
6625         * [windows/win.c]
6626         Bug fix.
6628         * [include/dialog.h] [windows/dialog.c]
6629         Implemented CreateDialog*() and IsDialogMessage().
6631         * [misc/xt.c] [windows/defwnd.c]
6632         Moved DefWindowProc() to defwnd.c.
6633         Added WM_NCCREATE, WM_NCDESTROY and WM_CTLCOLOR handling.
6635         * [windows/defdlg.c]
6636         Started the implementation of DefDlgProc().
6638         * [windows/win.c]
6639         Added WM_NCCREATE and WM_NCDESTROY messages.
6640         Implemented IsChild().
6642 Tue Oct 12 17:50:20 1993  David Metcalfe <david@prism.demon.co.uk>
6644         * [windows/focus.c]
6645         Implemented GetFocus() and SetFocus().
6647         * [windows/event.c]
6648         Added processing of FocusIn and FocusOut events.
6650         * [windows/graphics.c]
6651         Added DrawFocusRect().
6653 Sat Oct  9 14:36:57 1993  Erik Bos
6655         * [loader/int1a.c]
6656         Added more function handling.
6658 Wed Oct  6 12:21:22 1993  Erik Bos
6660         * [loader/signal.c]
6661         Split signal.c into int1a.c, int21.c and signal.c.
6663 Tue Oct  5 22:12:40 1993  David Metcalfe
6665         * [controls/static.c] [control/widgets.c]
6666         Static control class.
6668         * [objects/text.c]
6669         Added processing of additional DT_ flags to DrawText().
6671         * [windows/win.c] [misc/xt.c]
6672         Added SetWindowText() and WM_SETTEXT processing.
6674 Tue Oct  5 22:12:40 1993  Martin Ayotte
6676         * [controls/listbox.c]
6677         Listbox control window
6679         * [controls/scroll.c]
6680         Scroll bar control window
6682         * [controls/combo.c]
6683         Combo box control window
6685         * [include/combo.h]
6686         Combo box definitions
6688         * [include/listbox.h]
6689         Listbox definitions
6691         * [include/scroll.h]
6692         Scroll bar definitions
6694 Sat Oct  2 09:35:54 1993  Bob Amstadt  (bob at pooh)
6696         * [if1632/callback.c]
6697         Fixed bug in MakeProcInstance().
6699         * [debugger/info.c]
6700         Changed x/w and x/b to display in hex.
6702         * [debugger/i386-pinsn.c]
6703         Added code to properly unassemble 16-bit indexing.
6705 Fri Oct  1 08:29:05 1993  Bob Amstadt  (bob at pooh)
6707         * [loader/files.c] [misc/profile.c]
6708         System initialization file is now called "wine.ini" and can
6709         be located in the current directory, the user's home directory,
6710         or any directories specified in the WINEPATH environment variable.
6712         * [tools/build.c] [if1632/call.S] [include/regfunc.h]
6713         Changed register function stack to match sigcontext structure.
6715 Thu Sep 30 22:30:21 1993  Bob Amstadt  (bob at pooh)
6717         * [loader/files.c]
6718         Created function to search a path for files to load.
6720         * [loader/wine.c]
6721         Modified exe and dll file loading to search through path
6722         specified by the environment variable WINEPATH.
6724 Thu Sep 30 22:30:21 1993  Eric Youngdale
6726         * [loader/signal.c]
6727         Bug fix.
6729 Thu Sep 30 22:30:21 1993  John Brezak
6731         * [debugger/dbg.y] [debugger/debug.l] [debugger/dtest.c] 
6732           [debugger/obstack.h]
6733         Updates to allow debugger to function under NetBSD.
6735 Tue Sep 28 19:59:21 1993  David Metcalfe
6737         * [windows/win.c]
6738         Implemented support for windows with no borders.  Added
6739         GetParent(), GetDlgCtrlID(), GetWindowText() and
6740         GetWindowTextLength() functions.
6742         * [misc/xt.c]
6743         Added processing of WM_GETTEXT and WM_GETTEXTLENGTH messages
6744         to DefWindowProc and Implemented MessageBeep().
6746         * [windows/syscolor.c]
6747         Added preliminary system color support.
6749         * [controls/button1.c]
6750         Mods to new button control and integration with Wine.
6752 Tue Sep 28 19:59:21 1993  Johannes Ruscheinski
6754         * [controls/button1.c]
6755         New button control using GDI functions.
6756         
6757 Tue Sep 28 19:59:21 1993  Eric Youngdale
6759         * [debugger/*]
6760         Added debugging capabilities to Wine
6762 Sat Sep 25 13:22:50 1993  Alexandre Julliard  (julliard@di.epfl.ch)
6764         * [objects/region.c]
6765         Bug fix
6767 Fri Sep 24 07:35:11 1993  Bob Amstadt  (bob at pooh)
6769         * [tools/build.c]
6770         Changed the entry point code to reduce the standard entry
6771         point size from 22 bytes to 10 bytes.  This leaves about
6772         4000 free entry points instead of the 800 in version 0.4.2.
6774         * [loader/resource.c]
6775         Rewrote functions to allow loading of resources from any
6776         DLL.
6778         * [loader/wine.c] [include/wine.h]
6779         Added functions GetFilenameFromInstance() and GetFileInfo()
6780         to search for a loaded file based on its instance handle.
6781         Added a field in struct w_files to make searching by an instance
6782         handle faster.
6784 Tue Sep 21 09:57:01 1993  miguel@roxanne.nuclecu.unam.mx (Miguel de Icaza)
6786         * [misc/profile.c]
6787         Implementation of .INI file handling
6789 Mon Sep 20 10:54:32 1993  David Metcalfe
6791         * [misc/profile.c.old]
6792         Implementation of .INI file handling
6794 Mon Sep 20 10:54:32 1993  John Brezak
6796         * [controls/WinButton.c]
6797         Bug fix with call to XtVaSetValues.
6799 Mon Sep 20 10:54:32 1993  Alexandre Julliard
6801         * [windows/win.c]
6802         Quick patch to get colormaps to work with button widget.
6804 Mon Sep 20 02:42:54 1993    (yngvi@hafro.is)
6806         * misc/keyboard.c: 
6807         Ifdefed out some bogus Ansi<->Oem conversion functions
6809         * misc/lstr.c: 
6810         New file with string functions like lstr* IsChar* *Ansi* 
6812 Wed Sep 15 20:35:10 1993  John Brezak
6814         * [loader/signal.c]
6815         Additional changes to support NetBSD.
6817 Wed Sep 15 22:19:22 1993  Martin Ayotte
6819         * [windows/graphics.c]
6820         Added FrameRect function
6822 Tue Sep 14 13:54:45 1993  Alexandre Julliard
6824         * [objects/color.c] [objects/palette.c]
6825         Preliminary support for private color map.
6827         * [windows/class.c]
6828         Implemented CS_CLASSDC style.
6830         * [windows/dce.c]
6831         Moved DCEs to USER heap.
6832         Implemented class and window DCs.
6834         * [windows/event.c]
6835         Implemented CS_DBLCLKS style.
6837         * [windows/graphics.c]
6838         Bug fix in SetPixel().
6840         * [windows/win.c]       
6841         Implemented CS_OWNDC style.
6842         Implemented Get/SetWindowLong().
6844         * [controls/menu.c] [windows/class.c] [windows/clipping.c] 
6845           [windows/dce.c] [windows/message.c] [windows/win.c]   
6846         Moved windows from global heap to USER heap.
6848 Mon Sep 13 05:00:11 1993  Eric Youngdale
6850         * [Makefile] [if1632/relay.c] [include/dlls.h] [selector.c]
6851           [loader/wine.c] [tools/build.c]
6852         Added ability to generate missing functions statistics.
6854 Mon Sep 13 12:09:47 1993  Scott A. Laird  (scott@curly)
6856         * [WIN31-APPLETS]
6857         Added new file.
6859         * [if1632/kernel.spec]
6860         Added definitions for GetProfile{Int,String} and SetHandleCount.
6862         * [if1632/keyboard.spec]
6863         Created interface specification for Keyboard driver DLL.
6865         * [if1632/relay.c]
6866         Added keyboard.dll to list of included DLLs.
6868         * [if1632/user.spec]
6869         Added LoadAccelerators definition.
6871         * [loader/resource.c]
6872         Added LoadAccelerators stub.
6874         * [misc/file.c]
6875         Changed OpenFile, and added SetHandleCount (for winfile.exe)
6877         * [misc/keyboard.c]
6878         Added keyboard code.
6880         * [misc/profile.c] [misc/xt.c]
6881         Moved GetPrivateProfile* commands here, and added GetProfile*
6882         commands.
6884 Mon Sep 13 10:24:37 1993  Andrew Bulhak
6886         * [windows/utility.c]
6887         Implemented MulDiv(), OutputDebugString() and wvsprintf()
6889 Fri Sep 10 09:13:30 1993  John Brezak
6891         * [*/Makefile]
6892         Created patch to allow BSD make to build wine.
6894         * [windows/win.c]
6895         Fixed NULL pointer reference.
6897         * [windows/message.c] [misc/xt.c]
6898         Defined HZ to handle system specific timing.
6900         * [windows/graphics.c]
6901         Use M_PI is PI
6903         * [objects/pallete.c]
6904         NetBSD does not have /usr/include/values.h and MAXINT is INT_MAX.
6906         * [dump.c] [ldt.c] [wine.c]
6907         ifdef'ed linux headers for linux compile.
6909         * [loader/ldtlib.c]
6910         Add NetBSD system calls when compiled on that system.
6912         * [loader/selector.c]
6913         Use mmap(MAP_ANON, ...) for NetBSD.
6915         * [if1632/call.S]
6916         Fixed selector assumptions.
6918 Thu Sep 9 20:01:37 1993  David Metcalfe
6920         * [controls/WinButton*] [controls/button.c] [controls/widget.c]
6921           [windows/win.c] [windows/class.c]
6922         Added 3D button control and tied into CreateWindow()
6924 Thu Sep  9 07:35:24 1993  Scott Laird
6926         * [if1632/sound.spec]
6927         Created interface specification for SOUND DLL.
6929         * [if1632/win87em.spec]
6930         Added more functions to the WIN87EM DLL interface specification
6932         * [misc/emulate.c]
6933         Created stubs for the new math emulation functions.
6935         * [misc/sound.c]
6936         Created stubs for the SOUND DLL.
6938 Sun Sep  5 21:02:10 1993  John Burton
6940         * [if1632/kernel.spec]
6941         Added interface specifications for OpenFile, _lclose, _lread, _lopen,
6942         and _lwrite.
6944         * [include/windows.h]
6945         Added OF_ macros
6947         * [misc/file.c]
6948         Implemented OpenFile, _lclose, _lread, _lopen and _lwrite.
6950 Fri Sep  3 18:47:03 1993  Alexandre Julliard
6952         * [windows/dc.c]
6953         Bug fix
6955         * [objects/text.c]
6956         Bug fix
6958 Fri Sep  3 18:47:03 1993  Bob Amstadt
6960         * [objects/linedda.c]
6961         Finished LineDDA().
6963 Fri Sep  3 11:52:18 1993  Bob Amstadt
6965         * [windows/timer.c]
6966         Changed to use CallWindowProc() rather directly calling callback.
6968         * [windows/event.c]
6969         Implemented SetCapture() and ReleaseCapture()
6971         * [windows/keyboard.c]
6972         Created stub for GetKeyState()
6974         * [objects/linedda.c]
6975         Created stub for LineDDA()
6977         * [if1632/callback.c]
6978         Created callback handler for LineDDA callback procedure.
6980         * [if1632/callback.c]
6981         Created FreeProcInstance()
6983 Fri Sep  3 08:36:52 1993  David Metcalfe
6985         * [loader/signal.c]
6986         Patch to and code for INT 1A
6988 Thu Sep  2 00:31:54 1993  Alexandre Julliard
6990         * [objects/font.c] [objects/text.c]
6991         More text support: implemented justification and underlining.
6993         * [windows/clipping.c] [objects/clipping.c]
6994         Moved low-level clipping functions to objects/clipping.c.
6996         * [windows/clipping.c] [windows/event.c] [windows/message.c]
6997         Implemented window update regions.
6999         * [windows/dc.c] [objects/dcvalues.c]
7000         Moved some device-independent DC functions to objects/dcvalues.c.
7002         * [windows/graphics.c]
7003         Implemented InvertRect() and GetPixel().
7005 Sat Aug 28 08:40:23 1993  Eric Youngdale
7007         * [include/neexe.h] [loader/wine.c]
7008         Added code to handle relocation type 4.
7010         * [loader/signal.h] [loader/wine.c] [loader/selector.c]
7011         Added support for dos interrupts.
7013 Thu 26 Aug 19:15:00 1993  Eric Youngdale
7015         * [loader/selector.c]
7016         Fixed bug dealing with loading DLLs.
7018 Thu Aug 26 19:22:40 1993  Alexandre Julliard
7020         * [include/gdi.h] [objects/font.c] [windows/dc.c]
7021         Beginning of real font support.
7023         * [windows/graphics.c]
7024         Implemented PatBlt().
7026         * [memory/global.c]
7027         Corrected a bug with linked list handling in GlobalAlloc().
7029         * [objects/bitmap.c]
7030         Corrected a bug in BITMAP_SelectObject().
7032 Tue Aug 24 19:22:40 1993  David Metcalfe
7034         * [controls/Command*] [controls/Label*] [controls[MenuButto*]
7035           [controls/SmeMenuButt*]
7036         Change code to support & as a special character in menu item text.
7038 Tue Aug 24 19:22:40 1993  Alexandre Julliard
7040         * [include/gdi.h] [windows/dc.c]
7041         Heavily modified the DC structure for better device-independence.
7043         * [objects/bitmap.c]
7044         Implemented bitmap dimensions.
7046         * [windows/dc.c] [windows/dce.c]
7047         Implemented DC state saving and restoring.
7049         * [windows/dc.c]
7050         Implemented ROP mode.
7052         * [windows/graphics.c]
7053         Implemented FillRect().
7055 Mon Aug 23 22:08:34 1993  Bob Amstadt  (bob at pooh)
7057         * [misc/xt.c]
7058         Fixed bug in InvalidateRect().  Solitaire attempted to
7059         clear window before it was realized.
7061         * [loader/resource.c]
7062         Began rewrite of LoadBitmap().
7064         * [loader/wine.c]
7065         Fixed code which set Argv and Argc global variables.
7067         * [loader/selector.c]
7068         Added code to set up command line arguments.
7070         * [include/neexe.h]
7071         Fixed error in PSP structure.
7073 Tue Aug 17 20:41:12 1993  Alexandre Julliard
7075         * [include/gdi.h] [windows/dc.c]
7076         Implemented device capabilities.
7078         * [objects/region.c]
7079         Implemented EqualRgn() and CombineRgn().
7081         * [windows/clipping.c]
7082         Implemented Save/RestoreVisRgn().
7084         * [windows/graphics.c]
7085         Implemented PaintRgn() and FillRgn().
7087         * [windows/mapping.c]
7088         Implemented mapping modes.
7090 Tue Aug 10 14:07:38 1993  Alexandre Julliard
7092         * [if1632/user.spec] [misc/rect.c]
7093         Implemented rectangle API functions.
7095         * [if1632/gdi.spec] [include/gdi.h] [objects/region.c]
7096         Implemented regions.
7098         * [windows/class.c]
7099         Corrected a typo in UnregisterClass().
7101         * [windows/clipping.c] [windows/dc.c]
7102         Implemented DC clipping and visible region.
7104 Tue Aug 10 20:57:56 1993  Bob Amstadt  (bob at pooh)
7106         * [controls/menu.c] [windows/win.c]
7107         SetMenu(), GetMenu(), CheckMenuItem() implemented
7109 Thu Aug  5 22:33:22 1993  Bob Amstadt  (bob at pooh)
7111         * [controls/menu.c] [windows/win.c]
7112         Many improvements menus.  LoadMenu() should work.
7114 Wed Aug  4 14:55:36 1993  Alexandre Julliard
7116         * [objects/dib.c]
7117         Started the implementation of device-independent bitmaps.
7119         * [objects/bitmap.c]
7120         Added support for multiple bitmap depths.
7122         * [objects/brush.c]
7123         Implemented pattern brushes.
7125         * [windows/dc.c] [windows/graphics.c]
7126         Implemented some GDI graphics primitives.
7128 Tue Aug  3 21:16:47 1993  Bob Amstadt  (bob at pooh)
7130         * [controls/menu.c] [windows/win.c] [include/menu.h]
7131         Code to load class menus from executable file.
7133         * [if1632/user.spec]
7134         Fixed specification of SendMessage() and PostMessage.
7136 Mon Jul 26 21:53:24 1993  Alexandre Julliard
7138         * [if1632/call.S]
7139         Corrected a bug in KERNEL_InitTask().
7141         * [include/windows.h]
7142         Added a lot of constants.
7144         * [loader/selector.c]
7145         Corrected a bug in segment allocation in CreateSelectors().
7147         * [objects/bitmap.c]
7148         Implemented SelectObject() for bitmaps.
7150         * [objects/brush.c]
7151         Implemented hatched brushes and SelectObject().
7153         * [objects/gdiobj.c]
7154         Removed linked list (not needed).
7156         * [objects/palette.c]
7157         Implemented system palette creation and misc. palette API functions.
7159         * [windows/timer.c]
7160         Implemented timers.
7162         * [windows/dc.c]
7163         Implemented memory device contexts.
7165 Tue Jul 20 10:38:59 1993  Bob Amstadt  (bob at pooh)
7167         * [dos.c]
7168         Split DOS3Call() out of kernel.c.  Added support for get date
7169         and time functions.
7171         * [call.S]
7172         Added function ReturnFromRegisterFunc() to allow DOS calls
7173         to return values in registers.
7175         * [regfunc.h]
7176         Macros to access registers saved on stack.
7178 Tue Jul 20 10:38:59 1993  Alexandre Julliard
7180         * [win.c]
7181         Corrected allocation of the WM_CREATE data structure.
7183         * [dce.c] [dce.h]
7184         Implemented DCE handling.
7186         * [bitmap.c] [brush.c] [dc.c] [font.c] [gdi.h] [gdi.spec] 
7187           [gdiobj.c] [palette.c] [pen.c]
7188         Implemented the GDI objects data structures and allocation.
7190         * [windows.h]
7191         Added several structures and constants for GDI objects.
7193 Mon Jul 19 12:51:10 1993  Bob Amstadt  (bob at pooh)
7195         * [ldtlib.c]
7196         Modified system calls to match Linus' new interface for
7197         the LDT modification.
7199         * [win.c]
7200         Fixed bug with WM_CREATE message.
7202         * [heap.c] [kernel.spec]
7203         Completed local heap allocation functions.
7205         * [global.c]
7206         Created function GlobalQuickAlloc() for easy allocation from DLLs
7208 Tue Jul 13 20:31:31 1993  Bob Amstadt  (bob at pooh)
7210         * [global.c]
7211         Completed global memory pool API
7213 Sun Jul 11 16:59:52 1993  Alexandre Julliard
7215         * [message.c] [user.c] [user.spec] [windows.h]
7216         Added emulation of Windows message queue.
7218 Thu Jul  8 19:29:27 1993  Bob Amstadt  (bob at pooh)
7220         * [build.c] Original by Bob Amstadt
7221         * [callback.c] Original by Bob Amstadt, updates by 
7222         Alexandre Julliard
7223         * [dump.c] Original by Bob Amstadt
7224         * [global.c] Original by Bob Amstadt
7225         * [heap.c] Original by Bob Amstadt
7226         * [kernel.c] Original by Bob Amstadt
7227         * [ldt.c] Original by Bob Amstadt
7228         * [ldtlib.c] Original by Bob Amstadt
7229         * [relay.c] Original by Bob Amstadt
7230         * [resource.c] Original by Bob Amstadt, updates by 
7231         Alexandre Juliard
7232         * [selector.c] Original by Bob Amstadt, updates by Eric Youngdale
7233         * [user.c] Original by Bob Amstadt
7234         * [wine.c] Original by Bob Amstadt, updates by Eric Youngdale and
7235         Alexandre Julliard
7236         * [wintcl.c] Original by Regents of the University of California,
7237         updates by Peter MacDonald and Alexandre Julliard
7238         * [callback.h] Original by Bob Amstadt
7239         * [dlls.h] Original by Bob Amstadt
7240         * [heap.h] Original by Bob Amstadt
7241         * [neexe.h] Original by Bob Amstadt
7242         * [prototypes.h] Original by Bob Amstadt, updates by 
7243         Eric Youngdale
7244         * [segmem.h] Original by Bob Amstadt
7245         * [tkInt.h] Original by Regents of the University of California
7246         * [windows.h] Original by Peter MacDonald, updates by 
7247         Alexandre Julliard and Bob Amstadt
7248         * [wine.h] Original by Eric Youngdale
7249         * [kernel.spec] Original by Bob Amstadt, updates by 
7250         Alexandre Julliard
7251         * [gdi.spec] Original by Bob Amstadt, updates by 
7252         Alexandre Julliard
7253         * [shell.spec] Original by Bob Amstadt
7254         * [unixlib.spec] Original by Bob Amstadt
7255         * [user.spec] Original by Bob Amstadt, updates by Alexandre Julliard
7256         * [win87em.spec] Original by Bob Amstadt
7257         * [Windows.tcl] Original by Peter MacDonald, updates by 
7258         Alexandre Julliard
7259         * [build-spec.txt] Original by Bob Amstadt
7260         * [if1632.S] Original by Bob Amstadt, updates by Eric Youngdale