Release 960805
[wine] / ChangeLog
1 ----------------------------------------------------------------------
2 Sun Aug  4 18:18:48 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
3
4         * [controls/scroll.c]
5         Attempted to implement undocumented scroll-bar messages.
6
7         * [tools/build.c] [include/callback.h] [windows/winproc.c]
8         CallTo16_* functions now get DS from the previous 16-bit stackframe.
9
10         * [if1632/thunk.c] [include/callback.h]
11         Added thunks to implement callbacks for the emulator. Now all the
12         Enum* functions always take a real function pointer even in the
13         emulator.
14         
15         * [loader/builtin.c]
16         Removed binary search in BUILTIN_GetEntryPoint32(), as it didn't
17         work with NULL entry points. Using linear search now.
18
19         * [loader/module.c]
20         Implemented IsSharedSelector().
21
22         * [loader/task.c]
23         Changed SwitchStackTo/Back to use the instance data to store the
24         previous stack instead of the TDB. Also copy the local variables
25         onto the new stack.
26         Added GetExeVersion() and SetTackSignalProc().
27         Implemented SetSigHandler().
28
29 Sat Aug  3 22:19:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
30
31         * [controls/menu.c]
32         "Fixed" problem in deleting menus where win32 could get into an
33         endless loop when it crashed. I think I've fixed the symptoms, not
34         the original problem so it might be worth further investigation.
35
36         * [debugger/registers.c]
37         Added missing #ifdefs on FS_REG and GS_REG, needed for FreeBSD to
38         compile wine properly.
39
40         * [files/dos_fs.c]
41         Made DOSFS_Hash and DOSFS_Match non-static so they can be called
42         from win32/findfile.c (q.v.).
43
44         * [if1632/gdi32.spec]
45         Added SetMapMode (call existing function)
46
47         * [if1632/kernel32.spec]
48         Added FindFirstFileA and SetFileAttributesA.
49
50         * [if1632/user32.spec]
51         Added BringWindowToTop, CreatePopupMenu, GetKeyState, GetParent,
52         IsDlgButtonChecked (call existing functions) and IsDialogMessageA,
53         UnhookWindowsHookEx.
54
55         * [win32/file.c]
56         Added stub function SetFileAttributes32A. It's a stub because I
57         can't really work out what this function should do with most
58         attributes in a Unix environment. Anyone care to expand it?
59
60         * [win32/findfile.c]
61         New file. Initial stab at FindFirstFile. This doesn't work as
62         specified yet, though a lot of the groundwork is there. I haven't
63         time to work on this for the next month, so if anyone wants to pick
64         it up and run with it please do.
65
66         * [win32/memory.c]
67         Removed malloc.h from includes (covered by stdlib.h include, and
68         gets rid of a warning in FreeBSD).
69
70         * [win32/newfns.c]
71         UnhookWindowsHookEx32A stub added.
72
73         * [win32/user32.c]
74         Added implementation of IsDialogMessage32A.
75
76         * [windows/dialog.c]
77         IsDlgButtonChecked now calls SendDlgItemMessage32A instead of
78         SendDlgItemMessage16.
79
80 Sat Aug  3 18:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
81
82         * [windows/graphics.c]
83         Removed rectangle checking (conflicted with nonstandard
84         mapping modes). 
85
86         * [windows/dialog.c]
87         Added check for child-style dialogs to DS_ABSALIGN
88         coordinate conversion.
89
90         * [objects/color.c]
91         Cleaned up misc. bits
92
93 Thu Aug  1 10:51:45 1996  Andrew Lewycky <plewycky@oise.utoronto.ca>
94
95         * [windows/focus.c] [windows/event.c] [windows/win.c]
96           [windows/defdlg.c]
97         Fixes to focusing and activation.
98
99         * [windows/defdlg.c]
100         Properly(?) handle DM_GETDEFID.
101
102         * [controls/combo.c]
103         Handle CB_FINDSTRINGEXACT, CB_SETEDITSEL, CB_GETEDITSEL.
104         CBCheckSize: Adjust edit position.
105
106 Tue Jul 30 09:46:36 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
107
108         * [files/file.c] [include/file.h] [loader/module.c] [loader/ne_image.c]
109         Pass HFILEs instead of unix-fds to self-loader code.
110
111 Mon Jul 29 21:48:25 1996  Albrecht Kleine  <kleine@ak.sax.de>
112
113         * [include/metafile.h] [objects/metafile.c] [objects/text.c]
114         Implemented handling of some new metafile records (META_...)
115         in PlayMetaFileRecord(), rewrite of 'case META_EXTTEXTOUT'.
116         Added functions like MF_StretchBlt() for usage in metafiles.
117         Minor bugfix in CopyMetafile().
118
119         * [objects/bitmap.c][objects/dib.c]
120         Added check for metafile-DC in Bitmap and DIB functions:
121         CreateCompatibleBitmap() etc.
122
123 ----------------------------------------------------------------------
124 Sun Jul 28 17:57:19 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
125
126         * [loader/task.c] [include/task.h]
127         Implemented SwitchStackTo()/SwitchStackBack().
128
129         * [include/wintypes.h] [loader/main.c]
130         Added __winelib variable to distinguish between emulator and
131         library at run-time. Later on, this should avoid some
132         recompilations when building Winelib.
133
134         * [windows/property.c]
135         Implemented Win32 functions for window properties.
136
137 Fri Jul 26 18:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
138
139         * [controls/listbox.c]
140         Implemented LBS_SORT style, WM_COMPAREITEM, and WM_DELETEITEM
141         messages.
142
143         * [controls/menu.c]
144         Call TranslateMessage() to enable shortcuts (on WM_CHAR).
145
146         * [include/cursoricon.h]
147         Moved #pragma pack(1) back to where it belongs.
148
149         * [objects/palette.c]
150         RealizeDefaultPalette() maps to system colors only.
151         Do not broadcast palette notifications when in TrueColor.
152
153         * [objects/color.c] [include/palette.h]
154         Miscellaneous optimizations. Had to fix several
155         "improvements" made to my patch for previous release.
156
157         * [objects/dib.c]
158         Reverse dib bits order for 24-bit SetDIBits().
159
160         * [objects/dc.c]
161         GetDeviceCaps() does not return RC_PALETTE when in TrueColor.
162
163         * [windows/scroll.c]
164         Scroll update region too.
165
166         * [windows/message.c]
167         Include QS_MOUSE into the event mask for nonclient mouse
168         message filter. Fixes problems with Word 6 freezing when
169         mouse hits nonclient area.
170
171         * [windows/win.c] 
172         Allow top-level windows to be linked as HWND_TOP in CreateWindow().
173
174         * [windows/winpos.c] [windows/mdi.c]
175         Attempt to fix control menu duplication.
176
177 Fri Jul 26 09:49:35 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
178
179         * [files/drive.c]
180         GetDriveType32A(): return value for CDROM fixed.
181
182         * [files/file.c]
183         SearchPath* added.
184
185         * [if1632/gdi32.spec] [objects/brush.c]
186         SetBrushOrgEx() added.
187
188         * [loader/pe_resource.c]
189         If even loading the default entry fails, we just use the first
190         entry from the resource directory.
191
192         [loader/task.c]
193         SetSigHandler() stub added, Paradox 4.5 now starts up.
194
195         * [misc/comm.c] [include/windows.h] [if1632/kernel32.spec]
196         COMM functions updated to win32, not complete.
197
198         * [misc/lstr.c]
199         FormatMessageA partially implemented.
200
201         * [include/miscemu.h] [memory/selector.c]
202           [memory/global.c] [miscemu/dosmem.c]
203         DOS memory handling changed: 1MB preallocated block, real-mode
204         segment handling possible, SetSelectorBase into lower physical 1MB
205         possible.
206
207         * [miscemu/dpmi.c]
208         Real-mode segments changed, real-mode int 21,ax=6506 added.
209         AX=0x0303 added.
210
211         * [multimedia/time.c]
212         Fixed bug in killTimer.
213
214         * [objects/bitmap.c]
215         LoadImageA partially implemented.
216
217 Wed Jul 24 18:20:24 1996  Albrecht Kleine  <kleine@ak.sax.de>
218
219         * [include/dde_mem.h][include/dde_proc.h]
220           [ipc/dde_atom.c][ipc/dde_proc.c][windows/message.c]
221           [ipc/generic_hash.h][library/miscstubs.c]
222         Changes for error free compilation using "--with-ipc":
223         replaced some names with *16-equivalent (e.g. MSG to MSG16),
224         modified prototype of function DDE_GlobalFree() .
225
226         * [objects/palette.c]
227         Added check for metafile-DC in GDISelectPalette(),
228         GDIRealizePalette(),RealizeDefaultPalette() and
229         IsDCCurrentPalette().
230
231 Tue Jul 23 22:46:53 1996  Andrew Lewycky <plewycky@oise.utoronto.ca>
232
233         * [controls/edit.c]
234         EDIT_WM_Create: Don't EDIT_EM_ReplaceSel if created with lParam = "",
235         fixes Winhelp.
236
237         * [windows/dialog.c]
238         DIALOG_CreateIndirect: Initialise dlgProc before creating children.
239
240 ----------------------------------------------------------------------
241 Wed Jul 17 16:10:16 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
242
243         * [configure.in]
244         Generate include/config.h instead of putting everything on the
245         command-line.
246         Removed -with-malloc-debug option (not useful for end users
247         anyway).
248         Added check for memmove().
249
250         * [include/wintypes.h] [*/Makefile.in]
251         Added definition of __WINE__ symbol when compiling Wine code
252         (emulator or library) as opposed to user programs.
253
254         * [debugger/editline.c] [debugger/readline/*]
255         Moved all the readline code into debugger/editline.c. Removed the
256         readline subdirectory.
257
258         * [files/profile.c]
259         Added PROFILE_GetWineIniInt().
260
261         * [include/stackframe.h] [loader/task.c]
262         The 16-bit stackframe now also exists for Winelib (even though it
263         only ever contains one frame).
264
265         * [loader/module.c]
266         Added function MODULE_CreateDummyModule() to create a dummy Win16
267         module for Winelib and Win32.
268
269         * [memory/ldt.c]
270         Make sure the ldt entry contents will be acceptable for the Linux
271         kernel.
272
273         * [memory/selector.c]
274         Fixed SetSelectorLimit() when the limit is in pages.
275
276         * [misc/port.c]
277         Added memmove().
278
279         * [miscemu/dpmi.c]
280         Clear the segment registers that contain the selector being freed
281         in int31/ax=0001.
282         Added missing break after SelectorAccessRights call.
283
284         * [win32/struct32.c]
285         Added conversions for MDICREATESTRUCT.
286
287         * [windows/winproc.c]
288         Added message conversions for WM_MDICREATE.
289
290 Tue Jul 16 19:46:24 1996  Pavel Kankovsky <KAN@frode.dcit.cz>
291
292         * [windows/class.c]
293         Added GetExePtr() call in CLASS_FindClassByAtom().
294
295 Mon Jul 15 17:49:38 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
296
297         * [if1632/*.spec]
298         Some more trivial specs added.
299
300         * [if1632/gdi32.spec] [objects/font.c][windows/dialog.c]
301         CreateFont32* added, changed to new naming std.
302
303         * [include/windows.h] [include/mmsystem.h] [include/wintypes.h]
304         Some defines/types added.
305
306         * [win32/thread.c]
307         TlsSetValue() returns boolean.
308
309         * [win32/resource.c] [loader/pe_resource.c] [loader/resource.c]
310           [controls/menu.c] [objects/bitmap.c]
311         Cleanup of the resource functions, mostly changes to new naming
312         standard and fixing of argument types so that they agree with the
313         win16/win32 API.
314
315 Thu Jul 11 15:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
316
317         * [windows/winpos.c]
318         ShowWindow() fixes.
319
320         * [windows/mdi.c]
321         Fix reversed LPARAM in WM_MDIACTIVATE.
322
323         * [wine.ini]
324         New option AllocSystemColors tells Wine how many colors to grab
325         from the system colormap.
326
327         * [objects/bitblt.c] [objects/dc.c]
328         Fixed pink garbage over Word buttons in PseudoColor. Added
329         optional DSTINVERT shortcut for faster text selection.
330
331         * [misc/wsprintf.c]
332         Skip bogus segmented pointers in wsvnprintf16(). 
333
334         * [objects/gdiobj.c]
335         Added palette handling to UnrealizeObject(). 
336
337         * [objects/color.c] [objects/palette.c] [windows/dce.c]
338         Wine gets palette manager with support for more than 20 colors. 
339         Only PseudoColor and TrueColor visuals tested so far.
340
341         * [windows/winpos.c] [windows/win.c] 
342         Set X size hints for WS_EX_DLGMODALFRAME windows (no resize) and
343         use XReconfigureWMWindows() instead of XConfigureWindow() in
344         managed mode.
345
346         * [memory/global.c]
347         Do not allocate more than 640K of DOS memory.
348
349         * [misc/main.c]
350         Do not allow -desktop and -managed together.
351
352 ----------------------------------------------------------------------
353 Fri Jul 12 17:43:05 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
354
355         * [controls/scroll.c]
356         Use Win32 heap functions to allocate scroll-bar info structure.
357
358         * [debugger/dbg.y] [debugger/registers.c]
359         Added support for FS and GS segment registers.
360         Check that segment registers value are OK before returning from
361         the signal handler.
362
363         * [tools/build.c] [if1632/relay.c] [loader/builtin.c]
364         Changed relay debugging for Win32 function: the relay code now
365         passes the entry point address instead of the function name.
366
367         * [tools/build.c] [miscemu/*.c]
368         Added support for data entry points in Win32 DLLs.
369         Added 'cdecl' function type for Win32.
370         For 'register' function, the relay code now passes a pointer to
371         the SIGCONTEXT structure.
372         
373         * [include/registers.h] [include/wine.h]
374         Moved SIGCONTEXT structure definition in registers.h.
375
376         * [loader/pe_image.c]
377         Don't die at once if some Win32 entry points cannot be found, but
378         set them to NULL, just like we do for Win16. This allows some
379         programs to go further before crashing.
380
381         * [loader/task.c] [loader/main.c]
382         Moved global initializations from InitTask() to MAIN_Init(), as
383         they no longer need a task context with the new SEGPTR heap functions.
384
385         * [memory/string.c]
386         Added lstrcpynAtoW and lstrcpynWtoA; not real API functions, but
387         very convenient.
388
389         * [windows/graphics.c]
390         Partially implemented DrawEdge().
391
392         * [windows/timer.c] [windows/caret.c]
393         Implemented Win32 timer handling. Updated caret management to use
394         Win32 timers (avoids having to use a Win16 callback).
395
396         * [windows/win.c]
397         Prevent programs from setting some style bits with
398         SetWindowLong(). This should fix some BadMatch crashes.
399         Link new windows at the end of the linked list.
400
401         * [windows/winpos.c]
402         Don't try to activate a child window in ShowWindow().
403
404         * [windows/winproc.c]
405         Added a 32->32 thunk to support Ansi-Unicode translation.
406
407 Wed Jul 10 22:11:12 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
408
409         * [files/directory.c]
410         Additional (undocumented) return value for GetTempDrive() added.
411
412         * [files/dos_fs.c] [files/file.c] [include/windows.h]
413         GetTempFileName32* added.
414         GetShortPathName* added.
415
416         * [memory/string.c]
417         Win16 lstrcpy() can get NULL ptrs as argument and survive.
418
419         * [misc/lzexpand.c]
420         LZOpenFile(): also try opening with compressed filename if normal
421         open fails.
422
423         * [misc/ole2nls.c] [misc/lstr.c] [include/windows.h]
424         Char* added.
425         CompareString* added.
426
427 Sun Jul  7 01:22:14  Jukka Iivonen <iivonen@cc.helsinki.fi>
428
429         * [objects/font.c] [if1632/gdi32.spec]
430         CreateFontIndirect32A and CreateFontIndirect32W added.
431
432         * [misc/ole2nls.c]
433         GetUserDefaultLCID return values updated for new languages.
434         Finnish support added for GetLocaleInfoA.
435
436         * [object/palette] [gdi32.spec]
437         RealizePalette32 and SelectPalette32 added.
438         
439 Sat Jul  6 17:27:30 1996  Ronan Waide  <root@waider.ie>
440
441         * [misc/shell.c]
442         Fixup for SHELL_FindExecutable so that File->Run from progman
443         works once more. Still needs some more fixups - grep for FIXME in
444         this file.
445
446 ----------------------------------------------------------------------
447 Fri Jul  5 16:27:43 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
448
449         * [controls/desktop.c]
450         Use Windows file I/O routines to load the desktop bitmap.
451
452         * [files/file.c]
453         Implemented RemoveDirectory* and DeleteFile*.
454
455         * [include/wine.h]
456         Added SIGCONTEXT typedef to replace #define sigcontext_struct.
457
458         * [loader/task.c]
459         Fixed initial breakpoint setting for Win32 tasks.
460
461         * [misc/wsprintf.c]
462         Ignore Unicode formats for wsprintf16().
463
464         * [objects/font.c]
465         Implemented Win32 version of GetTextMetrics.
466
467         * [windows/winproc.c] [windows/win.c] [windows/class.c]
468           [windows/dialog.c]
469         Modified windows procedures to use thunks, to ensure that the
470         procedure can be called directly from the Windows program.
471
472         * [windows/win.c]
473         Added function WIN_BuildWinArray() to make it easier to enumerate
474         windows. Implemented Win32 version of EnumWindows() and friends.
475
476 Fri Jul  5 11:56:22 1996  Andreas Kirschbaum <ank@rbg.informatik.th-darmstadt.de>
477
478         * [controls/button.c] [windows/win.c]
479         Operator precedence fixes.
480
481         * [controls/edit.c]
482         Implemented ES_PASSWORD, ES_LOWERCASE and ES_UPPERCASE styles.
483         Fixed word wrap with long words.
484
485         * [debugger/debug.l]
486         New alias "where" for command "backtrace".
487
488         * [if1632/gdi.spec]
489         Corrected parameter of ExtTextOut.
490
491         * [loader/module.c]
492         Corrected printing of table of modules.
493
494         * [misc/spy.c]
495         Removed superfluous \n in message name.
496
497         * [windows/message.c]
498         Declared MSG_SendMessage as static.
499         Changed parameter of DirectedYield() from queue handle to task handle.
500         Removed warning mesages for argument of printf.
501
502         * [windows/nonclient.c]
503         Added the flag DT_NOPREFIX when drawing window titles.
504
505         * [windows/win.c]
506         WIN_WalkWindows now prints the invalid window handle.
507         Added a warning if Get-/SetWindowWord/-Long gets an invalid offset.
508
509         * [windows/winproc.c]
510         Allows creating dialog windows with NULL as dialog function.
511
512 Wed Jul  3 09:26:41 1996  Andrew Lewycky <plewycky@oise.utoronto.ca>
513
514         * [windows/event.c]
515         EVENT_key: Fixes to VK_ code generation for space bar and
516         punctuation.
517
518         * [files/file.c]
519         GetTempFileName: first character in temporary name is "~".
520
521         * [memory/heap.c]
522         HEAP_MakeInUseBlockFree now frees the whole subheap if possible.
523
524         * [objects/text.c]
525         ExtTextOut16(): handle NULL lpRect and ETO_OPAQUE.
526
527         * [misc/driver.c]
528         Removed some bugs and reformatted. Actually loads drivers now.
529
530         * [include/callback.h]
531         Added CallDriverProc() and CallWindowsExitProc().
532
533         * [loader/module.c]
534         MODULE_CallWEP(): new function.
535
536         * [misc/lzexpand.c]
537         LZSeek(): return new pointer, not old one.
538
539         * [misc/ver.c]
540         find_ne_resource(): fixed dependence on LZSeek() bug.
541         GetFileResource(): initialize reslen before using it.
542
543         * [windows/class.c]
544         SetClassWord(): add missing else.
545
546         * [objects/font.c]
547         lpFontList is now MAX_FONTS+1. It used to overwrite the array.
548         InitFontList: allocate one huge array of structures.
549         FONT_MatchFont: uppercase the face name.
550
551 Thu Jun 27 12:41:40 1996  Bruce Milner <bruce@genetics.utah.edu>
552
553         * [memory/heap.c]
554         Fixed a typo in HeapReAlloc().
555
556 Tue Jun 25 22:22:03 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
557
558         * [files/directory.c] [files/drive.c] [if1632/kernel.spec]
559           [if1632/kernel32.spec] [if1632/shell.spec] [include/windows.h]
560         GetTempPath* added
561         GetDriveType* fixed, updated to NewNameStandard.
562         GetCurrentDirectory* fixed (needs to prepend X:\).
563
564         * [controls/listbox.c]
565         Missing NULL check added.
566
567         * [if1632/winmm.spec] [loader/builtin.c]
568         winmm.dll (32bit mmsystem equivalent) specs added.
569
570         * [memory/string.c] [if1632/kernel32.spec] [include/windows.h]
571         Rtl{Move,Zero,Fill}Memory added.
572
573         * [misc/registry.c]
574         Some NULL ptr dereference bugs fixed.
575
576         * [multimedia/mcicda.c][multimedia/mcistring.c][multimedia/mmsystem.c]
577         Check for NULL ptr.
578         Fill mciOpenDrv when mixing mciOpen and mciSendString("open ..").
579         Aliasing should work for all MCI devices.
580
581         * [windows/win.c]
582         Allow passing invalid window handles to CloseWindow().
583
584 Tue Jun 25 20:02:15 1996  Jukka Iivonen <iivonen@cc.helsinki.fi>
585
586         * [files/directory.c] [if1632/kernel32.spec]
587         GetSystemDirectory32A and GetSystemDirectory32W added.
588
589         * [misc/main.c] [if1632/kernel32.spec]
590         Beep and SetEnvironmentVariable32W added.
591
592 ----------------------------------------------------------------------
593 Wed Jun 19 14:49:27 1996  Marcus Meissner <msmeissn@faui45.informatik.uni-erlangen.de>
594
595         * [files/drive.c] 
596         GetFreeDiskSpace*, GetVolumeInformation* added.
597
598         * [files/file.c]
599         FlushFileBuffers, CreateDirectory* added.
600
601         * [include/winbase.h] [include/windows.h]
602         Prototypes, defines added and fixes.
603
604         * [if1632/kernel32.spec] [include/resource32.h]
605           [win32/cursoricon32.c] [win32/resource.c] [windows/dialog.c]
606         Fixes to resource handling.
607
608         * [if1632/kernel.spec] [if1632/kernel32.spec] [if1632/user32.spec]
609         Specs for implemented functions added
610         Some thunks to functions which are same as win16 equivalents.
611
612         * [loader/task.c]
613         GetAppCompatFlags() added.
614
615         * [misc/registry.c]
616         One missing else added, small hack to RegQueryValue16().
617
618         * [win32/file.c]
619         GetFileAttributesA() fixed (was using DOS path as UNIX path).
620
621 Tue Jun 18 21:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
622
623         * [loader/ne_resource.c]
624         Fixed FreeResource() return value.
625
626         * [objects/text.c]
627         Fixed a bug in ExtTextOut() that was causing overlapped characters
628         in WinWord.
629
630         * [windows/winpos.c]
631         SWP_FRAMECHANGED for top-level windows now invalidates client
632         area as clock.exe wants.
633
634 Tue Jun 18 11:30:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
635
636         * [controls/listbox.c]
637         Mini bugfix: 'revival' of missing scrollbar in listboxes.
638
639 Mon Jun 17 20:27:41 1996  Robert Pouliot <krynos@clic.net>
640
641         * [resources/sysres_Fr.rc] [resources/TODO]
642         Made changes for Choose_Font dialog.
643
644 ----------------------------------------------------------------------
645 Sun Jun 16 16:51:31 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
646
647         * [memory/heap.c]
648         Fixed bug in HeapRealloc (thanks to Bruce Milner).
649
650         * [misc/wsprintf.c]
651         Fixed argument size for %c format in wsprintf16().
652
653         * [objects/dc.c]
654         Don't free hFirstBitmap for saved DCs.
655
656         * [windows/event.c]
657         Added timer handling in EVENT_WaitXEvent().
658
659         * [windows/message.c]
660         In MSG_TranslateMouseMsg and MSG_TranslateKbdMsg, check if the
661         event is for the current task; if not, wake the other task.
662
663         * [windows/queue.c] [include/queue.h]
664         Added 'self' handle in queue structure.
665
666         * [windows/timer.c]
667         Added TIMER_ExpireTimers() function to mark expired timers and
668         wake up the corresponding tasks.
669
670 Thu Jun 13 01:46:33 EDT 1996  William Magro <wmagro@tc.cornell.edu>
671
672         * [windows/mapping.c]
673         First point in list was mapped multiple times in DPtoLP and
674         LPtoDP.  Other points were not mapped.
675
676 Wed Jun 12 18:08:45 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
677
678         * [misc/shell.c]
679         Some fixes for ExtractIcon function family.
680
681         * [documentation/user_module]
682         Chapter about windowing and messaging subsystems.
683
684 ----------------------------------------------------------------------
685 Tue Jun 11 15:20:43 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
686
687         * [debugger/break.c] [loader/signal.c]
688         Fixed breakpoints in 32-bit code.
689
690         * [include/windows.h]
691         Added many more Win32 versions of standard structures.
692
693         * [include/winreg.h] [misc/registry.c]
694         Moved private types into registry.c.
695
696         * [memory/string.c] (New file)
697         Moved most string functions from misc/lstr.c; added Win32 version
698         of all functions.
699
700         * [misc/wsprintf.c]
701         Implemented Win32 wsprintf functions.
702
703         * [objects/bitmap.c]
704         Implemented Win32 bitmap functions.
705
706         * [windows/dialog.c]
707         Don't set dialog procedure before the controls are created. This
708         avoids a crash in Winhelp.
709
710 Tue Jun 11 14:10:06 1996 Martin von Loewis <loewis@informatik.hu-berlin.de>
711
712         * [controls/menu.c] [if1632/user.spec] [windows/message.c]
713         Replace PeekMessage with PeekMessage16.
714
715         * [if1632/kernel32.spec][misc/main.c]
716         GetVersion32,GetVersionEx32A,GetVersionEx32W: new functions.
717         MAIN_ParseVersion: new function, new command line option -winver.
718         GetVersion: modified to take command line argument into account.
719
720         * [if1632/kernel32.spec] [win32/process.c]
721         FreeLibrary32: new function.
722         TlsAlloc: initialize Tls to zero.
723         InterlockedIncrement,InterlockedDecrement,InterlockedExchange: new
724         functions.
725
726         * [if1632/kernel32.spec]
727         SetErrorMode,GetActiveWindow: new relays to existing functions.
728
729         * [if1632/kernel32.spec][win32/user32.c]
730         PeekMessage32A,PeekMessage32W: new functions.
731
732         * [include/struct32.h][include/windows.h]
733         Moved MSG32 to windows.h.
734         Renamed MSG to MSG16.
735         Modified prototypes to use MSG16
736
737         * [include/winbase.h]
738         OSVERSIONINFO32A,OSVERSIONINFO32W: new structures.
739
740 Sun Jun  9 20:53:30 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
741
742         * [if1632/Makefile.in] [loader/builtin.c]
743         version.dll,lz32.dll added.
744
745         * [include/lzexpand.h] [if1632/lz32.spec] [if1632/lzexpand.spec]
746           [misc/lzexpand.c]
747         lz32.dll added.
748         Modified to new function naming standard.
749
750         * [include/ver.h] [if1632/ver.spec] [if1632/version.spec] [misc/ver.c]
751         version.dll added (win32 version of ver.dll).
752         Modified to new function naming standard.
753         Use registry to look up a LOCALE langids too.
754         (VerInstallFile,VerFindFile still stubs)
755
756 Fri Jun  7 20:40:20 1996  Albrecht Kleine  <kleine@ak.sax.de>
757
758         * [files/file.c]
759         Added a warning if GetTempFileName() gets a bad drive parameter.
760
761         * [misc/commdlg.c]
762         Changed file listbox color to gray in SaveFile dialog 
763         (just like Windows does this).
764
765 ----------------------------------------------------------------------
766 Wed Jun  5 20:13:54 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
767
768         * [controls/button.c] [controls/listbox.c]
769         Fixed wParam of WM_DRAWITEM message.
770
771         * [if1632/Makefile.in] [loader/builtin.c]
772         Remove WPROCS32 DLL, as the relay code can call Wine routines
773         directly.
774
775         * [loader/module.c] [loader/ne_image.c]
776         Fixed initial stack layout for self-loading modules.
777
778         * [tools/build.c]
779         Fixed data segment building for Win16 modules.
780
781         * [windows/defdlg.c]
782         Implemented Win32 versions of DefDlgProc().
783
784         * [windows/dialog.c]
785         Merged Win16 and Win32 dialog code.
786         Added support for control extra data in dialog item template.
787
788         * [windows/win.c]
789         Unified Win16 and Win32 versions of CreateWindow().
790         Implemented Win32 version of GetWindowLong().
791
792         * [windows/winproc.c]
793         Changed the implementation of window procedures, so that 16-bit
794         winprocs are valid segmented pointers.
795
796 Sun Jun  2 16:39:46 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
797
798         * [misc/registry.c]
799         Fixed another bug in the w95 loader. Quietened some debug output.
800
801 Sun Jun  2 10:00:22 1996  Ulrich Schmid  <uschmid@mail.hh.provi.de>
802
803         * [windows/winproc.c]
804         Bug fix: WM_PARENTNOTIFY: don't fall through to WM_SETTEXT.
805
806 Sat Jun  1 12:37:22 1996  Tristan Tarrant <tst@sthinc.demon.co.uk>
807
808         * [resources/TODO] [resources/sysres_It.rc]
809         Updated font dialog box.
810
811 Thu May 30 21:05:19 1996  Albrecht Kleine  <kleine@ak.sax.de>
812
813         * [include/commdlg.h] [misc/commdlg.c]
814         ChooseFont() and ChooseColor(): 
815         Bugfixes and added more support for some CF_* and CC_* flags: 
816         dialog templates and font size control.
817         Bugfix in structure definition of CHOOSECOLOR definition.
818
819         * [ipc/dde_proc.c] [windows/event.c]
820         Replaced SendMessage with SendMessage16 and added inclusion of
821         dde_proc.h for error-free compilation of ipc module.
822
823 Thu May 30 19:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
824
825         * [windows/scroll.c]
826         Made ScrollDC to save/restore current clipping region.
827
828         * [misc/clipboard.c] [windows/event.c]
829         Implemented most of the previously missing features (not tested), 
830         improved text pasting from/to X. 
831
832         * [if1632/user.spec] [if1632/gdi.spec] [objects/dc.c]
833           [objects/gdiobj.c] [objects/clipping.c] [windows/dce.c]
834           [windows/winpos.c] [windows/painting.c]
835         Updated DCE code, implemented dynamic invalidation of owned DCs.
836         This fixes a lot of problems with scrolling in WinWord. Not
837         sure about the effect on -desktop.
838
839 Wed May 29 23:35:44 1996  Jukka Iivonen <iivonen@cc.helsinki.fi>
840
841         * [win32/time.c] [if1632/kernel32.spec]
842         Added SetSystemTime and SetTimeZoneInformation.
843
844         * [if1632/kernel32.spec]
845         Added lstrcat, lstrcatA, lstrcmp, lstrcmpA, lstrcpy, lstrlen.
846
847         * [include/windows.h]
848         Added SYSTEM_POWER_STATUS structure and prototypes for
849         GetSystemPowerStatus, SetSystemPowerState, SetSystemTime.
850
851         * [include/kernel32.h]
852         Added a prototype for SetTimeZoneInformation.
853
854         * [win32/environment.c] [if1632/kernel32.spec]
855         Added GetSystemPowerStatus and SetSystemPowerState stubs.
856
857 ----------------------------------------------------------------------
858 Tue May 28 19:36:36 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
859
860         * [controls/combo.c]
861         Destroy the listbox and edit control when destroying the
862         combo. This should prevent crashes on application exit.
863
864         * [misc/system.c] [if1632/system.spec]
865         Implemented InquireSystem().
866
867         * [loader/task.c] [windows/message.c] [windows/queue.c]
868         First attempt at inter-task SendMessage(). Still has a lot of
869         problems.
870
871 Tue May 28 14:26:04 1996  Peter Bajusz  <hyp-x@inf.bme.hu>
872
873         * [windows/mdi.c]
874         Fixed MDITile with iconic children.
875
876 Mon May 27 20:28:18 1996  Albrecht Kleine  <kleine@ak.sax.de>
877
878         * [misc/commdlg.c]
879         ChooseFont dialog:
880         - complete rewrite of FontFamilyEnumProc() and FontStyleEnumProc()
881           not real available font types (e.g. "Bold") can not selected
882         - supporting more CF_LIMITSIZE- and CF_...ONLY- flags
883
884         * [objects/font.c]
885         In FONT_MatchFont perform check if "lfFaceName" is family from X11
886         only if "lfFaceName" is a windows font family then do a call of
887         FONT_TranslateName() : this results in better font selections in 
888         ChooseFont() or applications like charmap.exe or write.exe.
889         Added a ParseFontParms() call if necessary in function 
890         FONT_MatchFont(): we need a font name as basis for GetTextFace() 
891         even if there isn't one...
892
893         * [resources/TODO]
894         Inventory of resource translations in sysres_??.rc
895
896 Fri May 24 16:33:28 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
897
898         * [misc/registry.c]
899         _w95_loadreg: use offset to determine next RGDB position too.
900
901 Thu May 23 19:35:38 1996  Greg Kreider <kreider@natlab.research.philips.com>
902
903         * [controls/combo.c]
904         Fixed size of combo, lbox, and button (lb sometimes off by 2 pixels).
905
906         * [misc/main.c]
907         Result of option "-fixedmap" is to turn flag on.
908
909 Thu May 23 19:15:41 1996  Ronan Waide  <root@waider.ie>
910
911         * [misc/shell.c]
912         ShellExecute and FindExecutable now both use common code to
913         determine the required executable file.
914
915 ----------------------------------------------------------------------
916 Tue May 21 14:06:07 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
917
918         * [controls/button.c]
919         Made ButtonWndProc a 32-bit window procedure.
920
921         * [controls/desktop.c]
922         Made DesktopWndProc a 32-bit window procedure.
923         Added handling of WM_SETCURSOR.
924
925         * [controls/menu.c]
926         Allocate menu items and strings on the 32-bit system heap.
927         Implemented Win32 versions for ChangeMenu, InsertMenu, ModifyMenu,
928         AppendMenu and LoadMenuIndirect.
929
930         * [controls/widgets.c]
931         Added possibility to have 32-bit built-in classes.
932
933         * [files/drive.c]
934         Implemented GetLogicalDrive() and GetLogicalDriveStrings().
935
936         * [misc/spy.c] [include/spy.h]
937         Added support for spying Win32 messages.
938
939         * [loader/builtin.c]
940         Fixed bug in -dll option parsing.
941
942         * [memory/local.c]
943         Added back the change by Huw D. M. Davies to free the block in
944         LocalRealloc() before allocating the new one.
945
946         * [objects/bitmap.c] [objects/cursoricon.c] [objects/oembitmap.c]
947         Fixed bug in bitmap size that caused memory corruption for 24bpp.
948
949         * [windows/defwnd.c]
950         Implemented Win32 version of DefWindowProc().
951
952         * [windows/dialog.c]
953         Implemented Win32 version of SendDlgItemMessage,
954         Get/SetDlgItemText and Get/SetDlgItemInt.
955
956         * [windows/mdi.c]
957         Implemented Win32 version of DefFrameProc() and DefMDIChildProc().
958         Don't make a copy of the OBM bitmaps for every MDI window.
959
960         * [windows/message.c]
961         Implemented Win32 version of SendMessage().
962         
963         * [windows/winproc.c] [windows/class.c] [windows/win.c]
964         New scheme for 32-bit window procedures to replace aliases. All
965         32-bit window procedure get a 16-bit address pointing to a
966         WINDOWPROC structure.
967         Implemented Ansi<->Unicode translation for CallWindowProc().
968         Added translation of WM_DRAWITEM between Win16 and Win32.
969
970         * [windows/win.c] [include/callback.h]
971         Added ugly hack to build CREATESTRUCT on the stack when sending
972         WM_NCCREATE.
973         Implemented Win32 version of Get/SetWindowWord/Long and
974         Get/SetWindowText.
975         
976 Fri May 17 10:20:16 1996  Albrecht Kleine  <kleine@ak.sax.de>
977
978         * [controls/button.c]
979         Avoid gray text on gray background in disabled push buttons
980         using a b/w raster and some raster operations (PatBlt,BitBlt).
981
982         * [objects/text.c]
983         DrawText(): don't draw an underbar anymore if DT_CALCRECT is set.
984
985 ----------------------------------------------------------------------
986 Thu May 16 13:35:31 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
987
988         * [*/*.c]
989         Renamed RECT, POINT and SIZE structures to RECT16, POINT16 and
990         SIZE16. Implemented Win32 version of most functions that take
991         these types as parameters.
992
993         * [configure]
994         Patched autoconf to attempt to correctly detect -lnsl and
995         -lsocket. Please check this out.
996         
997         * [controls/button.c]
998         Added support for Win32 BM_* messages.
999
1000         * [controls/menu.c]
1001         Avoid sending extra WM_MENUSELECT messages. This avoids crashes
1002         with Excel.
1003
1004         * [memory.heap.c] [include/heap.h]
1005         Added support for SEGPTRs in Win32 heaps. Added a few macros to
1006         make using SEGPTRs easier. They are a bit slower than MAKE_SEGPTR,
1007         but they work with Win32.
1008
1009         * [memory/atom.c]
1010         Implemented Win32 atom functions.
1011
1012         * [memory/local.c]
1013         Fixed LocalReAlloc() changes to avoid copying the whole block twice.
1014
1015         * [win32/memory.c]
1016         Use /dev/zero instead of MAP_ANON for VirtualAlloc().
1017
1018         * [windows/class.c]
1019         Properly implemented the Win32 class functions.
1020
1021         * [windows/winproc.c] (New file)
1022         New file handling the message translation between Win16 and Win32.
1023
1024 Mon May 13 18:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
1025
1026         * [windows/mdi.c] [windows/menu.c]
1027         Improved WM_MDICREATE and WM_MDICASCADE handling.
1028
1029         * [windows/event.c] [objects/bitblt.c]
1030         Handle GraphicsExpose event for BitBlt from screen to screen.
1031
1032         * [windows/event.c] [windows/win.c] [windows/nonclient.c]
1033         Bunch of fixes for problems with -managed.
1034
1035         * [windows/win.c] [windows/winpos.c]
1036         Changed conditions for WM_SIZE, WM_MOVE, and WM_GETMINMAXINFO
1037         in CreateWindow.
1038
1039         * [windows/win.c] [windows/queue.c] [misc/user.c]
1040         Do not send WM_PARENTNOTIFY when in AppExit and call WH_SHELL
1041         on window creation/destruction.
1042
1043         * [objects/palette.c]
1044         Crude RealizePalette(). At least something is visible in LviewPro.
1045
1046 Sun May 12 02:05:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
1047
1048         * [if1632/gdi32.spec]
1049         Added Rectangle (use win16 version).
1050
1051         * [if1632/kernel32.spec]
1052         Added GetWindowsDirectoryA (use win16 GetWindowsDirectory).
1053
1054         * [if1632/user32.spec]
1055         Added GetSubMenu, MoveWindow, SetScrollPos, SetScrollRange (use win16
1056         versions).
1057         Added SetWindowsHookExA (empty stub for now).
1058
1059         * [include/handle32.h]
1060         Changed #include <malloc.h> to #include <stdlib.h> to prevent
1061         hate message from FreeBSD compiler.
1062
1063         * [win32/newfns.c]
1064         Added new function SetWindowsHookEx32A (empty stub for now).
1065
1066         * [win32/user32.c]
1067         Removed redundant debugging printf statement.
1068
1069 Sun May 12 01:24:57 1996  Huw D. M. Davies <h.davies1@physics.oxford.ac.uk>
1070
1071         * [memory/local.c]
1072         Avoid creating adjacent free blocks.
1073         Free the block in LocalReAlloc() before allocating a new one.
1074         Fixed LocalReAlloc() for discarded blocks.
1075         
1076 Fri May 10 23:05:12 1996  Jukka Iivonen <iivonen@cc.helsinki.fi>
1077
1078         * [resources/sysres_Fi.rc]
1079         ChooseFont and ChooseColor dialogs updated.
1080
1081 Fri May 10 17:19:33 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
1082
1083         * [files/drive.c,if1632/kernel.spec]
1084         GetCurrentDirectory(),SetCurrentDirectory() implemented.
1085
1086         * [if1632/advapi32.spec] [if1632/kernel.spec] [if1632/shell.spec]
1087           [include/windows.h] [include/winreg.h] [loader/main.c]
1088           [misc/main.c] [misc/shell.c] [misc/registry.c]
1089         Registry fixes:
1090         - loads win95 registry databases,
1091         - save only updated keys on default,
1092         - now adhers to the new function naming standard,
1093         - minor cleanups.
1094
1095 Tue May 7 22:36:13 1996  Albrecht Kleine  <kleine@ak.sax.de>
1096
1097         * [combo.c]
1098         Added WM_COMMAND-handling for interaction between EDIT and COMBOLBOX
1099         and synchronized mine with Greg Kreider's works.
1100
1101         * [commdlg.c]
1102         Bugfix in ChooseFont: font size handling.
1103
1104 ----------------------------------------------------------------------
1105 Mon May  6 12:56:26 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1106
1107         * [DEVELOPERS-HINTS]
1108         Added paragraph on naming conventions for Win16/Win32/Winelib.
1109
1110         * [controls/menu.c]
1111         Create a default system menu that is the same for all windows
1112         instead of making a copy every time.
1113
1114         * [include/wintypes.h]
1115         Added WINELIB_NAME and DECL_WINELIB_TYPE macros.
1116         Added xx16 and xx32 definitions for most types. General clean-up.
1117
1118         * [memory/global.c] [memory/local.c] [*/*]
1119         Renamed Global and Local heap functions to xxx16. Added all xxx32
1120         versions of the same functions.
1121
1122         * [memory/selector.c]
1123         Mask out lower bits of selector in FreeSelector().
1124
1125         * [misc/lstr.c]
1126         Fixed wvsprintf().
1127
1128         * [windows/class.c]
1129         Changed the class structure to make Win32 support easier.
1130
1131         * [windows/defwnd.c]
1132         Added handling of WM_INITMENUPOPUP for system menu to gray out
1133         invalid options.
1134
1135         * [windows/winpos.c]
1136         Bug fix: the WINDOSPOS structure pointer in WM_NCCALCSIZE must be
1137         a SEGPTR.
1138
1139 Sun May  5 03:51:26 1996  Huw D. M. Davies <h.davies1@physics.oxford.ac.uk>
1140
1141         * [memory/local.c]
1142         Implementation of moveable and (rudimentary) support for
1143         discardable local memory, plus several bug fixes.
1144
1145 Sat May  4 18:33:35 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
1146
1147         * [include/windows.h] [windows/win.c] [if1632/user.spec] 
1148         FindWindowEx() implemented (someone reported it was missing
1149         for FrameMaker 4.1).
1150
1151         * [if1632/kernel32.spec] [if1632/user32.spec] [win32/memory.c]
1152           [win32/resource.c]
1153         Misc small stubs/small functions which bring win95 binaries
1154         further down the road. (IsBadCodePtr, LocalReAlloc,GetCursorPos)
1155         Small fix in WIN32_LoadAcceleratorsA.
1156
1157 Fri May  3 19:43:12 1996  Frans van Dorsselaer <dorssel@rulhm1.LeidenUniv.nl>
1158
1159         * [controls/edit.c] [controls/EDIT.TODO]
1160         Changed / fixed some types and typecasts.
1161         Fixed the scrollbar reset after WM_SETHANDLE / WM_SETTEXT.
1162         Added heap initialization in WM_CREATE.
1163
1164 Fri May  3 19:30:02 1996  Greg Kreider <kreider@natlab.research.philips.com>
1165
1166         * [controls/combo.c] [controls/listbox.c]
1167         Pass WM_[HV]SCROLL to listbox, but not combo.
1168         Don't try to redraw non-existant scroll bars (changes dwStyle flags).
1169         Combo box gets border.
1170         Combo box includes button (otherwise button won't trigger dropdown).
1171         Proper border around RectButton.
1172         Check size consistancy of combo, listbox, and button after resizing 
1173         or before painting.  These routines still aren't completely correct.
1174         Localize size checks in separate routines.
1175         Listboxes are white.
1176
1177 Thu May  2 19:21:23 1996  Albrecht Kleine  <kleine@ak.sax.de>
1178
1179         * [controls/combo.c][include/commdlg.h][include/commdlg.c]
1180           [resources/sysres_De.rc][resources/sysres_En.rc]
1181         Introduced ChooseFont dialog, but needed some patches in 
1182         handling of comboboxes with edit controls.
1183
1184 Tue Apr 30 00:33:27 1996  Ulrich Schmid  <uschmid@mail.hh.provi.de>
1185
1186         * [programs/winhelp/*]
1187         Added a help viewer and a simple `.hlp' to `.sgml' converter.
1188
1189 Mon Apr 29 14:17:57 1996  Tristan Tarrant <tst@sthinc.demon.co.uk>
1190
1191         * [resources/sysres_*.rc] [misc/shell.c]
1192         Modified size of "About" dialog boxes.
1193
1194 Sat Apr 27 18:10:11 Martin von Loewis <loewis@informatik.hu-berlin.de>
1195
1196         * [if1632/Makefile.in][loader/builtin.c]
1197         crtdll.spec, ntdll.spec, wsock32.spec: new files.
1198
1199         * [loader/pe_image.c]
1200         Fix error message if import by ordinal failed.
1201
1202 ----------------------------------------------------------------------
1203 Sun Apr 28 14:32:43 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1204
1205         * [Makefile.in]
1206         Subdir memory is now also compiled for Winelib, in order to get
1207         the Win32 heap functions.
1208
1209         * [if1632/Makefile.in]
1210         Renamed winprocs and winprocs32 to wprocs and wprocs32 to avoid
1211         DLL names > 8 characters.
1212
1213         * [loader/builtin.c] (New file)
1214         Grouped all built-in DLLs code in a single file.
1215
1216         * [memory/global.c]
1217         Use the Win32 heap code instead of malloc() to allocate linear
1218         memory. This will help test the heap code.
1219
1220         * [memory/local.c]
1221         Fixed FreeSelector() to clear DS and ES correctly for huge blocks.
1222
1223         * [tools/build.c] [if1632/relay.c]
1224         Removed 'id' directive in spec files. For relay debugging, the DLL
1225         entry point is now computed from the CS:IP entry point address.
1226         Added 'heap' directive to specifiy a local heap for the DLL. USER
1227         and GDI heap are now created this way.
1228
1229         * [windows/class.c] [include/class.h]
1230         Changed the class structure to use pointers instead of handles.
1231         Changed Get/SetClassWord/Long to use a switch statement; this
1232         allows changing the layout of the CLASS structure.
1233
1234         * [windows/win.c] [include/win.h]
1235         Use a CLASS * instead of a handle for the window class.
1236
1237 Sat Apr 27 18:10:11 Martin von Loewis <loewis@informatik.hu-berlin.de>
1238
1239         * [if1632/kernel32.spec] [memory/global.c]
1240           [win32/memory.c] [win32/process.c]
1241         GetProcessAffinityMask,GlobalLock,IsBadReadPtr,IsBadWritePtr,
1242         LocalLock,SetThreadAffinityMask: new relays.
1243
1244         * [win32/cursoricon32.c]
1245         Return same handle if a cursor is loaded multiple times.
1246
1247 Sat Apr 27 15:13:37 1996  Bang Jun Young <bangjy@nownuri.nowcom.co.kr>
1248
1249         * [resources/sysres_Ko.rc]
1250         Added support for Korean [Ko] language.
1251
1252 Fri Apr 26 00:49:05 1996  Huw D. M. Davies <h.davies1@physics.oxford.ac.uk>
1253
1254         * [objects/dc.c] [objects/font.c]
1255         Fixed problem with SaveDC()/RestoreDC() and font cache 'used' count.
1256
1257         * [objects/metafile.c] [objects/dcvalues.c]
1258         Fixed broken SetTextAlign() on metafiles.
1259
1260         * [objects/metafile.c]
1261         Delete objects in handle table at end of PlayMetaFile().
1262
1263 Wed Apr 24 19:21:01  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
1264
1265         * [if1632/ver.spec] [misc/ver.c] [include/ver.h] (New files)
1266         VER.DLL (partially) implemented (VerFindFile,VerInstallFile)
1267         [If it doesn't work for you, use -dll -ver and report it to me]
1268
1269         * [if1632/user32.spec] [if1632/kernel32.spec] [if1632/shell.spec]
1270           [if1632/shell32.spec] [misc/ole2nls.c] [windows/message.c]
1271           [windows/graphics.c]
1272         Simple win32 functions, where we can just use the win16 counterpart.
1273         Misc. stubs. 
1274
1275         * [misc/lstr.c]
1276         Someone reported a _lstrlen(NULL). NULL is a valid argument. Fixed.
1277
1278         * [misc/registry.c]
1279         Some alloclens were off by 1, one double fclose() fixed.
1280         Requesting value 0 of a key with no values returns an error 
1281         (should we always return a made up value NULL? what does win3.1?)
1282
1283 Tue Apr 23 17:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
1284
1285         * [misc/shell.c]
1286         Implemented FindEnvironmentString(), DoEnvironmentSubst(),
1287         ExtractIcon(), InternalExtractIcon() and ExtractAssociatedIcon().
1288
1289         * [misc/user.c]
1290         Do extensive cleanup on application exit.
1291
1292         * [windows/hook.c] [windows/win.c] [windows/class.c]
1293         Added miscellaneous cleanup routines.
1294
1295         * [controls/menu.c]
1296         More efficient popup menu window handling.
1297
1298 Mon Apr 22 21:35:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
1299
1300         * [include/windows.h][objects/oembitmap.c][include/bitmaps/obm_trtype]
1301         Added "TT-bitmap" for later usage in a ChooseFont() ownerdraw combobox.
1302
1303 ----------------------------------------------------------------------
1304 Sat Apr 20 23:23:16 1996  Robert Pouliot <krynos@qbc.clic.net>
1305
1306         * [resources/sysres_Fr.rc] [resources/TODO]
1307         Made changes for Choose_Color dialog.
1308
1309 Sat Apr 20 15:43:49 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1310
1311         * [controls/button.c]
1312         Fixed test that got miscompiled by some old gcc versions.
1313
1314         * [memory/local.c]
1315         Fixed the layout of handle tables so that moveable handle entries
1316         can be freed on LocalFree().
1317         Implemented LocalFlags(), LocalCountFree(), LocalHandleDelta() and
1318         GetHeapSpaces().
1319
1320         * [misc/main.c] [ANNOUNCE]
1321         Update the list of contributors. Please let me know if I forgot
1322         someone.
1323
1324 Fri Apr 19 20:07:20 1996  Frans van Dorsselaer  <dorssel@rulhm1.leidenuniv.nl>
1325
1326         * [controls/edit.c] [controls/EDIT.TODO]
1327         Fixed EM_SETHANDLE / WM_CREATE / EDIT_MakeFir() buffer allocation.
1328         Fixed ES_NOHIDESEL / WM_MOUSEMOVE / WM_LBUTTONDOWN implementation.
1329         Added WM_ENABLE implementation (gray text).
1330         Fixed buffer > 32767 bug.
1331         Fixed argument types / typecasting.
1332         Faster selection (re)drawing.
1333
1334 Thu Apr 18 13:38:26 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
1335
1336         * [misc/registry.c] [include/winreg.h]
1337         Changed savefile format again to human readable/editable
1338         (UNICODE chars >0xff are specified by \uXXXX, data by XX).
1339         Has now global / local registry databases (including merging them).
1340         HKEY_CLASSES_ROOT == HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes.
1341         HKEY_CURRENT_USER == HKEY_USERS\\<loginname>.
1342
1343         * [misc/comm.c]
1344         Allow " " as COMx: ... spec delimiter too.
1345         (AOL-CD setup.exe tries to initialize modem2 as "9600,x,x x" (can't 
1346         remember the x).
1347
1348 Thu Apr 18 09:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
1349
1350         * [windows/mdi.c]
1351         Miscellaneous changes.
1352
1353         * [windows/winpos.c] 
1354         Use BitBlt whenever possible in SetWindowPos.
1355
1356         * [windows/painting.c]
1357         Fix incompatibilities with hrgnUpdate being 1.
1358
1359 Wed Apr 17 19:19:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
1360
1361         * [misc/commdlg.c]
1362         Many bugfixes in ChooseColor dialog.
1363         Added a user defined dialog title in FileOpen-/FileSave- dialog.
1364
1365         * [misc/commdlg.c][include/commdlg.h]
1366           [if1632/commdlg.spec][if1632/winprocs.spec]
1367         Introduced dialog-, callback- and enum- stub functions
1368         for ChooseFont dialog
1369
1370 Wed Apr 17 19:08:38 1996  Niels de Carpentier  <niels@cindy.et.tudelft.nl>
1371
1372         * [objects/metafile.c] [include/metafile.h] [if1632/gdi.spec]
1373         Implemented EnumMetaFile and CopyMetaFile. Removed METAFILE struct.
1374         Implemented META_STRETCHDIB in PlayMetaFileRecord, several bug 
1375         fixes.
1376
1377         * [windows/winpos.c]
1378         Don't try to hide the window if it's already hidden.
1379
1380         * [windows/message.c]
1381         Let MSG_PeekHardwareMsg fill the message queue with events if
1382         it's empty.
1383
1384 Wed Apr 17 17:54:04 1996  Tristan Tarrant <tst@sthinc.demon.co.uk>
1385
1386         * [resources/sysres_It.rc]
1387         Updated to support the new CHOOSE_COLOR_DIALOG.
1388
1389 Tue Apr 16 11:50:00 1996  Anand Kumria <akumria@ozemail.com.au>
1390
1391         * [if1632/Makefile] [if1632/relay.c] [if1631/w32sys.spec]
1392           [include/w32sys.h] [include/dlls.h]
1393           [misc/Makefile] [misc/w32sys.c]
1394         W32SYS.DLL partially implemented.
1395
1396 ----------------------------------------------------------------------
1397 Sun Apr 14 12:51:27 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1398
1399         * [controls/menu.c] [include/dialog.h] [windows/dialog.c]
1400         Made the resource loading code always use the correct Windows
1401         layout for Winelib on other CPUs.
1402
1403         * [include/module.h] [loader/module.c]
1404         Added self handle in NE_MODULE structure, so we can use a pointer
1405         instead of a handle.
1406         Added function MODULE_GetPtr() to validate a HMODULE.
1407
1408         * [memory/heap.c]
1409         Implemented Win32 heap management.
1410
1411         * [memory/selector.c]
1412         Fix selector limit for huge blocks.
1413
1414 Sat Apr 13 00:19:12 1996  Huw D. M. Davies <h.davies1@physics.oxford.ac.uk>
1415
1416         * [objects/metafile.c]
1417         Fixed memcpy bug to allow memory based metafiles to work.
1418
1419 Fri Apr 12 19:25:41 1996  Frans van Dorsselaer  <dorssel@rulhm1.leidenuniv.nl>
1420
1421         * [controls/edit.c] [controls/EDIT.TODO]
1422         Complete rewrite.  Everything changed: new features, new bugs.
1423         Main addition: WordWrap.
1424
1425 Fri Apr 12 20:29:55 1996  Tristan Tarrant <tst@dcs.ed.ac.uk>
1426
1427         * [resources/sysres_It.rc]
1428         Fixed a few mistakes in the file and resized some of the controls.
1429
1430 Fri Apr 12 09:55:13 1996  John Harvey <john@division.co.uk>
1431
1432         * [misc/winsocket.c]
1433         Fixed broken #if defined that stopped unixware compiling.
1434
1435         * [win32/resource.c]
1436         Added missing return to end of FindResource32.
1437
1438 Thu Apr 11 18:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
1439
1440         * [windows/keyboard.c] [windows/event.c]
1441         Fixed GetKeyState for mouse buttons.
1442
1443         * [windows/message.c]
1444         WM_MOUSEACTIVATE wasn't sent in some cases.
1445
1446 Wed Apr 10 18:59:53 1996  Niels de Carpentier  <niels@cindy.et.tudelft.nl>
1447
1448         * [objects/font.c]
1449         Match slightly bigger font if height negative.
1450
1451 Mon Apr  8 13:46:15 1996  Deano Calver <deano@rattie.demon.co.uk>
1452
1453         * [multimedia/mmsystem.c]
1454         Changed read's to FILE_read's in mmsystem to fix mmio bug.
1455
1456 Sun Apr  7 21:40:29 1996  Albrecht Kleine  <kleine@ak.sax.de>
1457
1458         * [misc/commdlg.c] [resources/sysres_En.rc] [resources/sysres_De.rc]
1459         Introduced ColorDlgProc() for ChooseColor() and replaced fitting
1460         En-,De- resources. 
1461         As written in TODO: some national language support is needed here.
1462
1463 ----------------------------------------------------------------------
1464 Fri Apr  5 15:22:55 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1465
1466         * [controls/button.c] [controls/static.c]
1467         Changes to use WND * wherever possible.
1468
1469         * [debugger/dbg.y] [debugger/debug.l]
1470         Added 'info module' and 'walk module' commands.
1471
1472         * [if1632/Makefile.in] [if1632/relay.c] [tools/build.c]
1473         Added assembly code generation to call from Wine into 32-bit code.
1474         Changed all 'call32' references in 'callfrom16' to avoid confusion
1475         with Win32 routines.
1476
1477         * [include/callback.h]
1478         Added prototypes for 32-bit callbacks.
1479
1480         * [loader/module.c] [if1632/relay32.c] [tools/build.c]
1481         Unified 16- and 32-bit modules. The fake module for 32-bit DLLs is
1482         now generated by the build program.
1483
1484         * [include/module.h]
1485         Added extra info to NE_MODULE for Win32 modules to point to the PE
1486         module data.
1487
1488         * [include/pe_image.h] [loader/pe_image.c] [win32/resource.c]
1489         Removed the wine_files list. The PE data for a module can now be
1490         accessed with the NE_WIN32_MODULE macro.
1491
1492         * [loader/signal.c] [miscemu/instr.c]
1493         Don't start the BIOS timer at startup, but only after an access to
1494         the 0x40 segment.
1495
1496         * [memory/local.c]
1497         Changed LOCAL_Lock() to return a 32-bit pointer.
1498
1499         * [misc/main.c] [include/dlls.h]
1500         Some built-in DLLs (like KERNEL) can no longer be disabled from
1501         the command-line.
1502         
1503 Thu Apr  4 19:54:39 1996  Keith Reynolds <keithr@sco.COM>
1504
1505         * [*/*]
1506         A lot of small changes to support SCO OpenServer 5.
1507
1508 Thu Apr  4 15:38:13 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
1509
1510         * [controls/edit.c]
1511         Fixed GetKeyState() call to use 0x8000 convention.
1512
1513         * [include/windows.h]
1514         Added undocumented messages EM_SCROLL and EM_GETTHUMB.
1515
1516 Thu Apr  4 09:52:52 1996  John Harvey <john@division.co.uk>
1517
1518         * [if1632/except.S]
1519         Modified code to assemble on unixware.
1520
1521 Wed Apr  3 09:38:26 1996  Juergen Marquardt <marqu@lunar.advantest.de>
1522
1523         * [objects/font.c]
1524         Implementation of a second font cache which will be updated
1525         dynamically.
1526
1527 Mon Apr  1 16:47:40 1996  Robert Pouliot <krynos@qbc.clic.net>
1528
1529         * [resources/sysres_Cz.rc] [resources/sysres_Da.rc]
1530           [resources/sysres_De.rc] [resources/sysres_Eo.rc]
1531           [resources/sysres_Es.rc] [resources/sysres_Fi.rc]
1532           [resources/sysres_No.rc] [resources/TODO]
1533         Updated FIND_TEXT and REPLACE_TEXT to work like the English version.
1534
1535 ----------------------------------------------------------------------
1536 Sun Mar 31 13:54:46 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1537
1538         * [tools/build.c]
1539         Changed BuildSpec32Files() to generate assembly instead of C code.
1540         Unified -spec16 and -spec32 options; DLL type is now determined by
1541         the 'type' declaration in the .spec file.
1542         New -stdcall option to build all stdcall assembly relays.
1543
1544         * [if1632/relay.c] [if1632/relay32.c] [include/dlls.h]
1545         Started to unify 16- and 32-bit builtin DLLs.
1546
1547         * [loader/module.c]
1548         Added MODULE_GetWndProcEntry32() to mirror MODULE_GetWndProcEntry16().
1549
1550         * [loader/pe_image.c] [loader/resource.c]
1551         All modules now have a NE signature, and can be distinguished by
1552         the NE_FFLAGS_WIN32 flag.
1553
1554         * [windows/alias.c]
1555         Aliases for built-in window procedures are now all created at
1556         startup in ALIAS_Init().
1557
1558 Fri Mar 29 14:56:39 1996  Greg Kreider <kreider@natlab.research.philips.com>
1559
1560         * [controls/combo.c]
1561         Limit rectangle to clear to size of item when painting combo, not
1562         default.  Only draw items in list when there is enough room for them.
1563
1564         * [controls/listbox.c]
1565         Get the measure of every item that's added and store in the item's
1566         data structure.  Scroll listbox if mouse near edge of box.  Only
1567         draw items in list when there is enough room.
1568
1569 Fri Mar 29 12:00:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
1570
1571         * [windows/defwnd.c] [windows/dialog.c] [windows/mdi.c]
1572           [windows/nonclient.c] [controls/menu.c] 
1573         Various changes for better keyboard handling. 
1574
1575         * [windows/event.c] [windows/message.c] [misc/keyboard.c]
1576         Proper keyboard message ordering, working GetKeyState() (finally!), 
1577         improvements in ToAscii().
1578
1579         * [windows/win.c] [windows/message.c]
1580         Small improvements in WIN_FindWinToRepaint.
1581
1582         * [windows/win.c] [windows/painting.c] [windows/nonclient.c]
1583         Put update region in WM_NCPAINT wParam.
1584
1585         * [loader/task.c]
1586         Kill task timers when task is deleted, switch timers to the
1587         new queue in SetTaskQueue().
1588
1589         * [loader/signal.c] [miscemu/dosmem.c]
1590         Added SIGALRM signal handler to increment BIOS clock. 
1591
1592         * [windows/win.c] [windows/winpos.c] [windows/mdi.c]
1593         Fixed ChildWindowFromPoint(), WM_PARENTNOTIFY and its handling by
1594         MDI client.
1595
1596         * [windows/winpos.c]
1597         Improvements in handling of owned popups. "Floating" toolboxes 
1598         work better now. 
1599
1600 Thu Mar 28 12:38:29 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
1601
1602         * [misc/registry.c]
1603         New file, registry rewrite including win32 extensions
1604         - Unicode
1605         - multiple valus per key
1606         - different datatypes for values
1607         - multiple rootkeys
1608         - saving and loading in different registries.
1609
1610         * [include/winreg.h]
1611         New file, definitions and structs for registry.
1612
1613         * [include/winerror.h]
1614         Some new error defines added... there are more, someone please
1615         check a (real-)windows winerror.h.
1616         
1617         * [if1632/shell.spec] [if1632/advapi32.spec] [if1632/kernel.spec]
1618         Registry specs added.
1619
1620         * [if1632/relay.c]
1621         Switch internal SHELL.DLL to default 'used'.
1622
1623         * [win32/string32.c] [include/string32.h]
1624         Some new functions added.
1625         char should be unsigned char when converting to 16bit ints.
1626
1627         * [misc/shell.c] [include/shell.h] [win32/advapi.c]
1628         Removed old registry functions.
1629
1630 Tue Mar 26 15:01:46 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
1631
1632         * [include/bitmaps/ocr_ibeam]
1633         Fixed the position of the hotspot.
1634
1635         * [objects/text.c]
1636         Fixed a few bugs in TEXT_TabbedTextOut().
1637
1638         * [windows/event.c]
1639         Fixed the order of the bits in the KeyStateTable.
1640         0x80 is the up/down-bit.  0x01 is the toggle bit.
1641
1642         * [loader/resource.c] [windows/mdi.c] [controls/edit.c]
1643         Fixed the calls to GetKeyState().
1644
1645 Tue Mar 26 08:43:15 1996  Robert Pouliot <krynos@qbc.clic.net>
1646
1647         * [resources/sysres_Fr.rc] [resources/TODO]
1648         Updated FIND_TEXT and REPLACE_TEXT to work like the English version.
1649
1650 Mon Mar 25 17:38:59 1996  Tristan Tarrant <tst@dcs.ed.ac.uk>
1651
1652         * [resources/sysres_it.rc]
1653         Added support for Italian [It] language.
1654
1655 ----------------------------------------------------------------------
1656 Sun Mar 24 13:13:11 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1657
1658         * [include/win.h] [windows/*.c]
1659         Replaced next, parent, child and owner handles by pointers in WND
1660         structure. This should improve performance, and should be
1661         reasonably safe since Microsoft did the same in Win95.
1662
1663         * [include/wintypes.h] [*/*]
1664         Redefined HANDLE to be UINT instead of a pointer for Winelib. This
1665         allows removing a lot of unnecessary casts and NPFMTs.
1666
1667         * [windows/caret.c]
1668         Create the caret brush upon CreateCaret(); use the bitmap
1669         dimensions for the caret.
1670         Fixed CARET_DisplayCaret() to use PatBlt().
1671
1672 Fri Mar 22 16:00:00 1996  Anand Kumria <akumria@ozemail.com.au>
1673
1674         * [misc/winsocket.c]
1675         More sanity checks, fixup some erroneous return codes.
1676
1677         * [documentation/winsock]
1678         Description of how compatible the winsock is currently.
1679
1680 Fri Mar 22 13:05:34 1996  Ulrich Schmid  <uschmid@mail.hh.provi.de>
1681
1682         * [library/winmain.c]
1683         Set `lpszCmdParam' by concatenating arguments.
1684
1685         * [loader/module.c]
1686         WinExec: accept Unix commands, use Wine emulator.
1687
1688 Mon Mar 18 12:16:27 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
1689
1690         * [if1632/kernel32.spec][win32/thread.c][include/kernel32.h]
1691         DeleteCriticalSection, EnterCriticalSection,
1692         InitializeCriticalSection, LeaveCriticalSection, TlsAlloc,
1693         TlsFree, TlsGetValue, TlsSetValue: new functions.
1694         CRITICAL_SECTION: new structure.
1695
1696         * [if1632/kernel32.spec][win32/code_page.c]
1697         WideCharToMultiByte: new function.
1698
1699         * [if1632/kernel32.spec][win32/file.c]
1700         GetFileAttributesA: new function.
1701
1702         * [if1632/kernel32.spec][misc/main.c]
1703         GetEnvironmentStringsW, FreeEnvironmentStringsA,
1704         FreeEnvironmentStringsW: new functions.
1705         
1706         * [if1632/user.spec][win32/cursoricon32.c][win32/Makefile.in]
1707         cursoricon32.c: new file.
1708         LoadCursorA, LoadCursorW: modified implementation from LoadCursor
1709         to WIN32_*.
1710         LoadIconA, LoadIconW: modified implementation from LoadIconA32
1711         to WIN32_*.
1712
1713         * [include/struct32.h]
1714         pragma pack inserted.
1715         CURSORICON32 structures added.
1716
1717         * [include/winnls.h]
1718         Constants CP_* and WC_* added.
1719
1720         * [loader/pe_image.c]
1721         PE_LoadModule: call PE_InitDLL with hModule rather than wpnt.
1722
1723 Sun Mar 17 16:59:12 1996  Albrecht Kleine  <kleine@ak.sax.de>
1724
1725         * [misc/commdlg.c]
1726         Introduced hook function handling in file dialog.
1727         Removed an unnecessary ShowWindow call in FILEDLG_WMCommand().
1728
1729 Thu Mar 14 10:50:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
1730
1731         * [if1632/gdi32.spec]
1732         Added GetNearestColor.
1733
1734         * [if1632/kernel32.spec]
1735         Added GlobalAddAtomA.
1736
1737         * [win32/param32.c]
1738         Added stackframe.h to includes.
1739         WIN32_GlobalAddAtomA() - new function.
1740
1741 ----------------------------------------------------------------------
1742 Wed Mar 13 19:46:50 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1743
1744         * [controls/edit.c]
1745         Removed calls to memmove (not portable).
1746
1747         * [debugger/dbg.y] [debugger/debug.l]
1748         Prefixed all token with 't' to avoid conflicts with type
1749         definitions.
1750         Added 'walk queue', 'walk class' and 'info class' commands.
1751
1752         * [debugger/info.c]
1753         Moved queue and window information functions to windows/queue.c
1754         and windows/win.c respectively.
1755
1756         * [loader/signal.c]
1757         Added SIGHUP handling to force entry into built-in debugger.
1758         Cleaned up a bit.
1759
1760         * [misc/spy.c]
1761         General cleanup and performance improvements.
1762
1763         * [windows/class.c]
1764         Added CLASS_DumpClass() and CLASS_WalkClasses() functions for
1765         debugger.
1766
1767         * [windows/event.c]
1768         Pressing Ctrl-Alt-Return forces an entry into the debugger. Not
1769         sure if this key combination is a good choice...
1770
1771         * [windows/message.c] [windows/queue.c] (New file)
1772         Moved message queue handling functions to windows/queue.c.
1773
1774 Tue Mar 12 14:55:16 1996  Onno Hovers  <onno@stack.urc.tue.nl>
1775
1776         * [if1632/except.S] [include/except.h] [win32/except.c] (New files)
1777         Implemented Win32 exception functions: RaiseException(),
1778         RtlUnwind(), SetUnhandledExceptionFilter() and
1779         UnhandledExceptionFilter().
1780
1781 Mon Mar 11 19:23:29 1996  Albrecht Kleine  <kleine@ak.sax.de>
1782
1783         * [controls/listbox.c] [include/listbox.h]
1784         Special handling for COMBOLBOX styles introduced via extension of
1785         HEADLIST structure: lphl->dwStyle.
1786
1787 Mon Mar 11 13:31:06 1996  Greg Kreider <kreider@natlab.research.philips.com>
1788
1789         * [controls/combo.c]
1790         Any mouse movement within a small distance (defined by CBLMM_EDGE)
1791         of the top or bottom edge causes the window to scroll.  Also moved 
1792         some assignments so the routine works correctly.
1793
1794         * [controls/listbox.c]
1795         Changing selection in ListBoxSetCurSel now updates PrevFocused.
1796         Added to LBSetFont and CreateListBoxStruct a fake hdc that tests 
1797         and sets the standard text height.
1798
1799 Sun Mar 10 08:39:23 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
1800
1801         * [windows/dce.c]
1802         Fixed memory leak in DCE_ClipWindows().
1803
1804 ----------------------------------------------------------------------
1805 Fri Mar  8 19:07:18 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1806
1807         * [configure.in]
1808         Quote '[' and ']' in the test program for the strength-reduce
1809         bug. This should work much better...
1810
1811         * [files/file.c]
1812         Augmented DOS_FILE structure. Most internal functions now return a
1813         DOS_FILE* instead of a Unix handle.
1814         Added a local file array to replace the PDB list upon startup, to
1815         allow using file I/O functions before the first task is created.
1816         Added FILE_SetDateTime() and FILE_Sync() functions.
1817         
1818         * [loader/module.c]
1819         Use the DOS file I/O functions in MODULE_LoadExeHeader().
1820
1821         * [objects/bitblt.c]
1822         Use visible region instead of GC clip region to clip source
1823         area. This fixes the card drawing bug in freecell.
1824
1825         * [objects/region.c]
1826         Fixed CombineRgn() to allow src and dest regions to be the same.
1827
1828 Fri Mar  8 16:32:23 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
1829
1830         * [controls/EDIT.TODO]
1831         Updated so it reflects the current status.
1832
1833         * [controls/edit.c]
1834         Implemented internal EDIT_WordBreakProc().
1835         Implemented ES_READONLY.
1836         Implemented WM_LBUTTONDBLCLK to select whole words.
1837         Fixed a lot of types in the function definitions.
1838
1839 Wed Mar  6 19:55:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
1840
1841         * [debugger/info.c]
1842         Added "walk window" command to walk window list. 
1843
1844         * [windows/mdi.c]
1845         Added proper(?) WM_MDISETMENU message handling.
1846
1847 Wed Mar  6 09:27:12 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
1848
1849         * [if1632/callback.c][if1632/relay32.c]
1850         RELAY32_CallWindowProcConvStruct: new function.
1851
1852         * [win32/struct32.c][win32/Makefile.in][win32/param.c][win32/user32.c]
1853         struct32.c: new file. Moved all structure conversions into that file
1854         PARAM32_POINT32to16,MSG16to32,USER32_RECT32to16: 
1855         renamed to STRUCT32_POINT32to16, ...
1856         WIN32_POINT,WIN32_MSG,WIN32_RECT,WIN32_PAINTSTRUCT: renamed to
1857         POINT32, ...
1858         New conversion functions for NCCALCSIZE_PARAMS, WINDOWPOS,
1859         CREATESTRUCT.
1860
1861         * [include/windows.h][misc/exec.c]
1862         WINHELP, MULTIKEYHELP, HELPWININFO: new structures
1863         WinHelp: Reimplemented. Thanks to Peter Balch
1864         (100710.2566@compuserve.com) for his valuable research.
1865
1866         * [win32/winprocs.c]
1867         WIN32_CallWindowProcTo16: new function, call in
1868         USER32_DefWindowProcA,...
1869
1870 Mon Mar  4 23:22:40 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
1871
1872         * [include/wintypes.h]
1873         Added "#define __export".
1874
1875         * [objects/bitblt.c]
1876         Put in a few hacks to make bitblt-ing work when upside-down and/or
1877         mirrored.  BITBLT_StretchImage should really be checked over
1878         thoroughly.
1879
1880         * [programs/progman/main.c]
1881         Added "#include <resource.h>" for definition of HAVE_WINE_CONSTRUCTOR.
1882
1883         * [rc/parser.h] [rc/parser.l] [rc/parser.y] [rc/winerc.c]
1884         Eliminated shift/reduce conflict in style definition.
1885         Added crude error message support: "stdin:%d: parse error before '%s'".
1886         Implemented string table support to the best of my ability (it works
1887         with LoadString() calls).
1888
1889         * [windows/nonclient.c]
1890         Fixed bug in NC_DoSizeMove() that made system menu pop up when title
1891         bar of non-iconized window was clicked (checked for iconization).
1892
1893 Mon Mar 04 20:55:19 1996  Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
1894
1895         * [if1632/lzexpand.spec] [if1632/relay.c]
1896           [include/lzexpand.h][misc/lzexpand.c]
1897         LZEXPAND.DLL added.
1898
1899 Sun Mar 03 18:10:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
1900
1901         * [windows/win.c]
1902         Prevent usage of invalid HWNDs in WIN_EnumChildWin(),
1903         this prevents too early termination of EnumChildWindows().
1904
1905 ----------------------------------------------------------------------
1906 Sat Mar  2 18:19:06 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
1907
1908         * [controls/scroll.c]
1909         Fixed SCROLL_THUMB painting fixes from Alex Korobka to store the
1910         current tracking window.
1911
1912         * [files/file.c]
1913         Fixed two file descriptor leaks in FILE_OpenFile().
1914
1915         * [if1632/relay32.c] [loader/module.c] [loader/pe_image.c]
1916           [tools/build.c]
1917         Replaced LOADEDFILEINFO structure by OFSTRUCT.
1918
1919         * [memory/atom.c]
1920         Reload the pointer to the atom table in ATOM_GetTable() and
1921         ATOM_AddAtom() in case the LOCAL_Alloc() calls caused the table to
1922         move in linear memory.
1923
1924 Fri Mar  1 11:57:13 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
1925
1926         * [include/callback.h]
1927         Added support for CallWordBreakProc().
1928
1929         * [controls/edit.c]
1930         New caret handling (really efficient / fast).
1931         Implemented EM_SETWORDBREAKPROC and EM_GETWORDBREAKPROC.
1932         Fixed EM_SETFONT so it now also creates a proper new caret.
1933
1934 Wed Feb 28 22:03:34 1996  Daniel Schepler  <daniel@frobnitz.wustl.edu>
1935
1936         * [controls/desktop.c] [misc/main.c] [windows/event.c] [windows/win.c]
1937         Added WM_DELETE protocol to top-level windows.
1938
1939         * [controls/scroll.c]
1940         Fixed a problem which caused slow scrolling to continue uncontrollably.
1941
1942         * [misc/exec.c]
1943         Implemented ExitWindows().
1944
1945         * [windows/win.c]
1946         Set top-level owned windows to be transient.
1947
1948 Wed Feb 28 19:13:22 1996  Ulrich Schmid  <uschmid@mail.hh.provi.de>
1949
1950         * [programs/progman/*]
1951         Added a program manager.
1952
1953 Wed Feb 28 18:38:01 1996  Duncan C Thomson <duncan@spd.eee.strath.ac.uk>
1954
1955         * [resources/sysres_Eo.c]
1956         Added support for Esperanto [Eo] language.
1957
1958 Wed Feb 28 00:23:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
1959
1960         * [if1632/user32.spec]
1961         Added EndDialog, GetDlgItem, GetDlgItemInt, SetDlgItemInt,
1962
1963         * [win32/init.c]
1964         Added task.h to includes. GetModuleHandleA() - return hInstance
1965         if called with NULL parameter. Freecell needs this. NOTE this
1966         may indicate a problem with differentiation between hModule and
1967         hInstance within Wine.
1968
1969         * [win32/resource.c]
1970         FindResource32() and LoadResource32() - Removed #if 0's around
1971         conversion from hInstance to hModule. See remarks above.
1972
1973         * [win32/string32.c]
1974         WIN32_UniLen() - removed stray semicolon.
1975
1976 Tue Feb 27 21:05:18 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
1977         
1978         * [windows/caret.c]
1979         Set blink rate with call to GetProfileInt().
1980
1981         * [rc/winerc.c]
1982         In new_style(), made initial flag settings WS_CHILD | WS_VISIBLE
1983         instead of 0.  This seems to correspond to Borland's defaults, and
1984         the flags can be unset by using the (rather obtuse) "| NOT WS_CHILD"
1985         or "| NOT WS_VISIBLE" technique in the *.rc file.
1986
1987         * [win32/time.c]
1988         In GetLocalTime() and GetSystemTime(), used tv_sec field of result
1989         returned by gettimeofday() instead of making second call to
1990         time().  This eliminates clock jitter if the seconds change
1991         between the two calls (rare, but possible).
1992
1993         * [include/wintypes.h]
1994         Added "#define _far" and "#define _pascal".
1995
1996         * [windows/win.c]
1997         Added function GetDesktopHwnd().
1998
1999         * [include/xmalloc.h]
2000         Removed the '#ifdef HAVE_STDLIB_H' structure, since it seemed to
2001         have been removed from 'configure', and was causing redefinition
2002         warnings.
2003
2004 Tue Feb 27 19:31:11 1996  Albrecht Kleine <kleine@ak.sax.de>
2005
2006         * [windows/winpos.c] 
2007         Added RDW_ALLCHILDREN flag in SetWindowPos (handling SWP_FRAMECHANGED)
2008         to force a repaint when setting menu bars with different rows.
2009
2010 Sun Feb 25 21:15:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
2011
2012         * [windows/syscolors.c] [controls/scroll.c]
2013         Fixed DrawFocusRect pen and SCROLL_THUMB painting.
2014
2015 ----------------------------------------------------------------------
2016 Sat Feb 24 16:17:05 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
2017
2018         * [files/profile.c]
2019         Added \r when writing profile files, for DOS compatibility.
2020
2021         * [memory/global.c]
2022         Fixed bug in GlobalReAlloc() that caused a discarded block not to
2023         be reallocated if its size was not changed.
2024
2025         * [memory/selector.c]
2026         Avoid setting a valid LDT entry with base and limit set to 0, as
2027         this causes the kernel to clear the entry. This fixes a crash when
2028         exiting Windows program manager.
2029
2030         * [objects/metafile.c]
2031         Removed call to creat() instead of _lcreat() for WINELIB.
2032
2033 Fri Feb 23 00:35:54 1996  Thomas Sandford <tdgsandf@prds-grn.demon.co.uk>
2034
2035         * [if1632/gdi32.spec]
2036         GetTextExtentPointA now has win32 specific implementation.
2037
2038         * [include/struct32.h]
2039         Define new structure tagSIZE32 and typedef SIZE32 to it.
2040         Define prototype for function PARAM32_SIZE16to32
2041
2042         * [win32/param32.c]
2043         New functions PARAM32_SIZE16to32 and WIN32_GetTextExtentPointA
2044
2045         * [win32/memory.c]
2046         Added missing file pointer parameter to fprintf.
2047
2048 Thu Feb 22 01:14:21 1996  Eric Warnke <ew2193@csc.albany.edu>
2049
2050         * [windows/nonclient.c]
2051         Added more familiar icon activity, ie single click brings up
2052         system menu.
2053
2054 Wed Feb 21 13:07:04 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
2055
2056         * [controls/menu.c]
2057         Added calls to HideCaret() and ShowCaret() from within
2058         TrackPopupMenu(), MENU_TrackMouseMenuBar() and
2059         MENU_TrackKbdMenuBar().  Are there any more places where this
2060         should be done?
2061
2062         * [controls/static.c]
2063         Fixed a FIXME in STATIC_SetIcon(), which now returns a handle to
2064         the previous icon.  Added a new FIXME at the point where
2065         WM_SETTEXT is handled for a SS_ICON static control.
2066
2067         * [misc/commdlg.c]
2068         Implemented FindText() and ReplaceText()
2069         Still missing : Templates and Hooks handling / error checking
2070
2071         * [resources/sysres_En.c]
2072         Redesigned FIND_TEXT and REPLACE_TEXT dialogs, so they now work.
2073         Languages other than En should update these too, though, as well
2074         as redimension the controls because some of the text doesn't fit.
2075         Created file resources/TODO to explain this.
2076
2077         * [windows/caret.c]
2078         Re-written.  It now uses the correct R2_XORPEN.  It resets the
2079         blink timer on SetCaretPos().  It does its own hide/show scheme
2080         when SetCaretPos() is called (should be faster).
2081
2082 Mon Feb 19 21:50:00 1996  Alex Korobka <alex@phm30.pharm.sunysb.edu>
2083
2084         * [controls/listbox.c]
2085         Miscellaneous changes for better LBS_EXTENDEDSEL support.
2086         Removed several superfluous redrawals of item list.
2087
2088         * [controls/scroll.c]
2089         WM_GETDLGCODE return value.
2090
2091         * [windows/win.c]
2092         FlashWindow function.
2093
2094         * [windows/painting.c] [windows/scroll.c]
2095         Added HideCaret/ShowCaret calls.
2096
2097         * [objects/font.c]
2098         Added GetCharABCWidths stub.
2099
2100         * [include/windows.h]
2101         "#define"s needed for changes mentioned above.
2102
2103 Mon Feb 19 20:12:03 1996  Hans de Graaff  <Hans.deGraaff@twi72.twi.tudelft.nl>
2104
2105         * [include/winsock.h]
2106         Change order of includes to get in_addr struct defined in time.
2107         (Note: Linux 1.3.66, libc 5.2.18)
2108
2109         * [misc/main.c] [include/options.h] [miscemu/int2f.c]
2110         Changed the -enhanced option into a -mode option, which can be
2111         either 'standard' or 'enhanced'. 'enhanced' is the default.
2112
2113 ----------------------------------------------------------------------
2114 Sun Feb 18 16:35:54 1996  Alexandre Julliard  <julliard@lrc.epfl.ch>
2115
2116         * [controls/desktop.c]
2117         Look for the wallpaper file in the Windows directory.
2118
2119         * [controls/menu.c]
2120         Fixed swapped parameters in SetMenuItemBitmaps().
2121         Create a separator in MENU_SetItemData() when the string is NULL.
2122
2123         * [file/dosfs.c]
2124         DOSFS_FindNext: don't return '.' and '..' in a drive root dir.
2125
2126         * [files/file.c]
2127         Added a DOS_FILE structure to store per-file information (not
2128         really used yet).
2129         Fixed _lread and _hread to check the size of the buffer before
2130         calling Unix read() to avoid EFAULT error.
2131
2132         * [misc/exec.c]
2133         Return TRUE in WinHelp() for HELP_QUIT to quiet Notepad on exit.
2134
2135         * [miscemu/instr.c]
2136         Call DOSMEM_Alarm() in INSTR_ReplaceSelector(). This should fix
2137         programs that poll the BIOS counter, provided they reload the
2138         selector on every read.
2139
2140         * [miscemu/int21.c]
2141         Re-implemented FindFirst/FindNext for FCB calls.
2142
2143         * [windows/message.c] [windows/winpos.c]
2144         Merged MSG_GetWindowForEvent() and WINPOS_WindowFromPoint().
2145
2146         * [windows/nonclient.c] [windows/win.c] [include/windows.h]
2147         Added a per-window WIN_MANAGED flag; only windows that have a
2148         dialog frame or a sizing border are managed.
2149
2150 Sat Feb 17 18:25:00 1996  Thomas Sandford <tdgsandf@prds-grn.demon.co.uk>
2151
2152         * [if1632/Makefile.in]
2153         Added -g flag to compilation of .c files generated from *32.spec.
2154
2155         * [if1632/gdi32.spec]
2156         Numerous additional functions implemented.
2157
2158         * if1632/user32.spec]
2159         wsprintfA maps to vsprintf not wsprintf
2160         Numerous additional functions implemented.
2161
2162         * [include/gdi.h] [objects/gdiobj.c]
2163         New #define MAGIC_DONTCARE added. This is used in
2164         GDI_GetObjPtr to enable getting a pointer to a GDI object of
2165         unknow type.
2166
2167         * [win32/gdi32.c]
2168         New file.
2169
2170         * [win32/param32.c]
2171         WIN32_MoveToEx() - handle NULL pointer argument.
2172
2173         * [win32/user32.c]
2174         USER32_InvalidateRect - handle passing of a NULL pointer.
2175         USER32_SetTimer - New function.
2176
2177         * [files/directory.c]
2178         Fixed DIR_Init() (off by one in allocation of space for
2179         environment variables).
2180
2181         * [files/drive.c]
2182         Added <sys/types.h> to #includes (prerequisite for <sys/stat.h>
2183         on FreeBSD).
2184
2185 Fri Feb 16 10:26:56 1996  Andreas Kirschbaum <ank@rbg.informatik.th-darmstadt.de>
2186
2187         * [controls/menu.c]
2188         Memory leak plugged.
2189
2190         * [controls/edit.c]
2191         Erase space with function ExtTextOut(). This eliminates the use of
2192         xmalloc().  Memory leak in EDIT_WriteText plugged.
2193
2194         * [debugger/db_disasm.c]
2195         Operand for scas now is di.
2196
2197         * [files/profile.c]
2198         PROFILE_GetSection was copying too much data.
2199         PROFILE_GetSection now returns the correct value. It was returning
2200         the number of unused instead of used bytes.
2201
2202         * [objects/dc.c]
2203         Corrected two typos in comments.
2204
2205         * [objects/font.c]
2206         FONT_MatchFont didn't return if it couldn't find any font.
2207
2208         * [objects/oembitmap.c]
2209         Free object only if it has been allocated.
2210
2211         * [windows/scroll.c]
2212         Memory leak in ScrollDC plugged.
2213
2214 Tue Feb 13 11:17:00 1996 William Magro  <wmagro@tc.cornell.edu>
2215
2216         * [controls/edit.c]
2217         Implemented ES_NOHIDESEL style, shift+click selection,
2218         shift+{arrow,home,end,pgup,pgdn} selection.  Optimized
2219         (de)selection drawing.  Changed selection drawing to use correct
2220         system colors instead of inverting.  Fixed deleting or backspacing
2221         across a '\r\n' end of line pair.  Selection now anchors
2222         correctly. Fixed text leaking and extra garbage problem bug
2223         uncovered by change in class style in wine960131.
2224
2225         * [controls/widgets.c]
2226         Class flags now match those of Windows.
2227
2228 Mon Feb 12 21:28:19 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
2229
2230         * [controls/widgets.c]
2231         WIDGETS_Init: RELAY32_GetEntryPoint does not take a string anymore.
2232
2233         * [if1632/Makefile.in][if1632/relay32.c][include/relay32.h]
2234         comctl32.spec ole32.spec winspool.spec: new files.
2235         RELAY32_Init: call initialization of new DLLs.
2236         RELAY32_GetEntryPoint: expects WIN32_builtin* now.
2237         RELAY32_MakeFakeModule: new function.
2238
2239         * [if1632/gdi32.spec][if1632/kernel32.spec][if1632/user32.spec]
2240         Added Win95 functions. Ordinals now differ from both NT and Win95
2241         HeapCreate, CreateDialogIndirectParamA, CreateDialogIndirectParamW,
2242         CreateDialogParamA, CreateDialogParamW, DialogBoxIndirectParamA
2243         DialogBoxIndirectParamW, DialogBoxParamA, DialogBoxParamW:
2244         new relays.
2245
2246         * [if1632/shell32.spec]
2247         shell32.spec: renumbered all functions to take into account ordinals.
2248         These seem to be identical between NT and Win95.
2249
2250         * [include/dialog.h][windows/dialog.c]
2251         xBaseUnit,yBaseUnit,DIALOG_DoDialogBox: made non-static.
2252
2253         * [include/handle32.h]
2254         New handle types VRANGE, HEAP, HEAPITEM.
2255
2256         * [include/pe_image.h][loader/pe_image.c]
2257         struct w_files: new field builtin.
2258         PE_FindExportedFunction: support ordinals.
2259         PE_GetProcAddress: call RELAY32_GetEntryPoint for builtins.
2260         fixup_imports: support ordinals.
2261         PE_LoadImage: prefer directories over segments.
2262
2263         * [include/resource.h][win32/resource.c]
2264         FindResource32: changed parameter from LPCTSTR to LPCWSTR
2265                 check LANG_NEUTRAL if LANG_ENGLISH fails.
2266         LoadAcceleratorsW,SizeofResource32,AccessResource32: 
2267                 disabled because it's broken.
2268         Casted to and from LPWSTR at various places.
2269
2270         * [include/string32.h][win32/string32.c]
2271         Changed prototypes to take const arguments where appropriate.
2272
2273         * [include/struct32.h]
2274         New structures DLGTEMPLATE32, DLGITEMTEMPLATE32.
2275
2276         * [tools/build.c]
2277         BuildSpec32Files: generate Base value into code, generate call to
2278         RELAY32_MakeFakeModule.
2279         
2280         * [win32/heap.c]
2281         This is still not finished and needs rework.
2282         HeapAlloc: renamed to SIMPLE_HeapAlloc, implemented HeapAlloc.
2283         HeapCreate: implemented on top of VirtualAlloc, which does not work yet
2284         HeapDestroy, HEAP_GrowHeap, HeapFree: new functions.
2285
2286         * [win32/memory.c]
2287         Support for VRANGE_OBJECT. This is not yet called from any place,
2288         and needs more platform specific support
2289         MEMORY_FindVrange, MEMORY_IsVrangeFree, MEMORY_InsertVrange,
2290         MEMORY_AllocVrange, MEMORY_ReleaseVrange: new functions.
2291
2292         * [win32/user32.c]
2293         WIN32_CreateWindowExA: don't GlobalAlloc for integer class and window
2294         names, as in dialogs.
2295         Implemented dialog functions (see user32.spec).
2296
2297         * [windows/caret.c]
2298         CARET_Initialize: call RELAY32_GetBuiltinDLL.
2299
2300 Mon Feb 12 18:52:40 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
2301
2302         * [controls/edit.c]
2303         Removed commented out #ifdefs for WINELIB.
2304
2305         * [tools/makehtml.pl]
2306         Put in error checking when trying to open a file.
2307
2308         * [libtest/Makefile.in] [libtest/new.c] [libtest/hello4.c]
2309         Added two new targets: hello4 and new.
2310
2311         * [include/windows.h]
2312         Added definition of DEVMODE structure, although it's not yet used.
2313         Modified various API functions from CreateDC() to Escape(), in
2314         order to make them more compliant with the strict API definitions.
2315
2316         * [include/wintypes.h]
2317         Added 'typedef char TCHAR'.  It probably should be defined as
2318         'short', but then we would have to support such characters.  Also did
2319         'typedef const TCHAR* LPCTSTR' and 'typedef TCHAR* LPTSTR'.
2320         Also defined WNDENUMPROC, FONTENUMPROC, GOBJENUMPROC, PROPENUMPROC
2321         MFENUMPROC, and HGDIOBJ.
2322
2323 Mon Feb  5 16:42:07 1996  Frans van Dorsselaer <dorssel@rulhm1.leidenuniv.nl>
2324
2325         * [misc/commdlg.c]
2326         Patched a bug that occurred in the internal COMMDLG module for the
2327         FileOpen(), FileSave() and FileSaveAs() functions.  The file-type
2328         combobox is now handled correctly.
2329
2330 Fri Feb  2 22:52:58 1996  Roman Dolejsi  <roman@sorry.vse.cz>
2331
2332         * [resources/sysres_Cz.rc]
2333         Added support for Czech [Cz] language.
2334
2335 Thu Feb  1 00:35:04 1996  Philippe De Muyter  <phdm@info.ucl.ac.be>
2336
2337         * [objects/font.c]
2338         FONT_matchfont : for fixed-spacing fonts, allow 'c' if 'm' fails;
2339         for variable-spacing fonts : allow '*' if 'p' fails; if asked lfHeight
2340         is -1, assume 0.
2341         CreateFontIndirect : if font parameter is NULL, issue an error message.
2342         CreateFont : null-terminate lfFaceName.
2343         ParseFontParms : debug code turned off : too verbose.
2344         InitFontsList : recognize *-c-* fonts as fixed-spacing fonts.
2345
2346         * [objects/color.c]
2347         ColorToPhysical : admit 0xff...... COLORREF's as 0x00...... ones.
2348
2349 --------------------------------------------------------------------
2350 Wed Jan 31 10:58:00 1996  Alexandre Julliard  <julliard@sunsite.unc.edu>
2351
2352         * [configure.in]
2353         Added --with-dll option to build libwine.so.
2354
2355         * [controls/listbox.c]
2356         Fixed ListBoxDirectory(), DlgDirSelect() and
2357         DlgDirList(). Hopefully their behavior is correct now.
2358
2359         * [controls/menu.c]
2360         Use SEGPTRs in ChangeMenu(), InsertMenu(), AppendMenu() and
2361         ModifyMenu() for the item data, to avoid corrupting the pointer
2362         for owner-drawn items.
2363
2364         * [controls/static.c]
2365         Attempt to load OEM icons for SS_ICON controls. Probably not
2366         entirely correct.
2367         Don't clip the text output.
2368
2369         * [files/directory.c]
2370         Add temp dir and Windows dir to environment.
2371
2372         * [files/dos_fs.c]
2373         Fixed a few path handling bugs in DOSFS_GetUnixFileName().
2374         Cache last used directory in DOSFS_FindNext() to avoid quadratic
2375         search time.
2376
2377         * [files/drive.c]
2378         New format for drives configuration in wine.conf; allows
2379         specifying the type, label and serial number of a drive.
2380
2381         * [files/file.c]
2382         New function FILE_OpenUnixFile to make sure we don't open a
2383         directory instead of a file.
2384         Fixed DOSFS_GetUnixFileName() check_last flag in FILE_MakeDir().
2385
2386         * [files/profile.c]
2387         Rewrote profile handling. Should be closer to Windows behavior now.
2388         New function PROFILE_GetWineIniString() to get a string from wine.conf.
2389         Support environment variables in wine.conf.
2390
2391         * [loader/task.c]
2392         Fixed the order of deletion in TASK_DeleteTask() to avoid memory
2393         corruption.
2394
2395         * [memory/global.c]
2396         Create a discarded block on GlobalAlloc() if the size is 0; thanks
2397         to John Harvey for noticing this.
2398
2399         * [memory/local.c]
2400         LOCAL_GetHeap: make sure the pointer is valid before checking
2401         magic number.
2402
2403         * [misc/main.c]
2404         Moved profile and registry saving to ExitWindows(), so we don't
2405         try to save them in case of a crash.
2406
2407         * [miscemu/int21.c]
2408         INT21_GetFreeDiskSpace: try to compute the cluster size from the
2409         filesystem size instead of hard-coding it to 64.
2410         Fixed functions 0x3f and 0x40 to use _hread and _hwrite to allow
2411         reading or writing 65535 bytes (thanks to Bruce Milner for this one).
2412
2413         * [windows/message.c]
2414         Fixed bug in linked-list handling in MSG_DeleteQueue().
2415         Simplified SetMessageQueue().
2416
2417         * [wine.ini] [wine.man]
2418         Updated for new drives configuration format.
2419
2420 Tue Jan 30 11:24:46 1996  William Magro  <wmagro@tc.cornell.edu>
2421
2422         * [controls/edit.c]
2423         Implemented ES_PASSWORD style, EM_SETPASSWORDCHAR and
2424         EM_GETPASSWORDCHAR messages.
2425
2426         * [controls/widgets.c]
2427         Adjusted class creation flags to better match values Windows uses.
2428
2429         * [include/windows.h]
2430         Fixed ES_NOHIDESEL typo.
2431
2432         * [loader/ne_image.c]
2433         Added detection for zero offset in RADDR fixups. Quicken
2434         was in an infinite loop here.
2435
2436 Mon Jan 29 20:12:22 1996  Albrecht Kleine  <kleine@ak.sax.de>
2437
2438         * [files/dos_fs.c]
2439         Bugfix: range error in month value (0..11 set to 1..12).
2440
2441         * [windows/caret.c]
2442         Changed ROP2-mode to R2_NOTXORPEN in CARET_Callback for pulsed
2443         appearance of the caret.
2444
2445         * [windows/mdi.c] [include/mdi.h]
2446         Changed MDITile(): added a new parameter WORD wParam for
2447         WM_MDITILE second tiling method (MDITILE_HORIZONTAL in wParam) as
2448         used in Win3.1
2449
2450 Sun Jan 28 14:20:00 1996  Cameron Heide  <heide@ee.ualberta.ca>
2451
2452         * [miscemu/int2f.c]
2453         Added a small bit of MSCDEX emulation.
2454
2455         * [windows/alias.c]
2456         ALIAS_RegisterAlias was returning the hash value when it should
2457         have been returning the record number.
2458         
2459 Sat Jan 27 10:53:51 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
2460
2461         * [include/shell.h] [include/wintypes.h]
2462         Moved definition of HKEY and LPHKEY types to include/wintypes.h.
2463         Declared FONTENUMPROC in wintypes.h.
2464
2465         * [include/windows.h]
2466         Added definition of KERNINGPAIR and LPKERNINGPAIR types.  Added
2467         declarations for CopyCursor(), CopyIcon(), EnumFontFamilies(),
2468         ExtractIcon(), FatalAppExit(), FindExecutable(), GetClipCursor(),
2469         GetKerningPairs(), GetQueueStatus(), GetRasterizerCaps(),
2470         IsGDIObject(), IsMenu(), IsTask(), RegCloseKey(), RegCreateKey(),
2471         RegDeleteKey(), RegEnumKey(), RegOpenKey(), RegQueryValue(),
2472         RegSetValue(), ResetDC(), ShellExecute(), SystemParametersInfo(),
2473         and wsprintf().
2474
2475         * [tools/makehtml.pl] [documentation/apiw.index]
2476         New files that scan windows.h, commdlg.h, and toolhelp.h and output
2477         an HTML sorted list with optional links to www.willows.com and a
2478         tally of unimplemented APIW functions.
2479
2480         * [objects/cursoricon.c]
2481         Added Win32 versions of CopyIcon() and CopyCursor() for use in
2482         libwine.
2483
2484         * [win32/resource.c] [win32/winprocs.c]
2485         Added '#include "libres.h"' and explicit declarations of windows
2486         procs in order to avoid warnings.
2487
2488         * [windows/utility.c]
2489         Added Win32 version of MulDiv() for libwine.
2490
2491         * [*/*] [include/windows.h]
2492         Changed several function declarations to comply more strictly to
2493         the windows API (without, hopefully, altering their functionality).
2494
2495         * [controls/menu.c]
2496         Made the return value of CheckMenuItem be the previous state of
2497         the menu item if it was found, otherwise -1 as specified in the
2498         SDK. This conflicts with the APIW specification, which says it
2499         should return TRUE if successful, otherwise FALSE.
2500
2501         * [include/windows.h]
2502         Added obsolete WM_SIZE message wParam names for compatibility.
2503         Added WinHelp() command constants, even though they are not yet
2504         supported.
2505
2506         * [rc/winerc.c]
2507         Tidied up transform_binary_file().  In argument checking, flattened
2508         any invalid characters specified with the prefix argument.
2509
2510         * [library/libres.c]
2511         Made FindResource() case-insensitive when parameter 'name' is a string.
2512
2513 Sat Jan 27 02:30 1996  Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de
2514
2515         * [files/drive.c]
2516         If root "/" is given in wine.conf, use it as last resort.
2517
2518         * [files/file.c]
2519         Report ER_AccessDenied it disk ist not writable
2520         More Debug Output
2521
2522         * [miscemu/int21.c]
2523         Squeezed some bugs in ExtendedOpenCreateFile
2524         
2525         * [windows/winpos.c]
2526         Some windows may not be moved or resized. We are missing some
2527         structures to be exact, but the approach should help in some cases
2528         and make things worse in much fewer.
2529
2530 Fri Jan 26 10:24:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
2531
2532         * [loader/pe_image.c]
2533         fixup_imports: Find builtins for Borland style entries, too
2534
2535 Fri Jan 26 10:24:00 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
2536
2537         * [controls/menu.c]
2538         LoadMenu: branch to Win32 for PE modules
2539
2540         * [if1632/gdi.spec][if1632/kernel32.spec][if1632/user32.spec]
2541         DeleteObject, GetPixel, SetPixel,WritePrivateProfileStringA,
2542         WriteProfileStringA, EmptyClipboard, EnableMenuItem, EnableScrollBar,
2543         EnableWindow, InvalidateRect, SetWindowTextA, WinHelpA: new relays
2544         DrawTextA, MoveToEx, GetClientRect, InvalidateRect, LoadBitmapA/W,
2545         LoadAcceleratorsA/W, LoadMenu[Indirect]A/W, LoadStringA/W: changed
2546         to convert parameters or naming convention
2547
2548         * [include/kernel32.h][include/wintypes.h]
2549         moved WCHAR, defined LPWSTR
2550
2551         * [include/string32.h][win32/string32.c][include/struct32.h]
2552         New files
2553
2554         * [loader/module.h]
2555         LoadModule: exit after returning from PE_LoadModule
2556
2557         * [loader/pe_image.c]
2558         my_wcstombs: isascii does not work on Linux for Unicode
2559         PE_LoadImage: Handle directories
2560
2561         * [misc/user32.c]
2562         USER32_RECT32to16, USER32_RECT16to32: new functions
2563         implemented new user32 relays
2564
2565         * [misc/newfns.c]
2566         WIN32_WinHelpA: new function
2567
2568         * [win32/param32.c]
2569         New file
2570
2571         * [win32/resource.c]
2572         GetResDirEntry: added support for named entries
2573         WIN32_LoadAcceleratorsW: invoke *32 resource functions
2574         WIN32_LoadBitmapA: convert name to unicode if appropriate
2575         WIN32_ParseMenu: new function
2576         implemented new resource functions from user32.spec
2577
2578 Wed Jan 24 18:09:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
2579
2580         * [objects/cursoricon.c]
2581         GetIconId() and LoadIconHandler() functions.
2582
2583         * [windows/mdi.c]
2584         Better maximization support, TranslateMDISysAccel() function, 
2585         misc improvements.
2586
2587         * [windows/defwnd.c]
2588         Fix for WM_WINDOWPOSCHANGED message handler.
2589
2590         * [windows/winpos.c]
2591         Rewrote WindowFromPoint() function.
2592
2593 Sun Jan 21 1996 17:05:09  Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de>
2594
2595         * [include/toolhelp.h] [misc/toolhelp.c]
2596         Added Notify(Un)Register, but no callbacks yet.
2597
2598 Fri Jan 19 01:43:37 1996 Victor Schneider <root@tailor.roman.org>
2599
2600         * [Makefile.in]
2601         Added target for libwine.so.1.0.
2602
2603         * [library/winmain.c]
2604         For WINELIBDLL, _WinMain just returns hInstance instead of calling
2605         WinMain().
2606
2607         * [misc/main.c]
2608         For WINELIBDLL, renamed main() to _wine_main() for calling from the
2609         stub main function.
2610
2611         * [library/winestub.c] (new file)
2612         Provides a stub main() function for using libwine.so.
2613
2614 Tue Jan 16 11:04:34 1996  Anand Kumria <akumria@ozemail.com.au>
2615
2616         * [winsocket.c]
2617         Fix EPERM problem.
2618
2619         * [global.c]
2620         Attempt to do some sanity checking in MemManInfo().
2621
2622         * [Changelog]
2623         Fix changelog oversight for previous entry.
2624
2625 ---------------------------------------------------------------------
2626 Sun Jan 14 13:45:22 1996  Alexandre Julliard  <julliard@sunsite.unc.edu>
2627
2628         * [configure.in]
2629         Added check for gcc strength-reduce bug.
2630
2631         * [controls/listbox.c]
2632         Changed ListBoxDirectory() to use the new DOS file functions.
2633
2634         * [controls/menu.c]
2635         Fixed parameters for DeleteMenu() call in ChangeMenu().
2636
2637         * [debugger/stack.c]
2638         Also display current frame in back-trace.
2639
2640         * [files/directory.c] [files/dos_fs.c] [files/drive.c] [files/file.c]
2641         Complete rewrite of the DOS file handling.
2642         Implemented per-task file handles.
2643         Removed default Z: drive; needs to be put explicitely in wine.ini
2644         if desired.
2645
2646         * [loader/module.c]
2647         Fixed file descriptor leak in LoadModule().
2648
2649         * [loader/task.c]
2650         Initialise PDB file handle table in TASK_CreateTask().
2651         Close file handles on task termination.
2652         Implemented SetErrorMode().
2653
2654         * [misc/network.c]
2655         Fixed WNetGetConnection() to use GetDriveType().
2656
2657         * [misc/xmalloc.c]
2658         Added function xstrdup().
2659
2660         * [miscemu/int21.c]
2661         Many changes for new DOS file functions.
2662
2663         * [miscemu/interrupts.c]
2664         Moved DOS_GetEquipment() function into INT_Int11Handler().
2665
2666         * [windows/win.c]
2667         Bug fix: create system menu before sending WM_NCCREATE.
2668
2669         * [*/*.c]
2670         Replaced strcasecmp and strncasecmp by lstrcmpi and lstrncmpi for
2671         better portability.
2672
2673 Sat Jan 13 16:13:02 1996  Jim Peterson <jspeter@birch.ee.vt.edu>
2674
2675         * [include/wintypes.h]
2676         Added 'typedef HGLOBAL GOBALHANDLE;'.  This is not precisely in line
2677         with the true windows 'typedef HANDLE GLOBALHANDLE;', but I believe
2678         it should suffice.
2679
2680         * [include/winsock.h]
2681         Added '#include <arpa/inet.h>' for various declarations.  '#ifdef'-ed
2682         out some old style internet address #define's.
2683
2684         * [loader/task.c]
2685         Made MakeProcInstance() return first parameter #ifdef WINELIB32.
2686         Made FreeProcInstance() do nothing #ifdef WINELIB32.
2687         '#ifdef'-ed out TASK_AllocThunk(), as it was unused in WINELIB32.
2688
2689         * [library/miscstubs.c]
2690         Made GetWndProcEntry16() return ACTIVATEAPP_callback() when called
2691         with name="ActivateAppProc".  This hardly seems correct, but it's my
2692         best guess as to how the emulator responds.
2693
2694 Sat Jan  6 17:57:45 1996  Martin von Loewis <loewis@informatik.hu-berlin.de>
2695
2696         * [if1632/kernel32.spec][win32/process.c]
2697         WIN32_GetProcAddress, LoadLibraryA: new functions
2698
2699         * [if1632/relay32.c]
2700         RELAY32_GetEntryPoint: Removed code to load PE DLLs
2701
2702         * [include/pe_image.h][include/pe_exe.h]
2703         struct pe_data: new fields base_addr,load_addr,vma_size,pe_reloc
2704         struct PE_Reloc_Block: new structure
2705
2706         * [loader/module.c]
2707         MODULE_RegisterModule: new function
2708
2709         * [loader/pe_image.c]
2710         PE_FindExportedFunction,PE_GetProcAddress: new functions
2711         fixup_imports: expect struct w_files* now, fill dlls_to_init,
2712                        load PE DLLs
2713         do_relocations: new functions
2714         calc_vma_size: renamed from dump_table
2715         PE_LoadImage: use malloc to allocate memory for image
2716         PE_InitDLL: expect HMODULE
2717         PE_InitializeDLLs: new function
2718
2719         * [loader/task.c]
2720         NE_InitializeDLLs: branch to PE_InitializeDLLs for PE modules
2721         GetExePtr: Accept PE modules
2722
2723         * [misc/commdlg.c]
2724         FILEDLG_WMCommand: unpack WIN32 WM_COMMAND appropriately for WineLib
2725
2726 Thu Jan  4 11:36:21 1996  Manfred Weichel <Manfred.Weichel@mch.sni.de>
2727
2728         * [misc/port.c]
2729         New file with usleep() function for SVR4.
2730
2731         * [configure.in]
2732         Check for usleep() function.
2733
2734 Tue Jan 02 14:00:00 1996  Anand Kumria <akumria@ozemail.com.au>
2735
2736         * [if1632/toolhelp.spec] [include/toolhelp.h]
2737           [misc/user.c] [windows/message.c]
2738         Implement TOOLHELP.80 TimerCount. Fix GetTickCount.
2739
2740         * [winsocket.c]
2741         Fixed ENOENT error.
2742
2743         * [miscemu/dpmi.c]
2744         Implement DPMI Get Page Size (AX=0604, INT 31)
2745
2746         * [memory/global.c]
2747         Implement TOOLHELP.72 GetMemManInfo.
2748
2749 Mon Jan  2 10:33:00 1996  Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
2750
2751         * [if1632/callback.c]
2752         CallWindowProc() - When calling RELAY32_CallWindowProc, check
2753         whether lParam should be a SEGPTR, and if so convert it to one.
2754
2755         * [if1632/gdi.spec] [if1632/kernel32.spec] [if1632/user32.spec]
2756         Numerous functions added, mostly calls to original (win16)
2757         functions.  Note that some (many) of these are probably not
2758         strictly correct, but with these additions freecell will at least
2759         display its main window though it is garbled.
2760
2761         * [if1632/winprocs.spec]
2762         Completely rewritten - all WndProcs now have win32 versions to
2763         help with the lparam SEGPTR fix in callback.c
2764
2765         * [include/kernel32.h]
2766         LPTCSTR defined.
2767
2768         * [include/peexe.h]
2769         Definition of PE_Export_Directory amended.
2770
2771         * [include/resource32.h]
2772         New file.
2773
2774         * [include/stackframe.h]
2775         Definition of MAKE_SEGPTR macro #ifdef'd out and replaced with
2776         prototype for replacement function in memory/selector.c which
2777         can operate on any given memory address. This is currently
2778         required for win32 support. It is a dreadful cludge, and will
2779         certainly slow down other programs. If you are not interested
2780         in win32 development you may wish to reverse this patch.
2781
2782         * [include/windows.h]
2783         Definition of SW_SHOWDEFAULT added.
2784
2785         * [loader/pe_image.c]
2786         Extensive rewrites of xmmap() fixup_imports().
2787         PE_LoadImage() - initialisation of bss added, extraction of
2788         module name fixed, initialisation of DLL added.
2789         PE_InitDLL() - now does something.
2790         PE_Win32CallToStart() - initialisation of TEB pointed to by
2791         fs added.
2792         PE_InitTEB() created to perform TEB initialisation.
2793
2794         * [memory/selector.c] 
2795         New function MAKE_SEGPTR() - see include/stackframe.h above.
2796
2797         * [misc/user32.c]
2798         USER32_RegisterClassA(), CreateWindowExA() memory allocation
2799         method changed. This is probably now unnecessary with the
2800         new MAKE_SEGPTR handling code.
2801         USER32_DefWndProcA() removed to win32/winprocs.c
2802         USER32_TranslateMessage added.
2803
2804         * [tools/build.c]
2805         handling of win32 spec files changed to support gcc2.6.X
2806         this requires optimisations to be disabled.
2807
2808         * [win32/resource.c] [win32/newfns.c] [win32/heap.c] [win32/winprocs.c]
2809         New files.
2810
2811         * [win32/Makefile.in]
2812         New files heap.c, newfns.c, resource.c and winprocs.c added to build.
2813
2814         * [win32/file.c]
2815         New function W32_SetHandleCount.
2816
2817         * [win32/init.c]
2818         WIN32_GetModuleHandle() - now returns handle of running process
2819         if called with NULL.
2820         GetStartupInfoA() - set cbReserved2 to 0.
2821
2822         * [win32/memory.c]
2823         VirtualAlloc() - set mmap() file parameter to -1 instead of 0 to make
2824         it work with FreeBSD. Also check for return value. Removed extra
2825         return.
2826
2827         * [windows/winpos.c]
2828         ShowWindow() - SW_SHOWDEFAULT handling kludged in.
2829
2830 ----------------------------------------------------------------------
2831 Sat Dec 23 18:15:59 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
2832
2833         * [configure.in] [Makefile.in] [tools/install-sh]
2834         New 'install' target installs Wine binary, library and man page.
2835         Library is now more logically named libwine.a.
2836         Split toolkit/ directory into library (for library code) and
2837         libtest (for test programs).
2838
2839         * [controls/edit.c]
2840         Quick hack to partially support EM_PASSWORD style (avoids
2841         displaying your passwords on the screen when testing programs...)
2842
2843         * [configure.in] [controls/menu.c] [include/resource.h]
2844           [misc/commdlg.c] [misc/ole2nls.c] [misc/shell.c] [windows/msgbox.c]
2845         Language is now a run-time option (wine -language xx).
2846
2847         * [debugger/dbg.y]
2848         Dump some more debugging info on crash.
2849
2850         * [misc/profile.c]
2851         Only consider ';' as a comment if it's the first non-blank
2852         character on the line.
2853
2854         * [miscemu/dpmi.c]
2855         More debugging info for real-mode callback.
2856
2857         * [objects/gdiobj.c]
2858         Rewrote EnumObjects() to do the Right Thing.
2859
2860         * [resources/sysres*]
2861         New directory containing system resources.
2862
2863 Fri Dec 22 11:24:39 GMT 1995  John Harvey <john@division.co.uk>
2864
2865         * [win32/file.c] [win32/memory.c]
2866         Unixware doesn't have MAP_ANON ifdefed out for now.
2867
2868         * [misc/dos_fs.c]
2869         DOS_GetDosFileName didn't truncate paths starting ./ properly.
2870
2871         * [tools/build.c]
2872         Produces assembly code that works with the unixware assembler.
2873
2874 Wed Dec 20 22:22:29 +0100 1995  Morten Welinder <terra@diku.dk>
2875
2876         * [miscemu/instr.c]
2877         INSTR_GetOperandAddr: 16-bit addresses should be masked to 16 bits.
2878
2879         * [misc/dos_fs.c]
2880         DOS_readdir should always return directories, even if they don't
2881         match the file name mask.
2882
2883 Tue Dec 19 18:00:00 1995  Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
2884         
2885         * [misc/exec.c]
2886         Give arguments to winhelp.
2887
2888         * [miscemu/int21.c]
2889         Implemented Interrupt 21 AX=6C00 EXTENDED OPEN/CREATE.
2890         Created function ExtendedOpenCreateFile.
2891         Give for some Windows95 interrupts the return value 'not
2892         implemented'.
2893
2894 Sun Dec 17 16:51:56 EST 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
2895
2896         * [include/kernel32.h] [include/windows.h]
2897         Moved the typedefs for SYSTEMTIME and LPSYSTEMTIME from
2898         include/kernel32.h to include/windows.h and declared the new Win32
2899         API functions Sleep(), GetLocalTime(), and GetSystemTime().
2900         Redefined INFINITE as 0xFFFFFFFF if WINELIB32.
2901
2902         * [rc/rc (new file)]
2903         Created the shell script 'rc', which should simplify resource
2904         compilation.
2905
2906         * [win32/environment.c]
2907         Kludged around an undefined reference to wine_files.  This change
2908         should be fixed some time.
2909
2910         * [win32/time.c] [if1632/kernel32.spec]
2911         Added the functions GetSystemTime(), and Sleep().
2912
2913         * [miscemu/int21.c]
2914         Renamed static function GetSystemTime to INT21_GetSystemTime to
2915         avoid conflicts with the API function of the same name.
2916
2917         * [include/wintypes.h]
2918         Added the SPFMT definition for printf statements.
2919
2920         * [misc/shell.c] [include/shell.h]
2921         Changed ERROR_* defines to SHELL_ERROR_*, as they were conflicting
2922         with the ones in include/winerror.h.  They should probably use the
2923         versions in winerror.h, but I'm not certain, and that can be done
2924         later.
2925
2926         * [windows/mdi.c]
2927         Translated WM_MDIACTIVATE(?,(LOhwnd,HIhwnd)) messages to
2928         WM_MDIACTIVATE(HIhwnd,LOhwnd) for WINELIB32.  The ? parameter
2929         (boolean) was discarded with this translation.  Translated handler
2930         of WM_MDISETMENU(ref,(loHMENU,hiHMENU)) to handle
2931         WM_MDISETMENU(loHMENU, hiHMENU) messages in WINELIB32 (ref assumed
2932         false, call DrawMenuBar() if desired).
2933
2934         * [*/*]
2935         General explicit casts and more rigid typing to remove warnings.
2936
2937         * [include/winpos.h] [windows/winpos.c]
2938         Changed return type of WINPOS_ChangeActiveWindow to BOOL.
2939
2940         * [include/commdlg.h] [misc/commdlg.c]
2941         Added prototypes for ChooseColor(), CommDlgExtendedError(),
2942         FindText() GetFileTitle(), GetOpenFileName(), GetSaveFileName(),
2943         PrintDlg, and ReplaceText().
2944         Renamed the CommDlgExtendError() function to CommDlgExtendedError().
2945         Made GetFileTitle return a short, as per the API definition.
2946
2947         * [Makefile.in]
2948         Added line to clean and distclean that removes temporaries from
2949         the include directory.
2950
2951 Sat Dec 16 19:39:14 MET 1995  Steffen Moeller <smoe0024@rz.uni-hildesheim.de>
2952
2953         * [controls/edit.c]
2954         Almost rewrote EDIT_GetLineMsg.
2955
2956 Sat Dec 16 13:51:48 MST 1995  Andrew Taylor <andrew@riscan.com>
2957
2958         * [windows/mdi.c]
2959         Fixed MDITile() bug that occurs when 0 windows are present or all
2960         windows are minimized.
2961
2962 Wed Dec 12 23:30:00 1995  Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
2963
2964         * [misc/profile.c]
2965         Try harder to find files, especially in the working directory.
2966         Look in $HOME/.wine too and create it there if it isn't found.
2967
2968 ----------------------------------------------------------------------
2969 Mon Dec 11 19:08:55 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
2970
2971         * [misc/lstr.c]
2972         Replaced wine_strncpy() by a 32-bit version of lstrcpyn(), since
2973         they do the same job.
2974
2975         * [tools/build.c]
2976         Fixed __attribute__((stdcall)) to make it compile with gcc
2977         versions under 2.7. Doesn't mean it will run OK though...
2978
2979 Sat Dec 09 13:22:58 1995  Cameron Heide  <heide@ee.ualberta.ca>
2980
2981         * [include/kernel32.h] [include/winerror.h]
2982         Added file attribute definitions and more error codes.
2983
2984         * [win32/error.c]
2985         Added some rudimentary errno-to-Win32 error conversion
2986         code.
2987
2988         * [win32/file.c]
2989         Added to GetFileInformationByHandle, filled in some known
2990         error codes, and switched to dprintf_win32.
2991
2992         * [win32/time.c]
2993         Added GetLocalTime.
2994
2995 Fri Dec  8 14:37:39 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
2996
2997         * [controls/combo.c]
2998         Converted functions of the type LONG _(HWND,WORD,LONG) to the type
2999         LRESULT _(HWND,WPARAM,LPARAM) where needed.
3000
3001         * [include/libres.h]
3002         Restructured libres prototypes to closer match the windows API.
3003
3004         * [include/windows.h]
3005         Changed several API prototypes' parameter types from 'short' to INT,
3006         which is #defined as short in the emulator, but is a normal int in
3007         WINELIB32.  Also changed SEGPTR from DWORD to void* when WINELIB32.
3008         (This creates a lot of warnings at library-compile time, but less
3009         warnings at app-compile time.  I'll remove the warnings soon.)
3010
3011         * [loader/resource.c]
3012         Fixed parameter mismatch in call to LIBRES_FindResource().  Changed
3013         various implementations of the LIBRES_* API functions.
3014
3015         * [loader/signal.c]
3016         Deleted local 'i' from win_fault(), since it was unused.
3017
3018         * [objects/bitblt.c]
3019         Mirrored changes to include/windows.h mentioned above.
3020
3021         * [toolkit/hello3.c]
3022         Changed LoadMenuIndirect() call to LoadMenu() to test the new
3023         resource registration technique.
3024
3025         * [toolkit/libres.c]
3026         Removed definition of 'struct resource' and fixed bugs in the resource
3027         implementation.  Implemented LIBRES_FindResource.
3028
3029         * [windows/graphics.c]
3030         Mirrored changes to include/windows.h mentioned above.
3031
3032 Thu Dec  7 23:15:56 1995     Martin von Loewis <loewis@informatik.hu-berlin.de>
3033
3034         * [controls/edit.c]
3035         LOCAL_HeapExists: Changed parameter to HANDLE. For WineLib, return true
3036
3037         * [controls/listbox.c]
3038         CreateListBoxStruct: Initialize HeapSel to 0 for WineLib
3039
3040         * [include/listbox.h]
3041         change HeapSel from WORD to HANDLE
3042
3043         * [include/resource.h][rc/winerc.c]
3044         struct ResourceTable: removed
3045         struct resource: moved to header file
3046         autoregister resources if supported by compiler
3047
3048         * [memory/local.h]
3049         LOCAL_GetHeap: expect HANDLE rather than WORD
3050         
3051         * [toolkit/Makefile.in]
3052         Add ALLCFLAGS to make hello3
3053
3054         * [toolkit/heap.c]
3055         LocalFree, HEAP_Free: handle 0 parameter gracefully
3056
3057 Wed Dec 06 15:34:23 1995  Greg Cooper <cooper@ima-inc.com>
3058
3059         * [misc/winsocket.c]
3060         Fixed the msgsnd and msgrcv errors that winsock programs get.
3061
3062 Wed Dec 06 12:47:23 MET 1995 Sven Verdoolaege <skimo@dns.ufsia.ac.be>
3063         
3064         * [if1632/kernel.spec]
3065         Fixed _hread and _hwrite return type
3066
3067         * [if1632/relay32.c] [loader/pe_image.c]
3068         Hacked loading of PE-dll's in
3069
3070         * [win32/advapi.c]
3071         Added stubs for RegCreateKeyEx, RegSetValueEx, RegQueryValueEx
3072
3073         * [win32/file.c]
3074         Added stubs for OpenFileMapping, CreateFileMapping, MapViewOfFileEx
3075
3076         * [win32/process.c]
3077         Added stubs for CreateMutexA, ReleaseMutex, CreateEventA,
3078         WaitForSingleObject, DuplicateHandle, GetCurrentProcess
3079         
3080 Mon Dec 04 13:06:37 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3081
3082         * [include/wine.h] [misc/lstr.c]
3083         Define wine_strncpy(). This function does not pad the buffer with 
3084         zeroes like GNU strncpy(), which might break some Windows programs
3085         that pass bogus size arguments.
3086
3087         * [loader/module.c]: GetModuleFileName(),
3088         [misc/commdlg.c]: GetFileTitle(),
3089         [misc/keyboard.c], [misc/lstr.c]: lstrcpyn(),
3090         [misc/ole2nls.c], [misc/profile.c], [multimedia/mcistring.c],
3091         [multimedia/mmsystem.c], [objects/font.c]:
3092         Use wine_strncpy() where strings are returned to Windows programs.
3093         
3094         * [objects/metafile.c]
3095         PlayMetafile(): Clear the handle table before using it.
3096
3097         * [misc/shell.c] [misc/main.c]
3098         Rename SHELL_RegCheckForRoot() to SHELL_Init() and call it from main().
3099         
3100         * [misc/profile.c]
3101         load(): Need to handle comments.
3102         
3103         * [toolkit/libres.c]
3104         Make it compile.
3105         
3106         * [windows/nonclient.c]
3107         Use MAKE_SEGPTR macro in two places where a user heap block used
3108         to be allocated instead.
3109
3110 Sat Dec 02 16:43:43 1995 Ramon Garcia <ramon@ie3.clubs.etsit.upm.es>
3111
3112         * [windows/winpos.c]
3113         In function SetWindowPos: do not redraw the parent of
3114         a window if the specified window is placed on the top.
3115         This avoids that ShowWindow(hwnd,1) hides hwnd instead
3116         of showing it.
3117
3118 Sat Dec 02 11:00:00 1995 Alex Korobka <alex@phm30.pharm.sunysb.edu>
3119
3120         * [windows/scroll.c]
3121         Now it can scroll children along with the client region of parent 
3122         window. Tried to optimize update region calculation. 
3123
3124         * [windows/mdi.c]
3125         ScrollChildren function, more other features added. Basically
3126         a rewrite.
3127
3128         * [windows/winpos.c] [windows/focus.c]
3129         Reimplemented window activation and focus handling.
3130
3131         * [windows/nonclient.c]
3132         Added new flag WIN_NCACTIVATED.
3133
3134         * [windows/message.c] [loader/task.c]
3135         Small changes (to maintain linked list of message queues).
3136
3137 Wed Nov 29 15:51:48 1995  Daniel Schepler  <daniel@shep13.wustl.edu>
3138
3139         * [include/options.h] [misc/main.c] [windows/defwnd.c]
3140           [windows/event.c] [windows/nonclient.c] [windows/win.c] [Wine.man]
3141         Implemented a -managed option to replace the standard Windows
3142         frame of top-level windows with the window manager's decorations.
3143         If a top-level window makes its own frame, this will still show
3144         up, inside the window manager decorations (I believe ctl3dv2.dll
3145         would do this, although I can't test this).
3146
3147 ----------------------------------------------------------------------
3148 Tue Nov 21 18:49:10 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3149
3150         * [configure.in] [Makefile] [misc/dos_fs.c]
3151         Got rid of autoconf.h file.
3152
3153         * [debugger/dbg.y]
3154         More logical behavior upon syntax errors.
3155
3156         * [include/hook.h] [windows/hook.c]
3157         Changed hook structure and rewrote most of the hook functions for
3158         better compatibility, based on investigations by Alex Korobka.
3159
3160         * [include/message.h] [windows/message.c]
3161         Added hooks to message queue structure and made the structure
3162         layout Windows-compatible.
3163         Added support for WH_MOUSE, WH_KEYBOARD, WH_HARDWARE and
3164         WH_JOURNALRECORD hooks.
3165
3166         * [misc/main.c]
3167         Added command-line option for changing the language at run-time
3168         (not implemented yet), based on a suggestion from Michael Patra.
3169
3170         * [objects/cursoricon.c]
3171         Fixed silly SEGPTR bug in DumpIcon().
3172
3173 Mon Nov 20 22:22:22 1995  Alex Korobka <alex@phm30.pharm.sunysb.edu>
3174
3175         * [controls/listbox.c] [controls/combo.c] [include/listbox.h]
3176         Partial implementaion of LBS_EXTENDEDSEL style,
3177         yet more updates for drag & drop support. Now works.
3178
3179         * [windows/defwnd.c]
3180         More message handlers.
3181
3182         * [windows/win.c]
3183         DragObject, DragDetect, AnyPopup functions. 
3184
3185         * [controls/listbox.c]
3186         More kludgy fixes (WM_...TOITEM, etc.).
3187
3188         * [objects/cursoricon.c] [objects/oembitmap.c]
3189         IconToCursor skeleton, patch for OBM_LoadCursorIcon to handle new
3190         cursor.
3191
3192         * [include/bitmaps/ocr*]
3193         New OEM cursors.
3194
3195 Mon Nov 20 11:05:20 EST 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
3196
3197         * [toolkit/heap.c]
3198         Swapped flags and size arguments to LocalRealloc as per changes in
3199         memory/local.c by William Magro in previous release.
3200
3201         * [include/wintypes.h]
3202         Reinstated the #define's for 'min' and 'max', since they're part of
3203         the Windows API.  I really don't think it's a wise idea, so I put
3204         a '#ifndef DONT_DEFINE_min_AND_max' around them.  I think the actual
3205         WINE code should never use these (it should use 'MIN' and 'MAX'
3206         instead).
3207
3208         * [loader/*]
3209         Put '#ifndef WINELIB' around many things that WINElib should not need.
3210
3211         * [controls/edit.c]
3212         Took out many '#if defined(WINELIB)' sections with the associated
3213         comment 'temporary fix, until Local memory is correctly implemented in
3214         WINELIB', since the effective translations are now in 
3215         toolkit/miscstubs.c.
3216         Took out the #ifndef's I put in EDIT_ClearText.  Whoever modified this
3217         file fixed (or at least postponed) the bug I had encountered.
3218
3219         * [loader/task.c]
3220         Put an #ifdef in TASK_CreateTask() that hardwires the current drive to
3221         C:  This will probably cause a lot of trouble if this change is
3222         forgotten in the future, but it will let things like the OpenFileName
3223         dialog work for now.
3224
3225         * [toolkit/libres.c] [toolkit/Makefile.in] [toolkit/Makefile]
3226           [include/libres.h]
3227         Made new libres.c file, which will contain functions for supporting
3228         accessing resources by name in WINElib.  'winerc' will need to be
3229         changed.
3230
3231         * [toolkit/heap.c]
3232         Refined memory routines to allow for differences between LocalAlloc
3233         and GlobalAlloc and between LocalSize and GlobalSize.
3234
3235         * [windows/message.c] [include/windows.h]
3236         Defined the GetCurrentTime routine in windows/message.c, and removed
3237         the #define in windows.h.
3238
3239 Mon Nov 20 00:36:42 MET 1995 Sven Verdoolaege <skimo@dns.ufsia.ac.be>
3240
3241         * [*/*]
3242         Added new debugging type DEBUG_WIN32 and DEBUG_ENV.
3243
3244         * [loader/module.c]
3245         Added undocumented GetExpWinVer.
3246
3247         * [tools/build.c]
3248         Previous code didn't pop possibly changed %esi, %edi and %edx
3249         from the stack.
3250         
3251         * [win32/advapi.c]
3252         Added GetUserNameA.
3253
3254         * [win32/code_page.c]
3255         Added stub for MultiByteToWideChar.
3256
3257         * [win32/console.c]
3258         Added SetConsoleCtrlHandler stub.
3259
3260         * [win32/file.c]
3261         Added ReadFile CreateFileA GetFileInformationByHandle stubs.
3262         Added CloseHandle.
3263
3264         * [win32/memory.c]
3265         Changed VirtualAlloc and VirtualFree.
3266
3267         * [win32/process.c]
3268         Added ExitProcess.
3269
3270 Sun Nov 19 17:54:42 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
3271
3272         * [include/windows.h]
3273         Fixed a few broken structure definitions.
3274
3275         * [loader/resource.c]
3276         FindResource(): Need to check for '#xxx' strings here.
3277
3278         * [miscemu/int21.c]
3279         FindNext(): Return MS-DOS filenames uppercase.
3280
3281         * [objects/cursoricon.c]
3282         CreateIcon(), CreateCursor(): Added missing element to CURSORICONINFO
3283         initializers.
3284         
3285         * [misc/file.c]
3286         _lopen(): Files opened in OF_WRITE mode are truncated.
3287         OpenFile(): Ignore OF_READ/OF_WRITE/OF_READWRITE when files are
3288         created; use read/write mode.
3289         
3290         * [misc/profile.c]
3291         load(): Rewritten.
3292         
3293         * [misc/commdlg.c]
3294         Fixed bad call to strncpy() that smashed the stack.
3295
3296         * [controls/combo.c] [windows/winpos.c] [memory/selector.c]
3297         Operator precedence fixes. People who use gcc 2.7.1 don't need a
3298         debugger :-)
3299         
3300         * [if1632/gdi.spec] [objects/palette.c]
3301         Add ResizePalette() and AnimatePalette() stubs. They don't do anything,
3302         but sometimes that's good enough.
3303
3304 Fri Nov 17 09:10:35 GMT 1995  John Harvey <john@division.co.uk>
3305
3306         * [include/wine.h] [include/registers.h] [include/winsock.h]
3307         Added definitions for Unixware.
3308
3309         * [loader/signal.c] [misc/comm.c] [misc/winsocket.c]
3310         Misc. fixes for Unixware.
3311
3312         * [loader/task.c]
3313         Made assignemts to context in InitTask for registers use the macros
3314         from registers.h to make them more portable. (Needed for Unixware)
3315
3316         * [tools/build.c]
3317         Fixed register acces routines to work on Unixware. Bit grubby but
3318         it seems to work.
3319
3320         * [controls/edit.c]
3321         EDIT_WM_NCCreate allocates local heap if hasn't been previously
3322         allocated.
3323         
3324         * [miscemu/int21.c]
3325         mkdir now creates directory with permission to access it.
3326
3327         * [misc/dos_fs.c]
3328         mkdir now creates directory with permission to access it.
3329         DOS_opendir now uses linked list of dirents to avoid problems with 
3330         realloc changing address of malloced memory.
3331
3332 Thu Nov 16 12:47:13 1995  Michael Patra  <patra@itp1.Physik.TU-Berlin.DE>
3333
3334         * [controls/menu.c]
3335         MENU_CalcItemSize(): Fixed handling of empty menu items.
3336
3337 Sat Nov 11 21:46:54 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
3338
3339         * [misc/file.c]
3340         In OpenFile, unlink should be done on the unix filename.
3341
3342 Sat Nov 11 16:43:29 1995  Cameron Heide  (heide@ee.ualberta.ca)
3343
3344         * [include/handle32.h]
3345         New header file containing internal Win32 kernel handle
3346         information.
3347
3348         * [win32/file.c]
3349         Added ReadFile, CreateFile, and CloseFileHandle, and did
3350         some reorganizing to match the new handle allocation scheme.
3351
3352         * [win32/init.c]
3353         Added CloseHandle and the creation of standard I/O handles.
3354
3355         * [win32/object_mgt.c]
3356         New module for allocating and freeing Win32 kernel handles.
3357
3358 ----------------------------------------------------------------------
3359 Fri Nov  3 20:08:17 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3360
3361         * [configure.in]
3362         Attempt to check for -li386 on NetBSD. Please test this.
3363
3364 Mon Oct 30 12:40:32 EST 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
3365
3366         * [*/*]
3367         Eliminated various warnings with either explicit casts or more
3368         accurate variable/parameter declarations (e.g. INT instead of short
3369         or WORD).
3370         Changed macros 'min' and 'max' to 'MIN' and 'MAX', since they're
3371         macros.
3372
3373         * [controls/edit.c] [windows/defdlg.c]
3374         Added '#ifdef SUPERFLUOUS_FUNCTIONS' wrappers around function
3375         definition of EDIT_KeyVScrollDoc, EDIT_TextLineNumber, and
3376         DEFDLG_FindDefButton to avoid warnings.
3377
3378         * [controls/button.c] [controls/scroll.c] [windows/defwnd.c]
3379           [windows/message.c] [windows/nonclient.c]
3380         Converted MAKEPOINT macro call to manual conversion.
3381
3382         * [include/windows.h]
3383         For WINELIB32, structures POINT, SIZE, and RECT have LONG members
3384         instead of INT.  This also invalidates the macro MAKEPOINT(), which
3385         is not supported in Win32.  Also defined the POINTS structure (SHORT
3386         members) and the MAKEPOINTS macro.
3387
3388         * [misc/commdlg.c]
3389         Changed a lot of 'strcpy' calls to 'strncpy' calls.  I'm desperate to
3390         find this memory bug, and this should be done anyway.
3391
3392         * [controls/edit.c]
3393         Well, the alteration mentioned above didn't do it, but #ifdef'ing out
3394         a few lines in EDIT_ClearText did.  This leads to bugs, but for now,
3395         it's better than bizzare memory troubles.
3396
3397         * [toolkit/miscstubs.c]
3398         Removed warning messages in GLOBAL_CreateBlock(), GLOBAL_FreeBlock(),
3399         and RELAY32_GetEntryPoint().  These are the most popular warnings, and
3400         their current implementation seems fine.
3401
3402 Sat Oct 28 09:39:18 1995  Jochen Karrer <cip307@wpax01.Physik.Uni-Wuerzburg.DE>
3403
3404         * [objects/cursoricon.c]
3405         Fix for "broken" X servers that invert masked cursor colors.
3406
3407 Fri Oct 27 19:27:21 1995  Alex Korobka  <alex@phm6.pharm.sunysb.edu>
3408
3409         * [windows/dialog.c] [windows/nonclient.c]
3410         Remove unnecessary items from the system menu.
3411
3412 Thu Oct 26 05:03:03 MET 1995  Philippe De Muyter <phdm@info.ucl.ac.be>
3413
3414         * [objects/color.c] [objects/palette.c]
3415         Make GetNearestColor return a RGB value instead of a pixel value.
3416
3417 Wed Oct 25 23:33:39 1995    Martin von Loewis <loewis@informatik.hu-berlin.de>
3418
3419         * [controls/desktop.c][controls/menu.c][include/menu.h]
3420         Changed WORD parameters to UINT parameters.
3421
3422         * [include/wintypes.h]
3423         Made UINT 32bit for WINELIB.
3424
3425         * [loader/main.c]
3426         Disabled RELAY32_Init and MODULE_Init for WINELIB.
3427
3428         * [misc/main.c]
3429         Assume CPU386 for WINELIB.
3430
3431         * [rc/winerc]
3432         add_popup: set MF_POPUP flag on menu item.
3433
3434         * [toolkit/Makefile.in][toolkit/hello3.c][toolkit/hello3res.c]
3435         Add resource demo hello3 for WINELIB.
3436         New file README.resources.
3437
3438         * [toolkit/miscstubs.c]
3439         Add a case for 17.
3440
3441 Tue Oct 17 15:13:10 IST 1995  Itai Nahshon <nahshon@vnet.ibm.com>
3442
3443         * [loader/module.c]
3444         Do not append .exe if the file name already has an extension.
3445
3446         * [misc/profile.c]
3447         Avoid creating a file with a junk name if a .ini file does not
3448         exist.
3449
3450         * [if1632/gdi.spec] [if1632/user.spec] [if1632/dummy.c]
3451         Added a lot of dummy stubs for Windows Hebrew version.
3452
3453 Tue Oct 17 01:03:24 1995 William Magro <wmagro@tc.cornell.edu>
3454
3455         * [controls/button.c]
3456         Fix for buttons with no label.
3457
3458         * [controls/combo.c][controls/listbox.c]
3459         Fixes for scrollbar positioning.  Now disappears correctly
3460         for short lists.
3461
3462         * [controls/edit.c]
3463         Handle memory allocation differently when building as library.
3464
3465         * [controls/static]
3466         Don't destroy old icon before drawing new icon. (Fixes landscape/
3467         portrait toggle icon in print dialog.)
3468
3469         * [if1632/gdi.spec]
3470         New functions SetMetaFileBits and GetMetaFileBits
3471
3472         * [include/sysmetrics.h] [windows/sysmetrics.c]
3473         Add support for GetSystemMetrics(SM_CMETRICS) == SM_CMETRICS
3474
3475         * [include/windows.h]
3476         META_EXTTEXTOUT, not META_SETTEXTOUT
3477         define GetCurrentTime as GetTickCount (for wine library)
3478
3479         * [loader/main.c]
3480         Don't initialize built-in modules in wine library
3481
3482         * [memory/local.c]
3483         LocalReAlloc was defined incorrectly. Swap flags and size arguments.
3484
3485         * [misc/main.c]
3486         Always report CPUTYPE=4 to wine library.
3487
3488         * [objects/dib.c]
3489         RLE8 images were missing top line when decompressed.
3490
3491         * [objects/metafile.c]
3492         SetMetaFileBits and GetMetaFileBits implemented.  Works when called
3493         from winhelp.  More testing needed.  Various memory leaks plugged.
3494         Various other bug fixes.  New metafile operations added in
3495         PlayMetaFileRecord: CreatePalette, SetTextAlign, SelectPalette,
3496         SetMapperFlags, RealizePalette, ExtTextOut, Escape.  Testing needed.
3497
3498         * [toolkit/heap.c]
3499         LocalUnLock changed to LocalUnlock
3500
3501 Sun Oct 15 21:55:33 1995  Anand Kumria <akumria@ozemail.com.au>
3502         
3503         * [misc/winsock.c] 
3504         Return the correct error number, for host lookup operations.
3505         Also, correct the problem with send_message.
3506
3507 Fri Oct 13 19:04:35 1995  Morten Welinder  <terra@diku.dk>
3508
3509         * [Makefile.in]
3510         Using nm's built-in sorting.
3511
3512         * [*/*.c]
3513         Use xmalloc for malloc and xrealloc for realloc in all ungarded
3514         cases.
3515
3516         * [debugger/dbg.y]
3517         Handle C-like expressions.  Clean-up.
3518
3519         * [debugger/debug.l]
3520         Lots of new tokens for expressions.
3521
3522         * [debugger/info.c]
3523         Implement "list" command for disassembling.
3524
3525         * [misc/ole2nls.c]
3526         Implement more Danish stuff.
3527
3528 Fri Oct  6 10:39:39 1995 Ram'on Garc'ia <ramon@ie3.clubs.etsit.upm.es>
3529
3530         * [loader/module.c]
3531         Updated self-loading modules to support for new 32 bit 
3532         stack frames.
3533
3534 ----------------------------------------------------------------------
3535 Sun Oct  1 15:48:34 1995  Alexandre Julliard  <julliard@sunsite.unc>
3536
3537         * [controls/menu.c]
3538         Fixed GetMenuString() for non-string items.
3539
3540         * [debugger/*.c]
3541         First attempt to check validity of pointers before memory
3542         accesses. For now only segmented pointers are checked.
3543
3544         * [debugger/dbg.y] [memory/ldt.c]
3545         Added possibility to dump only one segment with 'info segment'.
3546
3547         * [include/bitmaps/ocr_*]
3548         Added all OEM cursors as XPM bitmaps.
3549
3550         * [include/cursoricon.h] [objects/cursoricon.c]
3551         Rewrote all cursor and icon management to use the same memory
3552         layout as Windows, and to factor common code between icons and
3553         cursors. Implemented icon directory lookup to find the best
3554         matching icon (i.e. the color one).
3555         Implemented CopyCursor() and DumpIcon().
3556
3557         * [loader/module.c]
3558         For disabled built-in modules, we now try to load the Windows DLL
3559         first, and if this fails we fall back to using the built-in module
3560         anyway.
3561
3562         * [memory/global.c]
3563         Fixed GlobalHandle() to return the correct selector in the high
3564         word even if we are passed a handle in the first place.
3565
3566         * [miscemu/instr.c]
3567         Take into account the size of the operand and of the stack segment
3568         when incrementing the stack pointer.
3569         Avoid referencing FS_reg and GS_reg on *BSD.
3570
3571         * [objects/dib.c]
3572         All DIB functions now accept a BITMAPCOREHEADER format bitmap.
3573         Monochrome DIBs are created as monochrome bitmap iff they are
3574         black and white.
3575
3576         * [objects/oembitmap.c]
3577         Added support for OEM cursors, changed OBM_LoadIcon to use the new
3578         icon memory layout.
3579
3580         * [rc/sysres_Fr.rc]
3581         Added French [Fr] language support.
3582
3583         * [win32/environment.c]
3584         Fixed GetCommandLineA() to use current PDB.
3585
3586         * [windows/event.c] [windows/winpos.c]
3587         Simulate a mouse motion event upon SetWindowPos() to force the
3588         cursor to be set correctly.
3589
3590 Sat Sep 30 17:49:32  Cameron Heide  (heide@ee.ualberta.ca)
3591
3592         * [win32/*]
3593         New Win32 kernel functions: GetACP, GetCPInfo,
3594         GetEnvironmentVariableA, GetFileType, GetLastError, GetOEMCP,
3595         GetStartupInfoA, GetTimeZoneInformation, SetEnvironmentVariable,
3596         SetFilePointer, SetLastError, VirtualAlloc, VirtualFree,
3597         WriteFile.  Completed implementations of GetCommandLineA.
3598
3599         * [include/kernel32.h]
3600         New file.
3601
3602         * [loader/main.c]
3603         Call initialization function for Win32 data (doesn't currently do
3604         anything).
3605
3606         * [misc/main.c]
3607         Implemented GetEnvironmentVariableA, SetEnvironmentVariableA.
3608
3609 Sat Sep 30 00:26:56 1995  Niels de Carpentier  <niels@cindy.et.tudelft.nl>
3610
3611         * [windows/winpos.c][miscemu/emulate.c][loader/module.c]
3612           [misc/commdlg.c]
3613         Misc. bug fixes
3614
3615 Fri Sep 29 16:16:13 1995  Jim Peterson <jspeter@birch.ee.vt.edu>
3616
3617         * [*/*]
3618         For Winelib, explicit casts have been placed where warnings were
3619         usually generated.
3620         printf formats which give the format for printing a handle as
3621         "%04x" or something similar have been changed to use the NPFMT
3622         macro defined in include/wintypes.h.  Some times, explicit casts
3623         were also necessary.
3624         Parameter, field, and variable declarations have been made more
3625         exact, such as converting 'WORD wParam' to 'WPARAM wParam' or
3626         'WORD hFont' to 'HFONT hFont'.
3627         Any call of the form GetWindowWord(hwnd,GWW_HINSTANCE) has been
3628         replaced with a call to WIN_GetWindowInstance(hwnd).
3629
3630         * [controls/combo.c]
3631         Added WINELIB32 support in CLBoxGetCombo().
3632
3633         * [include/dialog.h]
3634         Commented out the '#ifndef WINELIB' around the '#pragma pack(1)'.
3635         winelib needs the packing as well (e.g. when accessing resources
3636         like sysres_DIALOG_SHELL_ABOUT_MSGBOX).
3637
3638         * [include/windows.h]
3639         Got rid of the F[a-k] macros, which were cluttering up the global
3640         namespace.
3641
3642         * [include/windows.h] [windows/defwnd.c]
3643         Added Win32 messages WM_CTLCOLOR*.
3644
3645         * [include/wintypes.h]
3646         Put in preprocessor '#define WINELIB32' if appropriate and changed
3647         the types of some typedefs (WPARAM, HANDLE) based on this.
3648         
3649         * [loader/module.c] [toolkit/miscstubs.c]
3650         Added #ifdef'd portion in LoadModule to handle loading a WINElib
3651         module (already loaded, just init values).  '#ifdef'ed out the
3652         definition for GetWndProcEntry16 and added a new version to
3653         toolkit/miscstubs.c.
3654
3655         * [misc/shell.c]
3656         Adjusted the lengths of AppName and AppMisc from 512,512 to 128,906.
3657         Same amount of total storage, but much more reasonable.  Also, changed
3658         calls to strcpy() in ShellAbout() to calls to strncpy() instead.
3659         This was a difficult bug to track down, but the AppMisc field was
3660         being initialized with the contributers text, which was much larger
3661         than 512 characters.
3662
3663         * [toolkit/atom.c]
3664         New file for atom-handling functions.  Copied from memory/atom.c and
3665         then heavily modified.  Right now, it's just a linked list of atoms.
3666         Consider it as a hash table with just one entry.  It's easily changed
3667         later.
3668
3669         * [toolkit/heap.c]
3670         Commented out the heap functions with a "#ifdef WINELIB16" and put in
3671         a Win32 version (which is basically a modified copy).
3672
3673         * [toolkit/sup.c] [toolkit/miscstubs.c]
3674         Moved the stuff I put in toolkit/sup.c into toolkit/miscstubs.c and
3675         added quite a few more stubs.
3676
3677         * [toolkit/winmain.c]
3678         Rearranged startup code in _WinMain.  I think this will work.
3679
3680         * [toolkit/Makefile.in]
3681         Added targets for 'hello' and 'hello2' in case anyone cares to try
3682         out the sample programs.
3683
3684 Wed Sep 27 23:13:43 1995  Anand Kumria <akumria@ozemail.com.au>
3685         
3686         * [miscemu/int2f.c] [miscemu/vxd.c] [if1632/winprocs.spec]
3687         First attempt at support for some VxDs. Comm, Shell and Pagefile.
3688
3689 Tue Sep 26 21:34:45 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
3690
3691         * [misc/dos_fs.c]
3692         DOS_SimplifyPath: Also remove "/./" from path. (Happens when
3693         starting applications like 'wine ./excel.exe')
3694
3695 Sat Sep 23 23:32:40 1995  Morten Welinder  <terra@diku.dk>
3696
3697         * [configure.in]
3698         Avoid relative path for wine.ini.
3699
3700         * [rc/sysres_Da.rc]
3701         Support for Danish [Da] language.
3702
3703         * [misc/main.c] [miscemu/cpu.c]
3704         Return the processor we're running on correctly.
3705
3706         * [miscemu/int2f.c]
3707         Minor stuff in int 0x2f, function 0x16.
3708
3709 Sat Sep 23 1995 17:58:04  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
3710
3711         * [misc/shell.c] [misc/main.c]
3712         Implement saving and loading of the registry database (needed for
3713         OLE). Very experimental. Fixed ShellExecute().
3714         
3715         * [miscemu/int21.c]
3716         EEXIST is not a critical error condition for mkdir().
3717
3718 Fri Sep 22 01:33:34 1995  Alex Korobka  <alex@phm6.pharm.sunysb.edu>
3719
3720         * [include/shell.h] [misc/shell.c]
3721         Implemented 4 drag/drop functions with documented functionality.
3722
3723         * [multimedia/time.c]
3724         "Fixed" MMSysTimeCallback kludge so Excel5 loads up without crashing.
3725
3726         * [*/*] 
3727         Added new files, more message definitions, structures, debug info,
3728         etc.  Rewrote message logging functions to produce output similar
3729         to WinSight.  Check out -debugmsg +message option.
3730
3731         * [misc/file.c]
3732         Fixed GetDriveType return value.  
3733
3734         * [windows/message.c] 
3735         Hooks are invoked in normal order.
3736
3737         * [miscemu/*]
3738         Added some functions and interrupts.
3739
3740         * [misc/shell.c]
3741         Implemented Drag... functions.
3742
3743 Thu Sep 21 23:50:12 1995  Jukka Iivonen <iivonen@cc.helsinki.fi>
3744
3745         * [rc/sysres_Fi.rc] [rc/sysres.rc]
3746         First attempt at Finnish [Fi] language support.
3747
3748 ----------------------------------------------------------------------------
3749 Sun Sep 17 16:47:49 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3750
3751         * [configure.in] [*/Makefile.in] [Make.rules.in]
3752         Cleaned up makefiles, added configuration option for Winelib,
3753         grouped common make rules in Make.rules.in.
3754
3755         * [Configure]
3756         Renamed to 'Configure.old'; please use 'configure' instead.
3757
3758         * [controls/menu.c]
3759         Fixed DestroyMenu() to avoid deleting the same menu twice.
3760         More fixes to WM_MENUSELECT, and added WM_INITMENU.
3761
3762         * [if1632/relay.c]
3763         Fixed wrong register values displayed by RELAY_DebugCall32().
3764
3765         * [memory/local.c]
3766         Fixed LocalLock() and LocalUnlock() to increment/decrement the
3767         lock count for moveable blocks.
3768
3769         * [misc/commdlg.c] [misc/shell.c] [rc/winerc.c]
3770         Modified the generated C file so that the resource information
3771         (size, etc.) is also exported.
3772         Modified common dialogs to use the new informations.
3773
3774         * [misc/main.c] [ANNOUNCE]
3775         Update the list of contributors. Please let me know if I forgot
3776         someone.
3777
3778         * [rc/sysres.rc] [rc/sysres_En.rc]
3779         Moved English resources to sysres_En.rc.
3780         Changed ids from numeric to symbolic for dialogs.
3781
3782         * [windows/dialog.c]
3783         Modified template parsing to be able to pass segmented pointers to
3784         CreateWindow().
3785
3786         * [windows/win.c]
3787         CreateWindow() now takes segmented pointers for class and window
3788         names.
3789         Maxmimize or minimize the window upon creation if the WS_MAXIMIZE
3790         or WS_MINIMIZE bits are set.
3791
3792 Thu Sep 14 17:19:57 1995  Paul Wilhelm  <paul@paul.accessone.com>
3793
3794         * [controls/scroll.c]
3795         Fixed scroll-bar bugs for non-client windows.
3796
3797 Thu Sep 14 14:04:14 MET DST 1995 Jochen Hoenicke <Jochen.Hoenicke@arbi.Informatik.Uni-Oldenburg.de>
3798
3799         * [include/cursor.h] [windows/cursor.c]
3800         Cursor is not mirrored any more and the hotspot is set right.
3801
3802 Wed Sep 13 14:22:31 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
3803
3804         * [ole.h]
3805         Misc small fixes.
3806
3807 Mon Sep  4 00:01:23 1995  Jon Tombs <jon@gte.esi.us.es>
3808
3809         * [rc/sysres_Es.rc]
3810         First attempt at Spanish [Es] language support.
3811
3812 Sun Sep  3 13:22:33 1995     Martin von Loewis <loewis@informatik.hu-berlin.de>
3813
3814         * [include/alias.h][windows/alias.c][include/relay32.h]
3815         New files
3816
3817         * [controls/widgets.c]
3818         WIDGETS_Init: register alias window procedures
3819
3820         * [if1632/callback.c]
3821         CallWndProc: Call alias functions if necessary
3822
3823         * [if1632/gdi32.spec]
3824         GetStockObject, TextOutA: new relays
3825
3826         * [misc/user32.c][if1632/user32.spec][misc/Makefile.in][misc/Imakefile]
3827         user32.c: new file
3828         BeginPaint,CreateWindowExA,DefWindowProcA,DispatchMessage,EndPaint,
3829         GetMessageA,RegisterClassA,ShowWindow,UpdateWindow: new relays
3830
3831         * [if1632/winprocs32.spec][loader/pe_image.c][loader/module.c]
3832         PE_Win32CallToStart: new function
3833         MODULE_CreateInstance: removed static attribute
3834         LoadModule: Try loading PE image on error 21
3835         PE_LoadModule: new function
3836         PE_LoadImage: initialize pe_data with 0
3837         
3838         * [include/dlls.h][include/peexe.h]
3839         moved pe_data and w_files to peexe.h
3840         
3841         * [misc/shell.c]
3842         ShellAbout: Register AboutWndProc aliases
3843
3844         * [miscemu/int21.c]
3845         handle 0x440A and 0xDC
3846
3847         * [miscemu/int2f.c]
3848         handle 0x84
3849
3850         * [objects/dib.c]
3851         CreateDIBitmap: complain if BITMAPINFOHEADER is of wrong size
3852
3853         * [tools/build.c]
3854         include windows.h and relay32.h into generated Win32 relays,
3855         don't declare the implementation as int (*)();
3856         limit in WIN32_builtin was off by one
3857
3858         * [windows/caret.c]
3859         CARET_Initialize: new function, call on strategic places
3860
3861         * [windows/messagebox.c]
3862         MessageBox: register message box proc aliases
3863
3864         * [if1632/advapi32.spec][if1632/comdlg32.spec]
3865         New files
3866
3867         * [if1632/Makefile.in][if1632/Imakefile][if1632/relay32.c]
3868         added new spec files
3869         RELAY32_GetBuiltinDLL: perform lookup case insensitive
3870         RELAY32_GetEntryPoint: start name search at 0
3871
3872         * [if1632/user.spec][if1632/kernel.spec][if1632/gdi.spec]
3873         Added stubs for new Win95 API
3874
3875 Sat Sep 2 1995  Martin Roy
3876
3877         * [misc/commdlg.c]
3878         In WM_INITDIALOG, current filter must reflect lpofn->nFilterIndex.
3879         When process IDOK button in FILEDLG_WMCommand(),
3880         lpofn->nFilterIndex should be updated to current selection.
3881
3882 Thu Aug 31 15:00:00 1995 Ram'on Garc'ia <ramon@ie3.clubs.etsit.upm.es>
3883
3884         * [loader/module.c] [loader/ne_image.c]
3885         Added support of self-loading modules.
3886
3887 ---------------------------------------------------------------------
3888 Thu Aug 31 17:19:57 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3889
3890         * [Configure]
3891         Added compile-time option for IPC.
3892
3893         * [configure.in]
3894         Added command-line options for language, IPC and malloc
3895         debugging.
3896
3897         * [controls/menu.c]
3898         WM_MENUSELECT was sometimes sent to the wrong window.
3899
3900         * [debugger/break.c]
3901         For the 'next' command, only step over instruction that require
3902         it. This allows 'next' to do the right thing with jmp and ret
3903         instructions.
3904
3905         * [ipc/*.c] [memory/atom.c] [memory/global.c]
3906         IPC can now be configured out at compile-time.
3907
3908         * [loader/task.c]
3909         Bug fix in TASK_Reschedule() that could cause a task to be deleted
3910         twice.
3911
3912         * [miscemu/dosmem.c] (New file)
3913         Partial emulation of the BIOS data segment.
3914
3915         * [miscemu/instr.c]
3916         Trap attempts to access selector 0x40 and remap the access to
3917         segment __0040H.
3918
3919         * [tools/build.c]
3920         Fixed bug in CallTo32_LargeStack() that caused problems when
3921         compiling Wine with the -fomit-frame-pointer option.
3922
3923         * [windows/message.c]
3924         Fixed bug in hardware event handling that could cause some events
3925         to get ignored.
3926
3927 Sat Aug 26 13:12:59 IST 1995 Michael Veksler <mveksler@vnet.ibm.com>
3928
3929         * [ipc/README] [ipc/dde.tex]
3930         LaTeX documentation for the ipc and DDE stuff.
3931
3932 Wed Aug 23 22:01:23 GMT 1995 Michael Veksler <mveksler@vnet.ibm.com>
3933
3934         * [ipc/Imakefile] [ipc/wine_test_stub.c]
3935         Fixed IPC testing. Now it can be compiled with "make tests"
3936
3937 Wed Aug 23 21:04:14 1995  Fons Botman  <botman@wab-tis.rabobank.nl>
3938
3939         * [if1632/kernel.spec] [include/windows.h] [misc/main.c]
3940         Added GetWinDebugInfo/SetWinDebugInfo stub for player.exe
3941
3942 Sun Aug  20 13:49:42 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
3943
3944         * [miscemu/int21.c]
3945         Misc fix to int21,ah=40 (write) to match _lwrite().
3946         AX=0x440A (check if handle is remote) added.
3947
3948         * [multimedia/mmsystem.c]
3949         Moved mciSendString to mcistring.c.
3950
3951         * [multimedia/mcistring.c]
3952         New file, string interface for MCI (not complete, not thoroughly
3953         tested).
3954
3955         * [multimedia/audio.c]
3956         IOCTL prints errors; one paranoid check disabled.
3957
3958         * [misc/file.c]
3959         Misc operator precedence fixes.
3960
3961         * [if1632/gdi.spec] [objects/bitblt.c]
3962         Stub for FastWindowFrame (parameters not correct).
3963
3964 Sat Aug 19 01:31:23 1995  Graham Menhennitt <gfm@werple.mira.net.au>
3965
3966         * [loader/ne_image.c]
3967         Preliminary support for iterated segments.
3968
3969 Sat Aug 19 00:43:04 1995  Andrew Taylor  (andrew@riscan.com)
3970
3971         * [windows/mapping.c]
3972         In function MAPPING_FixIsotropic(), VportExt[XY] is multiplied by
3973         the absolute value of (ydim / xdim) or (xdim / ydim).
3974
3975 Thu Aug 15 23:00:16  Gregory Trubetskoy  <grisha@mira.com>
3976
3977         * [objects/oembitmap.c]
3978         Added some includes for Windows 95.
3979
3980         * [include/sysmetrics.h]
3981         Added some sysmetrics for Windows 95.
3982
3983         * [include/bitmaps/*95]
3984         New files: obm_close_95, obm_closed_95, obm_reduce_95, obm_reduced_95
3985         obm_zoom_95, obm_zoomd_95 - these are some pixmaps for Windows 95.
3986
3987 Thu Aug 10 12:00:00 1995  Jan Willamowius  (jan@janhh.shnet.org)
3988
3989         * [misc/shell.c] [rc/sysres*.rc]
3990         The caption of the ShellAbout dialog box is language specific and
3991         should be defined in the resources.
3992
3993 ----------------------------------------------------------------------
3994 Thu Aug 17 19:30:14 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
3995
3996         * [*/Makefile.in]
3997         Removed winelibclean target, as it doesn't work anyway.
3998
3999         * [controls/button.c]
4000         Avoid drawing the focus rectangle outside of the button.
4001
4002         * [controls/widgets.c]
4003         Fixed bug with the size of the reserved bytes for the Edit
4004         control (caused Eudora to crash).
4005
4006         * [debugger/*] [include/debugger.h]
4007         Unified debugger address handling. Segmented and linear addresses
4008         are no grouped in a single type DBG_ADDR.
4009         All commands now accept seg:off addresses.
4010         Module entry points are now loaded upon first entry to the
4011         debugger, so that entry points of the loaded executable also
4012         appear in the symbol table.
4013
4014         * [include/registers.h] [miscemu/*.c]
4015         Register macros are now of the form 'AX_reg(context)' instead of 'AX'.
4016         This makes code less readable, but will prevent a lot of name
4017         clashes with other definitions. It also avoids a hidden reference
4018         to the 'context' variable.
4019
4020         * [ipc/dde_atom.c] [misc/atom.c]
4021         All *AddAtom and *FindAtom functions now take a SEGPTR parameter,
4022         to allow supporting integer atoms.
4023         Moved atom.c to memory/ directory.
4024
4025         * [loader/task.c]
4026         Fixed environment allocation to compute the size dynamically.
4027         Added 'windir' environment variable.
4028         Fixed GetDOSEnvironment() to return the current task environment.
4029
4030         * [windows/message.c]
4031         Fixed bug in MSG_GetWindowForEvent().
4032
4033 Wed Aug  9 11:40:43 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
4034
4035         * [include/ole.h]
4036         Added a lot of structures  from my Borland Manual. Neither complete,
4037         nor 100% right (check please)
4038         
4039         * [misc/shell.c]
4040         Fixed some of the Reg* functions.
4041         Enhanced ShellExecute.
4042         Please test: wine "regedit.exe /v" mplayer.exe soundrec.exe
4043         Do YOU know the format of \WINDOWS\REG.DAT? Mail me please :)
4044
4045         * [misc/dos_fs.c]
4046         Make umsdos mounted windows dirs work again.
4047
4048         * [miscemu/emulate.c]
4049         Added some comments, preimplementation of subfunction 7.
4050
4051         * [multimedia/mmsystem.c]
4052         Implemented mciSendString. not complete, not clean, not
4053         necessarily working (only checked with a program which uses
4054         'cdaudio' (one working program is cool.exe, a shareware waveditor
4055         with cdaudio play facilities.)
4056
4057         * [multimedia/mcicda.c]
4058         Segptr fixes in DriverProc
4059         Default cdrom drive in Linux is /dev/cdrom ... usually a symbolic
4060         link to your real cdrom device.
4061
4062 Tue Aug  8 19:41:50 CDT 1995 Daniel Schepler <dks2@cec.wustl.edu>
4063
4064         * [loader/resource.c]
4065         Don't crash in a LoadString to NULL
4066
4067         * [loader/resource.c]
4068         Fixed accelerators to work with modifiers.  (ALT-x modifiers still
4069         won't work unless the ALT keypress exited the menu.)
4070
4071         * [misc/file.c]
4072         Expand a file to the current offset with an _lwrite of size zero.
4073
4074         * [misc/file.c]
4075         Set a newly created file to read-write instead of write-only.
4076         
4077 Sun Aug  6 20:28:35 1995  Anand Kumria <akumria@ozemail.com.au>
4078
4079         * [misc/main.c] [include/msdos.h]
4080         Fixed to return DOS version 6.22, and the correct byte order
4081         for Windows programs.
4082
4083 Wed Aug  2 12:36:33 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4084
4085         * [include/options.h] [memory/global.c] [misc/main.c]
4086         Make the new IPC run-time selectible, disabling it by default.
4087         (I think it's only useful for libwine, anyway.)
4088
4089         * [loader/task.c] [memory/selector.c]
4090         In FreeSelector(), walk up the stack and fix the frames.
4091
4092         * [objects/dib.c]
4093         Missing break statement in DIB_SetImageBits_RLE8().
4094         In GetDIBits(), set the compression flag in the bitmap info to zero.
4095
4096         * [windows/dialog.c]
4097         GetNextDlgGroupItem() needs to treat the first child as if it had
4098         an implicit WS_GROUP bit set.
4099
4100 Mon Jul 31 15:44:47 EDT 1995 Louis-D. Dubeau <ldd@step.polymtl.ca>
4101
4102         * [misc/dos_fs.c]
4103         Quick'n dirty fix for the initialisation of the Z: information
4104         structure.
4105
4106 ----------------------------------------------------------------------
4107 Sat Jul 22 22:39:09 IDT 1995 Michael Veksler <e1678223@tochnapc2.technion.ac.il>
4108
4109         * [ipc/*]
4110         New directory. This directory contains the new inter-wine
4111         communications support. It enables DDE protocols between two wine
4112         instances.  Currently it is limited to DDE, but can be enhanced to
4113         support OLE between 2 different wine instances.  This is very
4114         important for libwine.a DDE/OLE support.
4115
4116         * [tools/ipcl]
4117         A script to delete garbage IPC handles (shared memory, semaphores
4118         and message queues).  The current inter-wine communication is not
4119         perfect, and sometimes leaves garbage behind.
4120
4121         * [if1632/relay.c] [include/atom.h] [include/global.h]
4122         [loader/selector.c] [loader/task.c] [loader/module.c]
4123         [loader/signal.c] [memory/global.c] [misc/atom.c]
4124         [windows/class.c] [windows/message.c] [windows/win.c]
4125         [Imakefile]
4126         Hooks for inter-wine DDE support, current Global.*Atom functions
4127         renamed to Local.*Atom since Global.*Atom are used for Inter-Wine
4128         DDE communication. (The first call to these functions sets up the
4129         IPC structures - which otherwise cause unneeded overhead.
4130
4131 Mon Jul 17 19:55:21 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
4132
4133         * [controls/menu.c]
4134         Don't crash if a NULL string is passed to menu functions.
4135
4136         * [memory/selector.c]
4137         We now use a bit in ldt_flags_copy to indicate free LDT entries.
4138         Fixed a bug in SELECTOR_ReallocBlock that could cause it to
4139         overwrite valid LDT entries when growing a block.
4140
4141         * [miscemu/instr.c]
4142         Emulate int xx instruction by storing the interrupt vector in
4143         CS:IP and returning directly. This allows a program to install an
4144         interrupt vector.
4145
4146         * [windows/win.c]
4147         Added function WIN_GetTopParent to get the top-level parent of a
4148         window.
4149
4150 Sun Jul  16 18:17:17 1995  Gregory Trubetskoy <grisha@mira.com>
4151
4152         * [loader/resource.c]
4153         Added LoadIconHandler. It doesn't do anything yet, but now you
4154         can use borland help files with winhelp.exe.
4155
4156 Sun Jul 16 11:58:45 1995 Anand Kumria <akumria@ozemail.com.au>
4157
4158         * [misc/main.c]
4159         Fixed to return 386 Enhanced mode correctly. Also return the same
4160         type of CPU, for both Enhanced and Standard mode, namely a 386.
4161
4162 Sun Jul 16 00:02:04 1995    Martin von Loewis <loewis@informatik.hu-berlin.de>
4163
4164         * [Configure] [include/options.h] [include/wineopts.h]
4165           [misc/main.c][misc/spy.c]
4166           Removed support of spy file. Redirected spy messages to stddeb.
4167           Removed -spy option. Added -debugmsg +spy option.
4168
4169         * [debugger/dbg.y][debugger/debug.l]
4170         Enabled segmented addresses (seg:offs) for break and x commands.
4171
4172         * [if1632/gdi.spec] [objects/region.c] [windows/graphics.c]
4173           [include/region.h]
4174         FrameRgn, REGION_FrameRgn: New functions
4175
4176         * [if1632/kernel.spec]
4177         IsWinOldApTask: Return false
4178
4179         * [if1632/mouse.spec]
4180         CplApplet: Removed
4181
4182         * [if1632/user.spec] [windows/win.c]
4183         ShowOwnedPopups: New function
4184
4185         * [if1632/winsock.spec] [misc/winsocket.c]
4186         inet_addr, select: New prototypes in relay code
4187         Fixed memory layout for netdb functions (getXbyY).
4188         WINSOCK_ioctlsocket: Translated FIONREAD, FIONBIO, and FIOASYNC
4189
4190         * [objects/clipping.c]
4191         RectVisible: Fixed call to LPToDP
4192
4193         * [rc/winerc.c]
4194         main: Removed extra argument to getopt for Linux.
4195
4196 Tue Jul 11 00:14:41 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4197
4198         * [controls/listbox.c]
4199         Yet another fix for ListBoxDirectory().
4200         
4201         * [loader/module.c] [if1632/kernel.spec]
4202         Make GetModuleHandle() accept instance handles as parameter.
4203
4204         * [if1632/relay.c] [loader/task.c]
4205         Put a magic cookie at the bottom of the 32 bit stack, and check on
4206         each return from a 32 bit function whether it's still there. Complain
4207         if it's not.
4208
4209         * [if1632/user.spec]
4210         Wrong entry for CloseDriver().
4211
4212         * [misc/dos_fs.c] [loader/task.c] [include/dos_fs.h] [misc/file.c]
4213         [miscemu/int21.c]
4214         Large parts of dos_fs.c simplified. Changed it to use one
4215         current drive/directory per task, which is set to the module path on
4216         task creation.
4217         Prevent CorelPaint from closing stdin.
4218         open() with O_CREAT set must be passed three parameters.
4219         DOS FindFirst()/FindNext() could crash when FA_LABEL was set. Fixed,
4220         it's in DOS_readdir() now.
4221
4222         * [misc/profile.c]
4223         Some badly written software (Lotus Freelance Graphics) passes a bogus
4224         size parameter that caused Wine to write off the end of a segment.
4225         Fixed. (It's probably too paranoid now.)
4226         
4227         * [multimedia/mmsystem.c] [multimedia/time.c] [multimedia/joystick.c]
4228         [multimedia/Imakefile] [if1632/winprocs.spec]
4229         16 bit entry point for MMSysTimeCallback.
4230         Split off time.c and joystick.c from mmsystem.c.
4231         
4232         * [objects/dib.c]
4233         GetDIBits(): call XGetImage() via CallTo32_LargeStack.
4234
4235         * [windows/cursor.c]
4236         DestroyCursor(): do nothing for builtin cursors.
4237         
4238         * [windows/mdi.c]
4239         Half of WM_MDISETMENU implemented.
4240         
4241         * [windows/win.c]
4242         EnumWindows() and EnumTaskWindows() never enumerated any windows.
4243         Fixed.
4244
4245         * [windows/*.c]
4246         Fixed GetParent() to return correct values for owned windows.
4247
4248         * [windows/message.c]
4249         Don't try to activate disabled top-level windows.
4250
4251         * [windows/nonclient.c]
4252         Work around a bug in gcc-2.7.0.
4253         
4254         * [tools/build.c] [include/stackframe.h] [memory/global.c] 
4255         [loader/task.c] [memory/selector.c]
4256         Some Visual Basic programs (and possibly others, too) expect ES to be 
4257         preserved by a call to an API function, so we have to save it.
4258         In GlobalFree() and FreeSelector(), we must clear CURRENT_STACK16->es 
4259         to prevent segfaults if ES contained the selector to be freed.
4260
4261 Sun Jul  9 20:21:20 1995  Jon Tombs  <jon@gtex02.us.es>
4262
4263         * [*/*]
4264         Added missing prototypes to header files and relevant includes
4265         to reduce compile time warnings.
4266
4267 Sun Jul  9 18:32:56 1995  Michael Patra  <micky@marie.physik.tu-berlin.de>
4268
4269         * [configure.in] [include/config.h] [*/Makefile.in]
4270         New configuration scheme based on autoconf.
4271
4272 Sat Jul  8 14:12:45 1995  Morten Welinder  <terra+@cs.cmu.edu>
4273
4274         * [miscemu/ioports.c]
4275         Revamp to have only one in- and one out- variant, both really
4276         implemented.
4277
4278         * [miscemu/instr.c]
4279         INSTR_EmulateInstruction: Use new ioport interface.  Implement
4280         string io.  Correct instruction pointer for 32-bit code.
4281
4282         * [include/miscemu.h]
4283         Update port function prototypes.
4284
4285         * [include/registers.h]
4286         Defined FS and GS.
4287
4288 Sat Jul  8 13:38:54 1995  Hans de Graaff  <graaff@twi72.twi.tudelft.nl>
4289
4290         * [misc/dos_fs.c]
4291         ChopOffSlash(): A path consisting off a single slash is left
4292         intact, and multiple slashes are all removed.
4293
4294 ----------------------------------------------------------------------
4295 Wed Jul  5 19:06:35 1995  Alexandre Julliard  <julliard@sunsite.unc.edu>
4296
4297         * [controls/scroll.c]
4298         Fixed drawing bug that caused part of a non-client scroll bar
4299         to be painted even when the scroll-bar was hidden.
4300
4301         * [debugger/break.c] [debugger/dbg.y]
4302         Rewrote breakpoint handling to work in 16-bit mode.
4303         Implemented single-stepping ('step' and 'next' instructions).
4304
4305         * [debugger/debug.l]
4306         Format specifier is now a separate token.
4307         Entering an empty line at the debugger prompt causes the previous
4308         command to be repeated, like under gdb.
4309         
4310         * [debugger/debug.l] [debugger/registers.c]
4311         Differentiate 16-bit and 32-bit registers without taking current
4312         mode into account ($eax is always 32-bit, $ax always 16-bit).
4313
4314         * [debugger/stack.c]
4315         Fixed stack information routines to differentiate between 16-bit
4316         and 32-bit stacks.
4317
4318         * [loader/task.c]
4319         Option -debug now sets a breakpoint at the first instruction of
4320         every loaded task.
4321
4322         * [miscemu/instr.c]
4323         Added handling of lock, repe and repne prefixes.
4324
4325         * [objects/dib.c]
4326         Changed StretchDIBits() to do the correct thing, even if it's still
4327         not really optimal.
4328
4329         * [windows/graphics.c]
4330         Fixes in RoundRect(), thanks to Babak Masalehdan.
4331
4332         * [windows/message.c]
4333         Tried to fix mouse event handling with respect to disabled
4334         windows.
4335
4336         * [windows/painting.c]
4337         Clear WIN_NEEDS_NCPAINT flag before sending WM_NCPAINT to avoid
4338         infinite loops.
4339
4340         * [windows/win.c]
4341         Fixed IsWindowVisible() to return FALSE when one of the parent
4342         windows is hidden.
4343
4344 Sat Jul  1 22:08:21 1995   Martin von Loewis <loewis@informatik.hu-berlin.de>
4345
4346         * [if1632/compobj.spec][misc/compobj.c]
4347         CoGetMalloc: New function
4348         Added relay entries for COMPOBJ ordinals above 100
4349         CoInitialize: Changed parameter to DWORD
4350
4351         * [if1632/ole2.spec]
4352         Exported implementation of OleBuildVersion
4353
4354         * [if1632/ole2disp.spec][misc/ole2disp.c][misc/Imakefile]
4355         ole2disp.c: New file
4356         SysAllocString, SysReallocString, SysAllocStringLen,
4357         SysReAllocStringLen, SysFreeString, SysStringLen: new functions
4358
4359         * [if1632/ole2nls.spec][include/winnls.h][misc/ole2nls.c]
4360         CompareStringA: New function
4361
4362 Thu Jun 29 19:42:02 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
4363         * [objects/font.c] [if1632/gdi.spec]
4364         New stubs for CreateScalableFontResource, GetGlyphOutline.
4365
4366 Thu Jun 29 13:47:08 GMT 1995  Göran Thyni  (goran@norrsken.bildbasen.se)
4367
4368         * [misc/commdlg.c]
4369         Extensive changes and bug fixes to FileDialog handling,
4370         behaves more like native Windows.
4371
4372 Wed Jun 28 13:04:44 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4373
4374         * [controls/listbox.c] [controls/combo.c]
4375         Some minor optimizations.
4376         
4377         * [memory/local.c]
4378         LOCAL_FindFreeBlock(): Never use the last one.
4379         
4380         * [memory/global.c]
4381         GlobalReAlloc(): GMEM_MODIFY must not be ignored when size==0.
4382         
4383         * [misc/file.c]
4384         read() returns an error when length==0. This is not what Windows
4385         programs expect, so pay attention to this in _lread(). Changed this
4386         in _lwrite(), _hread(), _hwrite(), too.
4387
4388         * [loader/resource.c]
4389         LoadIcon(): Ignore bih->biSizeImage, some icons have wrong values in
4390         there.
4391         
4392         * [if1632/shell.spec] [misc/shell.c]
4393         Wrong spec file entries caused havoc: HKEY has 32 bit, not 16.
4394         Accept some more combinations of parameters in the Reg..() functions.
4395         
4396         * [if1632/toolhelp.spec]
4397         Make InterruptRegister() and InterruptUnregister() return false.
4398
4399         * [windows/hook.c]
4400         CallNextHookEx() used to crash when called with a null hhook. Fixed.
4401
4402 Wed Jun 28 10:14:34 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
4403
4404         * [include/neexe.h][loader/ne_image.c]
4405         NE_LoadSegment: Detect iterated segments
4406
4407         * [misc/ole2nls.c]
4408         LOCALE_SLONGDATE: fixed typo
4409
4410         * [miscemu/int5c.c]
4411         Reordered include files to avoid conflicts with Linux libc.5.1
4412
4413         * [rc/winerc.c]
4414         Added -b option to process binary resource files into C arrays
4415
4416         * [include/callback.h]
4417         CallWndProc: Added dummy ds parameter for libwine
4418
4419         * [include/gdi.h][include/user.h]
4420         USER_HEAP_ALLOC, GDI_HEAP_ALLOC: dropped flags parameter
4421
4422         * [include/ldt.h][include/stackframe.h]
4423         defined segment conversion macros for libwine
4424
4425         * [misc/atom.c]
4426         Defined USER_HeapSel for libwine
4427
4428         * [misc/main.c]
4429         Disable -dll option for libwine
4430
4431         * [misc/user.c]
4432         removed GetFreeSystemResources, SystemHeapInfo from libwine for now
4433
4434         * [toolkit/heap.c]
4435         fixed LocalLock prototype
4436
4437         * [toolkit/sup.c]
4438         sync'ed load_mz_header, load_ne_header with structures
4439
4440         * [toolkit/winmain.c]
4441         Disabled resource DLLs for libwine for now
4442
4443 Mon Jun 26 19:30:24 1995  Hans de Graaff  (graaff@twi72.twi.tudelft.nl)
4444
4445         * [misc/main.c]
4446         Fixed -enhanced option to report a 386 CPU instead of a 286.
4447
4448 Fri Jun 23 23:18:25 1995  Marcus Meissner  <msmeissn@faui01.informatik.uni-erlangen.de>
4449
4450         * [misc/dos_fs.c]
4451         Remove maximum open dosdirent limit (fixing the winfile.exe
4452         problem) by using telldir()/seekdir().
4453         
4454 Fri Jun 23 13:42:25 1995  Hans de Graaff  (graaff@twi72.twi.tudelft.nl)
4455
4456         * [misc/profile.c]
4457         Fixed problem parsing empty lines within sections in .ini files.
4458
4459 ----------------------------------------------------------------------
4460 Mon Jun 19 20:29:50 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
4461
4462         * [debugger/*.c]
4463         Modified debugger to use segmented pointers everywhere.
4464
4465         * [if1632/shell.spec] [if1632/sound.spec] [if1632/user.spec]
4466         Declared all functions that return only 16-bit as 'pascal16'.
4467
4468         * [include/ldt.h] [memory/ldt.c]
4469         Export LDT_EntryToBytes (new) and LDT_BytesToEntry for DPMI.
4470         Maintain a copy of the selector flags, removing the need to make a
4471         system call to retrieve an LDT entry.
4472
4473         * [loader/module.c]
4474         Fixed bug with module file handle cache.
4475
4476         * [loader/ne_resource.c]
4477         Fixed file name bug in NE_AccessResource().
4478
4479         * [loader/resource.c]
4480         Fixed bug in LoadIcon() that caused wrong colors to be used for
4481         the icon mask.
4482
4483         * [loader/signal.c]
4484         Moved instruction emulation to miscemu/instr.c.
4485
4486         * [misc/dos_fs.c] [miscemu/int21.c]
4487         Lots of small fixes, thanks to Morten Welinder.
4488
4489         * [miscemu/dpmi.c]
4490         More complete DPMI emulation.
4491
4492         * [miscemu/instr.c]
4493         Added support for prefixes in instructions to emulate.
4494
4495         * [miscemu/int2f.c]
4496         Use register macros instead of destroying the high part of 32-bit
4497         registers.
4498
4499         * [objects/dc.c]
4500         Fixed bug in GetDCState() that failed to clear the new DC.
4501
4502         * [rc/sysres.rc]
4503         Removed dialogs 11 and 12 that were never used.
4504
4505         * [tools/build.c]
4506         'pascal16' generated functions did not save %dx.
4507         Removed use of %fs to access the stack.
4508         %ds is no longer initialized before calling a 16-bit routine.
4509
4510         * [windows/defwnd.c]
4511         Accept a NULL pointer as window title.
4512
4513         * [windows/mdi.c]
4514         MDICascade: skip iconic windows.
4515         Implemented CalcChildScroll().
4516         
4517         * [windows/utility.c]
4518         Fixed MulDiv() for illegal values.
4519
4520         * [windows/win.c]
4521         Fixed X error in CreateWindowEx() when WM_NCCALCSIZE returned
4522         a zero width or height.
4523
4524 Sun Jun 18 22:22:30 MET DST 1995  Fons Botman  (botman@inter.nl.net)
4525
4526         * [controls/edit.c]
4527         Fixed "uninitalized" message which -Wall couldnt see to be ok
4528         in EDIT_WriteText.
4529
4530         * [include/debug.h]
4531         Added define for extra checks in API definitions during debugging.
4532
4533         * [loader/ne_image.c]
4534         Added newline in NE_FixupPrologs to avoid long lines.
4535
4536         * [misc/dos_fs.c]
4537         Added extra safety check in DOS_ValidDrive.
4538
4539         * [misc/exec.c]
4540         Fixed definition of ExitWindows.
4541         
4542 Sun Jun 18 21:16:08 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4543
4544         * [controls/edit.c]
4545         Some fixes, mostly for memory management, but also for text selection
4546         and tab postitions. General cleanup. Notepad.exe now works.
4547
4548         * [controls/combo.c]
4549         Fix: the hwnd field of the DRAWITEMSTRUCT should always be that of
4550         the combo box, not the ComboLBox that belongs to it.
4551
4552         * [controls/listbox.c]
4553         Handle itemID field correctly throughout.
4554
4555         * [memory/local.c]
4556         Implemented flag LMEM_ZEROINIT.
4557         LocalReAlloc() could trash the heap. Fixed.
4558
4559         * [objects/font.c]
4560         FONT_MatchFont(): don't get confused by negative widths.
4561         Fixed a segfault in EnumFonts().
4562
4563         * [objects/text.c]
4564         DrawText(): DT_CALCRECT implies DT_NOCLIP.
4565
4566         * [objects/dcvalues.c]
4567         MAKELONG was used with bad parameters in DC_GET_X_Y.
4568
4569         * [windows/dialog.c]
4570         Don't show the dialog if WS_VISIBLE isn't set in the template.
4571
4572         * [windows/utility.c]
4573         UTILITY_convertArgs(): Never pass an expression containing ++ into a
4574         macro...
4575
4576         * [windows/win.c]
4577         SetParent() should unlink the window before changing the parent.
4578
4579         * [windows/message.c]
4580         Don't call timer functions via CallWindowProc(), since it checks
4581         whether hwnd==0 and does not call the function in that case.
4582
4583         * [miscemu/instr.c]
4584         Ignore interrupt 0x3D, for VBRUN300.DLL.
4585
4586         * [misc/commdlg.c]
4587         Don't rely on the itemData field of the DRAWITEMSTRUCT to contain a
4588         pointer to the item text.
4589
4590         * [if1632/relay.c]
4591         Disable OLE and DDEML DLLs by default, since they contain nothing but
4592         stubs anyway. SHELL, COMMDLG and WIN87EM are left enabled, although
4593         some programs may work better without them.
4594         
4595         * [multimedia/*.c] [include/multimedia.h] [include/driver.h]
4596         Begun cleaning things up a little. Replaced printfs with dprintf_
4597         macros, made functions static where possible, and some other minor
4598         changes.
4599
4600 Sun Jun 11 23:19:10 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
4601
4602         * [debugger/dbg.y][debugger/dbg.l]
4603         Removed special handling for FILE_IDENTIFER, because it caused
4604         problems with x/<format> statements.
4605
4606         * [debugger/info.c]
4607         Use SC_ESP instead of SC_EIP for stack dump.
4608
4609         * [misc/compobj.c][if1632/compobj.spec]
4610         CoBuildVersion, CoInitialize, CoUninitialize: new functions
4611
4612         * [misc/ole2.c][if1632/ole2.spec][misc/Imakefile][include/ole2.h]
4613         New files ole2.c, ole2.h
4614         OleBuildVersion, OleInitialize, OleUninitialize: new functions
4615
4616         * [if1632/ole2disp.spec]
4617         Added missing ordinals above 109
4618
4619         * [misc/ole2nls.c][if1632/ole2nls.spec][include/winnls.h]
4620         New file winnls.h
4621         GetLocaleInfoA: new function
4622
4623         * [if1632/shell.spec]
4624         Added FindEnvironmentString as stub
4625
4626         * [misc/olecli.c][if1632/olecli.spec]
4627         OleIsDcMeta: New function
4628
4629         * [objects/font][misc/gdi.spec]
4630         GetKerningPairs: new function
4631
4632         * [misc/shell.c]
4633         ShellExecute: Implemented support for starting programs
4634
4635         * [if1632/user.spec]
4636         Inserted missing relay to GetClipCursor
4637
4638 Sun Jun 11 20:34:47 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4639         
4640         * [controls/edit.c]
4641         Fix a problem with the local heap.
4642
4643         * [include/wintypes.h]
4644         Fixed wrong declarations of CATCHBUF and LPCATCHBUF.
4645         
4646         * [include/mdi.h] [windows/mdi.c]
4647         This code still assumed segmented address==linear address. Fixed.
4648
4649         * [include/msdos.h] [misc/dos_fs.c]
4650         The filemask field of the dosdirent structure could be overrun. Fixed.
4651         If you had a file called foobar and a file called foo, trying to 
4652         FindFile(foo) could accidentally find file foobar instead. Fixed.
4653         
4654         * [misc/file.c]
4655         OpenFile(): Always return the full pathname in ofs->szPathName. This 
4656         also fixes GetModuleFilename().
4657         Prevent _lclose() from closing stderr or stdout.
4658
4659         * [misc/profile.c]
4660         Search for .ini files in the path of the current module as well.
4661         (Needed by Lotus Organizer.)
4662
4663         * [loader/task.c] [loader/ne_image.c] [loader/module.c]
4664         [memory/local.c]
4665         Local heaps are now initialized by InitTask() for executables. DLLs
4666         have to call LocalInit() themselves, LocalInit() has to put the
4667         heap at the end of the segment when called with start==0. We no longer
4668         allocate the DGROUP with 64k on startup, but grow the local heap
4669         in LOCAL_GetBlock() when necessary.
4670
4671         * [loader/module.c]
4672         LoadLibrary() should call LoadModule() in all cases, even if the
4673         DLL is already loaded, to ensure that the reference count is correct.
4674
4675         * [loader/ne_image.c]
4676         Some changes to function prolog fixup. Does anyone know exactly how
4677         this is supposed to work? I am only guessing here.
4678         In NE_InitializeDLLs(), initialize the DLLs a module refers to before
4679         the module itself.
4680         
4681         * [loader/task.c]
4682         Initialize instance data at the beginning of the DGROUP in InitTask().
4683
4684         * [memory/local.c]
4685         Some fixes for moveable blocks.
4686
4687         * [memory/selector.c]
4688         All the IsBad*Pointer() functions returned exactly the wrong boolean
4689         value in all cases!
4690         
4691         * [objects/bitblt.c]
4692         Fixed another null pointer dereference in debugging output.
4693         
4694         * [objects/font.c]
4695         Some more recovery possibilities for FONT_MatchFont() if a specified
4696         font does not exist.
4697         
4698         * [windows/win.c]
4699         The dialog code may call CreateWindowEx with an integer in windowName.
4700         This happens for static icon controls that expect a resource ID as
4701         the window name. CreateWindowEx() used to crash. Fixed.
4702         
4703         * [windows/class.c] [windows/win.c]
4704         Window classes are owned by modules, not instances. Changed
4705         RegisterClass(), UnregisterClass(), GetClassInfo() and CreateWindowEx()
4706         accordingly.
4707
4708 Sat Jun 10 16:10:53 1995  Olaf Flebbe <o.flebbe@science-computing.uni-tuebingen.de>
4709
4710         * [miscemu/int21.c]
4711           clock.exe was displaying incorrect year.
4712
4713 Fri Jun 9 20:36:56 1995  Victor Schneider <tailor@crl.com>
4714
4715         * [include/cursor.h] [windows/cursor.c]
4716         Implemented CreateCursorIconIndirect().
4717
4718 ----------------------------------------------------------------------
4719 Tue Jun  6 12:11:41 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
4720
4721         * [controls/menu.c]
4722         Fixed bug with drawing multi-column menus with vertical separator.
4723
4724         * [debugger/debug.l]
4725         Fixed NULL-pointer reference after readline().
4726
4727         * [if1632/winprocs.spec] [miscemu/int21.c] [miscemu/interrupts.c]
4728         Added interrupt vector emulation. Allows to retrieve an interrupt
4729         vector and jump to it without crashing.
4730
4731         * [loader/ldt.c]
4732         Moved ldt.c to memory directory.
4733
4734         * [loader/task.c]
4735         Implemented LockCurrentTask() and GetInstanceData().
4736
4737         * [objects/bitblt.c]
4738         Fixed a bug that caused StretchBlt() to use wrong colors when
4739         stretching a monochrome bitmap to a color display.
4740
4741         * [objects/bitmap.c]
4742         Fixed a segmented pointer bug in CreateBitmapIndirect().
4743
4744         * [tools/build.c]
4745         Added possibility to have arguments for register functions; used
4746         by interrupt vectors to remove the flags from the stack.
4747         Generate a new function CallTo32_LargeStack(), that allows calling
4748         a 32-bit function using the original 32-bit stack, for functions
4749         that need more that 64k of stack.
4750
4751 Tue May 30 10:29:56 1995  Martin von Loewis  <martin@informatik.hu-berlin.de>
4752
4753         * [if1632/shell.spec] [misc/shell.c]
4754         DoEnvironmentSubst: fixed prototype
4755
4756         * [if1632/gdi.spec] [objects/palette.c]
4757         SetSystemPaletteUse: new function
4758
4759         * [if1632/kernel.spec] [loader/resource.c]
4760         DirectResAlloc: new function
4761
4762         * [if1632/user.spec] [windows/keyboard.c]
4763         SetKeyboardState: new function
4764
4765 Mon May 29 12:58:28 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4766         
4767         * [tools/build.c]
4768         Prevent interrupts from destroying the args for a 32 bit function
4769         by loading the correct value into %esp directly after %ss.
4770
4771         * [loader/ne_image.c] [loader/module.c]
4772         The new instance must be created earlier in LoadModule(), so that
4773         fixups referencing it will be handled correctly.
4774         Initialize the local heap for a DGROUP in NE_LoadSegment().
4775         
4776         * [objects/dib.c]
4777         Like RLE8 bitmaps, RLE4 bitmaps don't always end with a proper code.
4778         This used to crash Wine. Fixed.
4779
4780         * [objects/text.c]
4781         Fix possible null pointer dereference in debugging output.
4782         
4783         * [misc/commdlg.c]
4784         Handle user input in the edit control better. Some bugs fixed.
4785         
4786         * [memory/local.c]
4787         Started implementing moveable blocks. This is unfinished (!), but
4788         at least it does not seem to break things.
4789
4790 Wed May 24 13:26:36 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4791         
4792         * [loader/module.c]
4793         LoadModule(): DLLs occasionally have a data segment, and they work
4794         much better if it is loaded :-)
4795         LoadLibrary(): pass HMODULE instead of HINSTANCE to NE_InitializeDLLs.
4796         FindModule(): also strip off the last backslash of the pathnames
4797         (Winhelp tried to load C:\WINDOWS\SYSTEM\COMMDLG.DLL).
4798         GetModuleHandle(): just call MODULE_FindModule, it does the same job,
4799         only better.
4800         
4801         * [loader/ne_image.c]
4802         LocalInit() the heap of a DLL in NE_InitDLL. (This is probably
4803         not really correct, it seems that all programs and DLLs try to do
4804         this themselves. But they pass weird parameters.)
4805         NE_InitializeDLLs should also call NE_InitDLL for the passed hModule.
4806         
4807         * [loader/task.c] [misc/user.c]
4808         Finish global initializations in InitTask instead of InitApp, or
4809         all the DLLs will be initialized in InitTask without any available
4810         window classes!
4811
4812 ----------------------------------------------------------------------
4813 Sun May 21 12:30:30 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
4814
4815         * [debugger/hash.c] [debugger/info.c]
4816         Added support for symbolic segmented addresses. Add symbols for all
4817         built-in API entry points.
4818
4819         * [if1632/relay.c] [include/dlls.h]
4820         Removed dll_table structure, as we now use the built-in module
4821         structures.
4822
4823         * [if1632/relay.c] [loader/main.c]
4824         Removed winestat option, as it was no longer very meaningful.
4825
4826         * [include/stackframe.h]
4827         New macro MAKE_SEGPTR that creates a segmented pointer to a local
4828         variable on the 32-bit stack.
4829
4830         * [loader/module.c]
4831         Added support for multiple instances of an application.
4832         Implemented LoadModule() and FreeModule().
4833
4834         * [loader/ne_image.c] [loader/task.c]
4835         Moved initialisation of built-in DLLs to InitTask().
4836
4837         * [memory/global.c]
4838         Implemented discardable blocks.
4839
4840         * [misc/file.c]
4841         Search path of current executable in OpenFile().
4842         Fixed bug with searching in Windows path.
4843
4844         * [misc/lstr.c]
4845         Hard-coded translation tables for Ansi<->Oem.
4846
4847         * [misc/user.c]
4848         Moved some global initializations to InitApp(), because they need
4849         a task context to be performed.
4850
4851         * [objects/dc.c]
4852         Handle R2_BLACK and R2_WHITE specially so that they work correctly
4853         with palette displays.
4854
4855         * [tools/build.c]
4856         Suppressed generation of the C file for DLL specs, because it's no
4857         longer needed. Output all the assembly code directly to stdout.
4858         Some changes to integrate Win32 support from Martin von Loewis. 
4859
4860         * [windows/msgbox.c]
4861         Moved message box code from misc/ to windows/.
4862
4863 Mon May 15 23:40:04 1995  Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
4864
4865         * [misc/audio.c] [misc/mcicda.c] [misc/mcianim.c] [misc/midi.c]
4866           [misc/mmaux.c] [misc/mmsystem.c]
4867         Modify code & use pointers conversion macros.
4868         Make cdaudio & wave devices work again (only using some applets).
4869
4870         * [misc/profile.c]
4871         Change getc() to fgetc() where needed.
4872
4873 Mon May 15 22:10:56 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
4874
4875         * [if1632/Imakefile]
4876         added entries for the new files gdi32.spec, kernel32.spec,
4877         user32.spec, shell32.spec and winprocs32.spec.
4878
4879         * [if1632/commdlg.spec][if1632/kernel.spec][if1632/shell.spec]
4880           [if1632/storage.spec][if1632/system.spec][if1632/user.spec]
4881         ChooseFont, RESERVED5, InternalExtractIcon: Marked as stubs
4882         ExtractAssociatedIcon, DoEnvironmentSubst, DumpIcon:
4883                 stub implementations provided 
4884         marked storage.dll,storege.sys functions as stubs
4885
4886         * [include/pe_image.h]
4887         Added structures WIN32_builtin and  WIN32_function
4888
4889         * [include/peexe.h]
4890         PE_Import_Directory: renamed reserved fields to 
4891                 TimeDate, Forwarder, Thunk_List
4892
4893         * [include/winerror.h]
4894         New file.
4895
4896         * [loader/main.c]
4897         called RELAY32_Init
4898
4899         * [loader/pe_image.c]
4900         xmmap: map BSS anonymous
4901         dump_imports: renamed to fixup_imports, do the fixup of imported
4902                       symbols
4903         PE_LoadImage: pass raw data size to xmmap
4904
4905         * [loader/resource.c]
4906         DumpIcon: new function
4907
4908         * [misc/kernel32.c]
4909         New file.
4910
4911         * [misc/main.c]
4912         make stdout and stderr unbuffered
4913
4914         * [misc/shell.c]
4915         DoEnvironmentSubst: new function
4916
4917         * [objects/font.c]
4918         FONT_MatchFont: try oblique if there is no italic
4919
4920         * [rc/Imakefile][rc/parser.l]
4921         yywrap: new function
4922         Don't link with libfl.a on Linux
4923
4924         * [tools/build.c]
4925         Added keywords stdcall, subsystem, base
4926         GenerateForWin32: new function
4927         BuildSpecFiles: call GenerateForWin32 if subsystem is win32
4928
4929 Mon May 15 10:38:14 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4930         
4931         * [controls/listbox.c] [controls/combo.c] [windows/defwnd.c]
4932         Minor fixes.
4933         
4934         * [misc/message.c] [misc/main.c] [rc/sysres*.rc] [include/texts.h]
4935         Rewrote message box handling.
4936         
4937         * [windows/dialog.c]
4938         Dialogs should be invisible until after WM_INITDIALOG is seent.
4939         Don't switch to invisible dialog items on a TAB keypress.
4940         
4941         * [windows/mdi.c]
4942         Send WM_NCPAINT message in MDIRestoreChild().
4943         
4944         * [windows/painting.c]
4945         Fixed typo (&& -> &).
4946         
4947         * [windows/message.c] [if1632/user.spec]
4948         Implemented PostAppMessage().
4949         
4950         * [windows/event.c]
4951         SetCapture(0) should act like ReleaseCapture().
4952
4953 Tue May  9 11:55:52 1995     Eddie C. Dost             (ecd@dressler.de)
4954
4955         * [Imakefile]
4956         Changed CDEBUGFLAGS for systems running __ELF__ (temporarily)
4957         Added ASFLAGS to exported variables.
4958
4959         * [debugger/readline/Imakefile]
4960         Moved defines for libreadline from DEFINES to EXTRA_DEFINES
4961
4962         * [memory/local.c] [miscemu/int21.c]
4963         Added some more debugging outputs.
4964
4965 Mon May  8 00:55:27 MET DST 1995          Dag Asheim (dash@ifi.uio.no)
4966
4967         * [misc/message.c]
4968         Fixed a "FIXME" concerning norwegian translation.
4969
4970 Sun May  7 23:25:23 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
4971         
4972         * [*/*]
4973         Removed warnings in a couple of files and deleted some obsolete code.
4974
4975         * [controls/listbox.c]
4976         Cleanup, speed improvements & lots of bug fixes.
4977
4978         * [controls/combo.c]
4979         Mostly rewritten. This is still very buggy, but not quite as bad as 
4980         before.
4981
4982         * [include/commdlg.h] [misc/commdlg.c]
4983         Removed the need for sysres.dll. Small bug fixes.
4984         
4985         * [objects/oembitmap.c] [include/bitmaps/<many>] [include/windows.h]
4986           [loader/library.c] [loader/main.c] [rc/sysres*.rc]
4987         Removed sysres.dll and replaced the remaining bitmaps/icons with
4988         XPM equivalents.
4989
4990         * [misc/message.c] [windows/nonclient.c] [misc/main.c]
4991           [if1632/winprocs.spec]
4992         "About Wine..." now brings up a standard ShellAbout() window with
4993         the Wine icon and the list of contributors.
4994         
4995         * [misc/shell.c]
4996         Fixed ShellAbout()/AboutDialogProc() to show the right icon.
4997
4998         * [windows/event.c]
4999         Small hack for non-alphanumeric keys: Dont't send the ascii value in
5000         the WM_KEYDOWN message, but some unused code instead. Should be done
5001         properly by sending different codes for each key. The edit control
5002         used to get a VK_DELETE message each time the user typed '.'.
5003
5004         * [windows/class.c]
5005         Removed a check for CS_GLOBALCLASS in CLASS_FindClassByName().
5006         This used to be no problem, but breaks Resource Workshop in 950403.
5007         
5008         * [objects/dib.c]
5009         New diagnostic for a bug I've been encountering. If it shows up,
5010         please report it.
5011
5012 Sun May  7 23:11:18 EDT 1995  William Magro (wmagro@tc.cornell.edu)
5013
5014         * [objects/color.c]
5015         Handle situation when 'dc' exists, but palette mapping
5016         does not.  (Fixes kidpix2 demo.)
5017
5018 Sun May  7 03:32:00 1995  Charles M. Hannum  (mycroft@mit.edu)
5019
5020         * [loader/ldt.c]
5021         LDT_Print: Only show the number of entries that the kernel
5022         returned. Make this work for NetBSD.
5023
5024 Fri May  5 02:53:26 1995  Charles M. Hannum  (mycroft@mit.edu)
5025
5026         * [debugger/dbg.y] [include/wine.h] [loader/signal.c]
5027         Modify cs and ds selector values for NetBSD-current.
5028
5029         * [debugger/debug.l]
5030         $sp, $esp: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
5031
5032         * [debugger/regpos.h]
5033         Modify sigcontext format for NetBSD-current.
5034         SC_ESP: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
5035
5036         * [include/ldt.h]
5037         SELECTOR_TO_ENTRY: Explicitly clear the top half of the selector
5038         value, since only 16 bits of it may have been saved.
5039
5040         * [misc/winsocket.c]
5041         Set structure packing with `#pragma pack' to accomodate
5042         other/older compilers.
5043
5044 Tue May  2 18:15:01 1995 Paal Beyer (beyer@idt.unit.no)
5045         
5046         * [misc/commdlg.c]
5047         Fixed path-names so when changing directory the listboxes
5048         changes too.
5049         
5050         * [debugger/dbg.y debugger/debug.l wine.ini]
5051         Added SymbolTableFile to wine.ini so symbols can be read
5052         without standing in the directory containing wine.sym.
5053         Added the possibility to specify full name of wine.sym from
5054         the debugger prompt.
5055
5056 ----------------------------------------------------------------------
5057 Sat Apr 29 20:42:01 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
5058
5059         * [controls/static.c]
5060         Fixed painting of SS_*FRAME controls.
5061
5062         * [if1632/callback.c]
5063         Pass the window instance as DS to the 16-bit window procedure.
5064         Rewrote Catch() and Throw() to make them work with multiple tasks.
5065
5066         * [loader/main.c]
5067         New function MAIN_Init() to perform initializations before the
5068         first task is started instead of doing them in InitApp().
5069         Temporary hack to command-line parsing to load one program per
5070         command-line argument, to make testing task-switching easier.
5071
5072         * [loader/*.c]
5073         Reimplemented modules to use a Windows-compatible layout and to
5074         allow multiple tasks and multiple module instances. Not really
5075         finished yet.
5076
5077         * [loader/task.c] [misc/exec.c]
5078         Reimplemented tasks to use a common address space, and implemented
5079         preliminary task-switching capabilities.
5080
5081         * [memory/global.c]
5082         Fixed bug in GlobalNext().
5083
5084         * [misc/main.c]
5085         Updated the list of contributors. Let me know if I forgot someone.
5086
5087         * [miscemu/int21.c]
5088         Use one DTA per task instead of a global one.
5089
5090         * [objects/bitblt.c]
5091         Fixed bug in BitBlt() that could cause BadMatch errors.
5092
5093         * [tools/build.c]
5094         Added new function type 'stub', that makes possible to export an
5095         unimplemented function by name as well as by ordinal. This will
5096         avoid loading errors for unimplemented functions.
5097         Generate an in-memory module layout for built-in DLLs so that the
5098         same code can be used for built-in and loaded modules.
5099         Changed relay code to make it unnecessary to save the value of the
5100         BP register.
5101
5102         * [windows/message.c]
5103         Implemented multiple message queues and preliminary task-switching
5104         capabilities. Inter-task SendMessage() calls are not implemented
5105         yet and will probably cause crashes if used.
5106
5107         * [windows/property.c]
5108         Reimplemented properties and allocate them on the USER heap.
5109
5110         * [windows/win.c]
5111         Fixed bug in SetWindowWord().
5112         Reimplemented EnumWindows() and EnumTaskWindows().
5113
5114 Tue Apr 18 09:48:38 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
5115         
5116         * [misc/main.c]
5117         GetSystemParametersInfo(): Additional action SPI_GETICONTITLEFONT.
5118         
5119         * [loader/resource.c]
5120         Removed the check for NE_SEGFLAGS_EXECUTEONLY, since it broke
5121         control.exe.
5122         Fixed icon loading.
5123         
5124         * [objects/font.c] [include/windows.h]
5125         Fixed a bug in InitFontsList() and worked on the EnumFonts()
5126         functions to make them comprehensible.
5127
5128         * [controls/button.c]
5129         Fixed my previous patch to handle LBUTTONUP messages.
5130
5131 Fri Apr 14 11:41:28 1995  Cameron Heide  (heide@ee.ualberta.ca)
5132
5133         * [misc/network.c, misc/dos_fs.c]
5134         Implemented WNetGetConnection.  All that is currently
5135         supported are drives, for which the remote name is simply
5136         the redirected UNIX directory name.
5137
5138         * [miscemu/int2?.c]
5139         More drive number validity checking.
5140
5141 Wed Apr 12 11:28:37 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
5142         
5143         * [controls/listbox.c]
5144         Oops, my previous change to ListBoxDirectory broke the Borland
5145         file open dialog. Fixed.
5146
5147 Mon Apr 10 23:17:12 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
5148
5149         * [if1632/ole2nls.spec] [misc/ole2nls.c] [misc/Imakefile]
5150         New file ole2nls.c. Added stubs for GetUserDefaultLCID, 
5151         GetSystemDefaultLCID, GetUserDefaultLangID, GetSystemDefaultLangID.
5152
5153 Mon Apr 10 10:05:18 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
5154         
5155         * [memory/global.c] [memory/local.c] [include/windows.h]
5156         GlobalReAlloc(): If GMEM_MODIFY is set, don't resize the block.
5157         LocalReAlloc(): Same for LMEM_MODIFY.
5158         
5159         * [controls/listbox.c]
5160         Fixed a bug in ListBoxDirectory that prevented commdlg from working.
5161         Check for errors in some more places.
5162
5163         * [if1632/gdi.spec] [if1632/user.spec]
5164         16 bit callback functions should be passed as segptrs.
5165         
5166         * [include/dlls.h] [loader/ne_image.c] [loader/selector.c]
5167         [loader/library.c]
5168         Prevent a DLL from being initialized twice (Borlands Resource
5169         Workshop used to do this).
5170         Provide an additional flag for each w_file that indicates whether
5171         it's an EXE or a DLL, for combinations like pbrush.exe/.dll.
5172         
5173         * [controls/button.c]
5174         Handle LBUTTONUP messages even if the button no longer has the
5175         capture (for WinHelp).
5176         
5177         * [include/wintypes.h]
5178         FARPROC is now a segptr for the emulator and a function
5179         pointer for the library.
5180         
5181         * [misc/commdlg.c] [misc/commdlg.h]
5182         Cleaned the file dialogs up a little. They now work reasonably well,
5183         although there are still some problems (e.g. files are initially
5184         invisible).
5185
5186         * [windows/class.c] [if1632/user.spec] [include/windows.h]
5187         GetClassInfo() must take a segptr, as it checks whether the
5188         highword is zero.
5189         GetClassName() called the wrong atom function. No surprise it didn't
5190         find anything.
5191
5192         * [misc/lstr.c]
5193         AnsiToOem() and OemToAnsi() didn't terminate the strings. Fixed.
5194         Removed some warnings.
5195
5196         * [if1632/relay.c] [if1632/ddeml.spec] [include/dlls.h]
5197         New spec file for the 3.1 DDEML DDL. 
5198
5199         * [controls/menu.c]
5200         Small fix to ChangeMenu - mask out the obsolete flags
5201         (MF_APPEND == MF_OWNERDRAW, this led to problems). It also had
5202         problems with the MF_BYPOSITION flag.
5203
5204         * [windows/message.c]
5205         SendMessage(): call the WH_CALLWNDPROC hook function. This is rather
5206         ugly, I'm afraid. Windows probably passes a pointer to the 16 bit
5207         stack for speed reasons.
5208         
5209         * [windows/hook.c] [include/windows.h]
5210         Set/HookWindowsHook() shouldn't just call their *Ex counterparts, as
5211         they have slightly different semantics.
5212         MS Hearts now works somewhat, if you disable the new builtin DDEML.
5213         The graphics are completely messed up, though.
5214
5215 ----------------------------------------------------------------------
5216 Sun Apr  2 18:31:12 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
5217
5218         * [Configure] [if1632/Imakefile]
5219         Removed new build and short names options.
5220
5221         * [if1632/*.c] [tools/build.c]
5222         Implemented compiled call-back functions for better performance;
5223         all the relay code is now done in assembly code generated by the
5224         build program.
5225         Relay code is no longer dependent on being loaded below 64K.
5226
5227         * [loader/resource.c]
5228         Fixed memory leak in LoadString(). A fix will also be needed for
5229         other resources.
5230
5231         * [memory/global.c]
5232         Implemented global heap arenas, so we can store informations about
5233         global blocks, like lock counts or owner handle.
5234         Implemented FarGetOwner() and FarSetOwner().
5235         Implemented global heap TOOLHELP functions.
5236
5237         * [memory/selector.c]
5238         Bug fix: it was not possible to re-use a free selector.
5239
5240 Sun Apr 2 01:34:52 1995 Constantine Sapuntzakis  (csapuntz@mit.edu)
5241
5242         *  [controls/listbox.c]
5243         Major work on listbox code
5244          - Many bugs fixed (still many bugs)
5245          - More messages supported
5246          - Code simplified
5247
5248 Fri Mar 31 03:27:16 EST 1995 William Magro (wmagro@tc.cornell.edu)
5249
5250         * [controls/edit.c]
5251         Lots of bug fixes related to diappearing text, lost carets,
5252         highlighting, segmentation faults, occurance of random
5253         characters, insertion of characters over selection, misplaced
5254         caret location, display corruption, end of line behavior, etc.
5255
5256         * [controls/widgets.c]
5257         EDIT class doesn't want to use CS_PARENTDC flag.
5258
5259 Thu Mar 30 20:58:25 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
5260         
5261         * [loader/selector.c]
5262           FixupFunctionPrologs() should also handle multiple data modules.
5263           (this bug only became visible because MakeProcInstance() was fixed
5264           in 950319)
5265         
5266         * [misc/dosfs.c]
5267           Simplified DOS_SimplifyPath.
5268           Small fix to DOS_opendir to reuse an entry if an open directory
5269           is opened again, to prevent "too many open directories" messages.
5270
5271 Thu Mar 30 12:05:05 1995 Martin von Loewis  <loewis@informatik.hu-berlin.de>
5272
5273         * [if1632/compobj.spec][include/compobj.h][misc/compobj.c]
5274         CoDisconnectObject: new stub function
5275
5276         * [include/msdos.h]
5277         fix DOSVERSION
5278
5279         * [loader/ne_image.c]
5280         NE_FixupSegment: Be more generous on additive fixups
5281
5282         * [if1632/user.spec][misc/network.c]
5283         Add more WNet* stubs
5284
5285 Wed Mar 29 11:47:22 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
5286
5287         * [controls/listbox.c]
5288           DlgDirList(): send segptr instead of linear pointer 
5289           in message to static control
5290         * [controls/menu.c]
5291           Tried to implement ownerdrawn menuitems. Doesn't work.
5292         * [if1632/gdi.spec] [include/windows.h] [objects/font.c]
5293           Provide a stub for GetRasterizerCaps()
5294         * [loader/selector.c]
5295           Pass end address instead of length to LocalInit() in 
5296           CreateSelectors()
5297         * [memory/local.c]
5298           LocalInit(): If there's already a local heap in the segment, do
5299           nothing and return TRUE
5300         * [objects/linedda.c]
5301           Replaced buggy LineDDA() with a Bresenham algorithm. Should work
5302           now.
5303         * [windows/cursor.c]
5304           LoadCursor()/CreateCursor(): Cleaned up the mess. Needs some
5305           more work still.
5306
5307 Tue Mar 21 17:54:43 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
5308
5309         * [if1632/relay.c] [if1632/callback.c] [include/dlls.h]
5310           [if1632/winprocs.spec] [if1632/winprocs.c] [include/winprocs.h]
5311           [controls/widgets.c] [misc/shell.c] [misc/commdlg.c]
5312           [windows/nonclient.c] [misc/message.c]
5313           Added a new builtin DLL that provides 16 bit entry points for all
5314           the Def*Procs (DefDlgProc, ButtonProc etc.). OWL programs work
5315           again.
5316         * [misc/shell.c]
5317           RegOpenKey()/RegCreateKey() bugs fixed.
5318         * [loader/ne_image.c]
5319           Skipping the initialization of a DLL when CS == 0 was broken.
5320
5321 ----------------------------------------------------------------------
5322 Sun Mar 19 16:30:20 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
5323
5324         * [*/*]
5325         Implemented a new memory mapping scheme. There's no longer a
5326         one-to-one mapping between 16-bit and 32-bit pointers. Please see
5327         file DEVELOPERS-HINTS for technical details.
5328
5329         * [controls/scroll.c]
5330         Fixed bug when dragging mouse in horizontal scrollbars.
5331
5332         * [tools/build.c] [if1632/*.spec]
5333         Removed support for C callback functions and for re-ordering
5334         of the 32-bit arguments, as these were never used. This should
5335         allow a more efficient callback scheme to be implemented.
5336
5337         * [if1632/olecli.spec]
5338         Reduced the number of entries to make the 16-bit code fit in 64k.
5339         This limitation will soon be removed.
5340
5341         * [loader/ldt.c]
5342         Rewrote LDT manipulation functions and implemented LDT_GetEntry().
5343
5344         * [memory/global.c]
5345         Rewrote Global*() routines to use the new selector allocation
5346         mechanism.
5347
5348         * [memory/local.c]
5349         Rewrote local heap handling to use a Windows-compatible layout
5350         (not really finished yet).
5351         Implemented TOOLHELP heap-walking routines.
5352
5353         * [memory/selector.c]
5354         Implemented LDT manipulation API functions.
5355
5356 Tue Mar 14 19:50:28 EST 1995 William Magro (wmagro@tc.cornell.edu)
5357
5358         * [windows/defdlg.c]
5359         Fixed problem where dialogs closed using the System menu 
5360         ('Close' item or double click on close box) would
5361         hang Wine.
5362
5363 Sun Mar 12 14:28:13 1995  Michael Patra <micky@marie.physik.TU-Berlin.DE>
5364
5365         * [controls/listbox.c]
5366         Removed most of the statements for sending a notification message
5367         ListBoxDirectory(), DlgDirSelect(), DlgDirList(): Improved the
5368         code; Borland's standard file open dialog will work now.
5369         
5370         * [misc/main.c], [misc/file.c], [miscemu/int21.c]
5371         Added support for new command line option "-allowreadonly". If set
5372         an attempt to open a read only file in write mode will be converted 
5373         to opening it read only (many programs try to open all files in 
5374         read/write mode even if they only intend to read it - this might 
5375         cause a few under problems under an unix-like environment where most 
5376         files are read only for a "normal" user)
5377
5378         * [loader/selector.c]
5379         GetMemoryReference(): Added support for __AHIncr and __AHShift
5380
5381         * [misc/dos_fs.c]
5382         DOS_SimplifyPath(): This routine simplifies path names ( e.g., it
5383         will change "/usr///local/bin/../lib//a" to "/usr/local/lib/a" )
5384         match(): rewritten
5385         
5386         * [objects/text.c]
5387         TEXT_NextLine(): Removed a bug in the handling of LF's
5388
5389         * [miscemu/int21.c]
5390         GetFileDateTime(): Fixed. SetFileDateTime() is still broken.
5391
5392 Sat Mar 11 19:46:19 1995  Martin von Loewis  <loewis@informatik.hu-berlin.de>
5393
5394         * [controls/menu.c]
5395         ChangeMenu: defaults to MF_INSERT
5396         InsertMenu: allow insertion even if position is one after last item
5397
5398         * [if1632/Imakefile] [if1632/compobj.spec] [if1632/relay.c]
5399           [if1632/storage.spec] [include/dlls.h]
5400         Added stubs for STORAGE.DLL and COMPOBJ.DLL
5401
5402         * [if1632/user.spec] [windows/message.c]
5403         InSendMessage: new function
5404
5405         * [include/neexe.h][include/ne_image.c]
5406         NE_FixupSegment: fixed handling of additive records
5407
5408         * [loader/selector.c]
5409         GetEntryDLLName: return NULL instead of pointer to DLL.0 if not found
5410
5411         * [loader/signal.c]
5412         win_fault: Enter debugger on SIGFPE, too
5413
5414 Wed Mar  1 21:47:42 1995  Cameron Heide  (heide@ee.ualberta.ca)
5415
5416         * [miscemu/int*.c]
5417         Various minor modifications to the clock tick counter,
5418         FindFirst/FindNext funcs, and DPB handling.
5419
5420 ----------------------------------------------------------------------
5421 Thu Mar  2 17:44:32 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
5422
5423         * [loader/resource.c] [objects/oembitmap.c]
5424         Removed sysres bitmap code; you need libXpm to compile now.
5425         Implemented LoadIcon() for OEM icons.
5426
5427         * [include/bitmaps/oic_*]
5428         Added OEM icons in XPM format.
5429
5430         * [objects/dib.c]
5431         Bug fix in DrawIcon().
5432
5433         * [rc/sysresbm.rc]
5434         Removed; all bitmaps are stored in XPM format now.
5435
5436 Tue Feb 28 18:54:28 1995  Tomi Leppikangas  (tomilepp@paju.oulu.fi)
5437
5438         * [controls/edit.c]
5439         Small patch to fix edit-control when it's created with text.
5440
5441 Sun Feb 26 20:22:15 1995  Michael Veksler  (e1678223@tochnapc2.technion.ac.il)
5442
5443         * [tools/make_debug]
5444         The created macros won't have side effects anymore when used in
5445         an "if-else" structure. No more warnings from the compiler when
5446         compiled without defining DEBUG_RUNTIME.
5447  
5448 Sun Feb 26 20:20:49 1995  Michael Patra <micky@marie.physik.TU-Berlin.DE>
5449
5450         * [controls/listbox.c]
5451         ListBoxDeleteString(): Fixed
5452
5453         * [loader/selector.c]
5454         GetMemoryReference(): When special segments are referenced by
5455         pseudo-functions like __0040H, a reference to a "normal" segment
5456         will be returned preventing the program from crashing as soon
5457         as the referenced segment is actually accessed.
5458
5459 Sun Feb 26 15:55:14 MET 1995  Martin von Loewis (loewis@informatik.hu-berlin.de)
5460
5461         * [Configure]
5462         Ask for OLE stubs and malloc debugging
5463
5464         * [Imakefile]
5465         link with libmcheck.a if necessary
5466
5467         * [if1632/relay.c][include/dll.h][if1632/Imakefile]
5468         Add OLE stubs, increase number of builtins
5469         dll_name_table_entry_s: new field dll_is_used
5470
5471         * [loader/library.c]
5472         GetModuleHandle,ModuleNext: Check dll_is_used
5473
5474         * [loader/ne_image.c]
5475         Bark on unsupported NE_RADDR_LOWBYTE flag (what is it supposed
5476         to mean, anyway?)
5477
5478         * [misc/olecli.c][misc/olesvr.c]
5479         New files. Add to misc/Imakefile
5480
5481         * [misc/dos_fs.c]
5482         DOS_GetUnixFileName: make a copy of the input parameter to 
5483         prevent overwriting
5484
5485         * [misc/main.c]
5486         MAIN_ParseDLLOptions: new function
5487         MAIN_ParseOptions: treat -dll command line flag
5488         main: add support for malloc debugging
5489
5490 Fri Feb 24 12:43:27 1995  Erik Svendsen  <z3esv@kmd-ac.dk>
5491
5492         * [loader/signal.c]
5493         Small patch for people using FreeBSD-2.1.0.
5494
5495 Fri Feb 17 22:49:18 1995  Miguel de Icaza (miguel@roxanne.nuclecu.unam.mx)
5496
5497         * [toolkit/sup.c]
5498         Added return values to the Call* routines
5499
5500         * [toolkit/winmain.c]
5501         Load the resource file properly for WineLib applications.
5502
5503 ----------------------------------------------------------------------
5504 Thu Feb 16 18:57:31 1995  Alexandre Julliard  (julliard@sunsite.unc.edu)
5505
5506         * [if1632/call.S]
5507         Only save the lower 16-bits of SP and BP.
5508
5509         * [if1632/callback.c]
5510         When calling to 16-bit code, restore DS from its previous value on
5511         entry to the 32-bit code, instead of from the code segment owner.
5512
5513         * [if1632/relay.c] [include/stackframe.h]
5514         Use a structure to represent the 16-bit stack frame layout
5515         instead of hard-coded offsets.
5516         
5517         * [rc/Imakefile]
5518         Use y.tab.c for bison output file for compatibility with yacc.
5519
5520         * [tools/build.c]
5521         Small optimization for calls to 32-bit code.
5522
5523 Sun Feb 12 03:19:47 1995  Michael Veksler (s1678223@t2.technion.ac.il)
5524
5525         * [tools/build.c]
5526         Fixed bug (inflicted by previous change) - SEGV on ZMAGIC file format.
5527
5528 Sun Feb 11 20:00:00 1995  Göran Thyni  (goran@norrsken.bildbasen.se)
5529
5530         * [debugger/dbg.y]
5531         Remove unnecessary sym-table loading when stopped in 16-bit mode.
5532
5533         * [include/segmem.h] [loader/selector.c]
5534         Added dynamic alloction of selectors.
5535         Fixed some problems with large programs SIGSEGV-ing while
5536         running out of selectors.
5537
5538         * [include/segmem.h] [loader/selector.c] [if1632/callback.c] 
5539           [memory/global.c] [memory/heap.c] [memory/linear.c]
5540         Use __AHSHIFT and __AHINCR instead of 3 and 8.
5541
5542 Mon Feb  6 18:07:38 1995  Cameron Heide  (heide@ee.ualberta.ca)
5543
5544         * [misc/dos_fs.c]
5545         Better relative path handling when converting filenames between
5546         dos and unix, allowing '.' to be used in the Windows path.
5547         Startup working dir is now based on current working dir.
5548
5549 Sat Feb  4 21:21:13 1995  Michael Veksler (s1678223@t2.technion.ac.il)
5550
5551         * [if1632/relay.c] [include/dlls.h] [tools/build.c]
5552         Squeezed data structure that references internal dll's (mostly
5553         "struct dll_table_entry_s"). Caused 20% reduction in executable
5554         code size.
5555
5556 Fri Feb  3 18:53:15 1995  Martin v. Loewis  (loewis@marie)
5557
5558         * [Imakefile]
5559         make wine.sym only when making emulator
5560
5561         * [misc/file.c]
5562         OpenFile(): report as not implemented for WINELIB
5563
5564         * [misc/winsock.c]
5565         Fix CONVERT_HOSTENT and friends for use with WINELIB
5566
5567         * [rc/Imakefile][rc/rc.y][rc/parser.c]
5568         Rename rc.y to parser.y
5569         Use flex and bison on Sun
5570
5571         * [toolkit/sup.c]
5572         CallWindowProc: fix parameter type
5573
5574         * [windows/event.c]
5575         Commented #ifdef sparc
5576
5577 ----------------------------------------------------------------------
5578 Wed Feb  1 19:27:55 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5579
5580         * [windows/nonclient.c] [windows/winpos.c]
5581         Implemented maximized windows.
5582         Implemented icon positioning and ArrangeIconicWindows().
5583         Bug fixes in SetWindowPos().
5584
5585         * [windows/painting.c]
5586         Implemented GetControlBrush().
5587         Window frame is no longer contained in the update region.
5588
5589         * [windows/win.c]
5590         Destroy owned windows upon DestroyWindow().
5591
5592 Sun Jan 29 16:17:22 1995  David Metcalfe <david@prism.demon.co.uk>
5593
5594         * [controls/edit.c]
5595         Changed line terminator to \r\n to be compatible with
5596         Windows.  Fixed bug in text selection.
5597
5598 Sun Jan 29 14:10:22 1995   Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
5599
5600        * [misc/shell.c]
5601        Rewrote RegCreateKey and RegOpenKey, since they were completely broken.
5602        Fixed a bug in RegQueryKeyValue. Implemented RegEnumKey
5603        These functions now work somewhat more the way Windows programs expect
5604        them to work.
5605
5606 ----------------------------------------------------------------------
5607 Sun Jan 22 18:55:33 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5608
5609         * [loader/resource.c] [objects/dib.c]
5610         Fixed icon loading and drawing, now that BitBlt() works correctly.
5611         
5612         * [objects/clipping.c] [objects/region.c]
5613         Implemented elliptic regions with a set of rectangle. This greatly
5614         simplifies the region code and should boost clipping performance.
5615
5616         * [objects/color.c]
5617         Fixed bug that caused seg-fault on 24bpp displays.
5618
5619         * [objects/bitblt.c]
5620         Fixed bug when shrinking a bitmap to more than half its size.
5621
5622         * [windows/graphics.c]
5623         Fixed bugs in PaintRgn() and Polyline().
5624
5625         * [windows/nonclient.c] [windows/painting.c] [windows/winpos.c]
5626         Fixed some problems with window background painting.
5627
5628 Thu Jan 12 12:20:25 PST 1995 Ross Biro (biro@yggdrasil.com)
5629
5630        * [tools/build.c]
5631        * [tools/newbuild.c]
5632        * [Imakefile]
5633        * [include/wine.h]
5634        * [loader/call.S]
5635        * [loader/selector.c]
5636        * [include/segmem.h]
5637        * [misc/main.c]
5638        Changed selector code and 16/32 bit xfer code so that wine
5639        no longer has to be loaded low in memory.  Changed wine
5640        to work with ELF binary formats under Linux.
5641        
5642 Sat Sep 17 11:08:49 1994  Eric Youngdale  (eric@esp22)
5643
5644         * [debugger/db_disasm.c]
5645         New instruction disassembler - borrowed from Mach kernel.  Has a
5646         BSD style of license as opposed to the gdb code we were previously
5647         using which was under the GPL.
5648
5649 ----------------------------------------------------------------------
5650 Mon Jan  9 18:27:11 1995  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5651
5652         * [Imakefile]
5653         Compiling with -Wall flag.
5654
5655         * [*/*]
5656         Fixes to minimize the number of compilation warnings.
5657
5658         * [objects/bitblt.c]
5659         Fixed BitBlt() and used the same code to rewrite PatBlt() and
5660         StretchBlt(). The three *Blt() functions should now be correct in
5661         every case (famous last words).
5662
5663         * [objects/brush.c] [objects/dither.c]
5664         Merged the two files into brush.c
5665
5666         * [objects/dc.c]
5667         Fixed bug when the Windows programs forget to re-select the
5668         original bitmap in a memory DC.
5669
5670         * [objects/font.c]
5671         Tty to use 'fixed' font when the system font can't be found.
5672
5673         * [windows/dialog.c]
5674         Tentative fix to make dialogs look better when using fixed-width
5675         fonts.
5676
5677         * [windows/graphics.c]
5678         Partially implemented the PS_INSIDEFRAME pen style.
5679
5680         * [windows/nonclient.c]
5681         Fix for windows that have the WS_EX_DLGMODALFRAME style bit
5682         without the WS_DLGFRAME style.
5683
5684 Thu Jan  5 13:37:42 1995  Cameron Heide  (heide@ee.ualberta.ca)
5685
5686         * [memory/global.c]
5687         GlobalCompact should now return the correct value when the
5688         largest run of free blocks includes the last block.
5689
5690         * [windows/mdi.c]
5691         Tiling and cascading windows without any MDI children should
5692         no longer crash (assuming no-op is the correct thing to do).
5693
5694 Sun Jan  1 23:30:25 1995  Fons Botman  <botman@rabo.nl>
5695
5696         * [objects/font.c]
5697         GetTextExtentPoint: fixed debug output, str is counted string, not
5698         zero terminated.
5699
5700         * [if1632/relay.c]
5701         DLLRelay: when debugging_stack got segv, added upper bound for
5702         stack dump.
5703
5704 ----------------------------------------------------------------------
5705 Tue Dec 27 13:35:16 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5706
5707         * [*/Imakefile]
5708         All objects files are now kept in their respective directory.
5709
5710         * [README]
5711         Rewrote most of it.
5712
5713         * [objects/bitblt.c]
5714         Rewrote BitBlt() to look right in every case, while minimizing
5715         the impact on performance. Not really finished yet.
5716
5717         * [objects/bitmap.c] [objects/dc.c]
5718         Fixed bug with pattern brushes.
5719
5720         * [objects/clipping.c] [windows/painting.c]
5721         Fixes for logical coordinates.
5722
5723         * [objects/color.c] [windows/graphics.c]
5724         Fixed GetPixel() to return the correct color, and made it faster.
5725
5726         * [objects/region.c]
5727         Fixed bug in CombineRgn() when one of the region is empty.
5728
5729 Fri Dec 22 01:42:57 MET 1994              Dag Asheim (dash@ifi.uio.no)
5730
5731         * [Configure]
5732         Don't assume that expr handles '==', use '=' instead.
5733         Give a (hopefully informative) message if imake fails.
5734
5735 ----------------------------------------------------------------------
5736 Wed Dec  7 14:52:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5737
5738         * [controls/listbox.c]
5739         Fixed problems due to new scroll-bar code.
5740
5741         * [loader/signal.c] [miscemu/ioports.c]
5742         Handle I/O opcodes that use an absolute address.
5743
5744         * [objects/text.c]
5745         Implemented TabbedTextOut().
5746
5747 Sat Dec  3 18:53:08 1994  Kenneth MacDonald  <K.MacDonald@ed.ac.uk>
5748
5749         * [objects/metafile.c]
5750         Implemented GetMetafile().
5751         Fixed bug in PlayMetaFile() when reading disc based metafile records.
5752         Added META_POLYPOLYGON, META_DELETEOBJECT and META_EOF to 
5753         PlayMetaFileRecord().
5754         
5755 Wed Nov 30 06:32:25 1994  Martin von Loewis  (martin@cs.csufresno.edu)
5756
5757         * [Imakefile]
5758         wine.sym: Remove gcc2_compiled and friends
5759
5760         * [controls/listbox.c][if1632/relay.c][if1632/relay.c]
5761           [loader/resource.c][memory/heap.c][objects/dib.c][windows/dialog.c]
5762         Replace #ifdef DEBUG_XXX with if(debugging_xxx){
5763
5764         * [if1632/call.S]
5765         CallToLibMain: New function
5766
5767         * [if1632/relay.c][include/options.h][misc/main.c]
5768           [miscemu/int1a.c][miscemu/int21.c][miscemu/kernel.c]
5769         removed Options.relay_debug
5770
5771         * [include/heap.h]
5772         HEAP_OWNER: Use ds instead of cs:ip
5773
5774         * [loader/ne_image.c]
5775         LoadNEImage: Remember current exe, handle nodata dlls
5776         InitNEDLL: handle nodata dlls, call CallToLibMain
5777
5778         * [loader/selector.c]
5779         CreateSelectors: Initialize auto_data_sel with 0
5780
5781         * [memory/heap.c]
5782         HEAP_CheckHeap: Check prev
5783         HEAP_CheckLocalHeaps: new function
5784
5785         * [misc/profile]
5786         Remember and dump only changed profiles
5787
5788         * [tools/makedebug]
5789         Introduce debugging_xxx flags
5790
5791 Sun Nov 27 23:13:22 MET 1994    <erik@xs4all.nl>
5792
5793         * [clipboard.h color.h dc.h dos_fs.h event.h font.h graphics.h
5794         if1632.h kernel.h library.h miscemu.h ne_image.h nonclient.h 
5795         pe_image.h selectors.h wintypes.h]
5796         Added.
5797
5798         * [*/*]
5799         - Commented all 'static char copyright statements', see misc/main.c
5800         - moved prototypes to headers files, fixed wrong prototypes.
5801         - *please* add a header file for each .c if you need to export
5802           things.
5803
5804         * [misc/main.c]
5805         Added one static string which list the names of the contributors.
5806
5807 Fri Nov 25 16:24:27 MET 1994              Dag Asheim (dash@ifi.uio.no)
5808
5809         * [Configure]
5810         Made the support for multiple languages more automatic.  Added
5811         a [fonts] section to the wine.conf file.  Made the defaults
5812         better.  Generally cleaned it up.
5813
5814         * [rc/sysres_No.rc] [rc/sysres_De.rc] [rc/sysres.c]
5815         Norwegian resources and small fixes to the german resources.
5816
5817 Wed Nov 23 20:28:59 1994  Martin von Loewis  (martin@cs.csufresno.edu)
5818
5819         * [debugger/break.c]
5820         bark(), toggle_next(), should_continue(): New functions
5821         insert_break(): Fixed, adds write access to page before writing
5822         wine_bp.next_addr: new structure field
5823
5824         * [debugger/dbg.y]
5825         Changed symbol's value to be it's value instead of the value
5826         pointed to by the symbol.
5827         Changed SIGTRAP handling to allow continuation after break point
5828
5829         * [misc/shell.c]
5830         ShellAbout(): Load resource from memory
5831
5832 ----------------------------------------------------------------------
5833 Sun Nov 20 18:30:06 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5834
5835         * [controls/scroll.c] [include/scroll.h]
5836         Rewritten most of scroll-bar code for better Windows look & feel.
5837         Implemented EnableScrollBar().
5838         Preliminary keyboard support.
5839
5840         * [objects/bitblt.c]
5841         Fixed BadMatch error for BitBlt() and StretchBlt() when reading
5842         bits from outside the visible region.
5843
5844         * [objects/oembitmap.c] [include/bitmaps/obm_*]
5845         Use XPM symbolic colors to load bitmaps. This allows the colors
5846         of the bitmaps to depend on the system colors.
5847
5848         * [tools/make_debug]
5849         Made the make_debug script more robust.
5850
5851         * [windows/dialog.c]
5852         Fixed CheckRadioButton().
5853
5854         * [windows/nonclient.c]
5855         A few changes to scroll-bar drawing and tracking.
5856
5857         * [windows/winpos.c]
5858         Renamed NextWindowFromPoint() to WINPOS_NextWindowFromPoint() to
5859         avoid confusion, and optimized it somewhat.
5860
5861 Nov 19, 94 Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
5862
5863         * [misc/audio.c]
5864         * [misc/mcianim.c]
5865         more coding but nothing spectacular.
5866
5867         * [misc/mmaux.c]
5868         some coding to access '/dev/mixer'.
5869
5870         * [misc/midi.c]
5871         some coding to read .MID files, but it's not playing yet.
5872
5873 Sun Nov 13 19:31:03 1994    James Youngman (mbcstjy@afs.man.ac.uk)
5874
5875         * [objects/dib.c]
5876         Reimplemented DIB_SetImageBits_RLE8() so that it would cope with
5877         bitmaps which don't end 0x00, 0x02 (previously it blew up).  This
5878         includes some bitmaps output by Paint Shop Pro.  Implementation is
5879         possibly now too lax.  Please see the notes on the function about
5880         why.
5881
5882         * [controls/desktop.c]
5883         The desktop pattern should be painted if the wallpaper doesn't
5884         cover the whole screen width OR the whole screen height.
5885
5886 Sun Nov 13 00:07:11 MET 1994    Erik Bos        <erik@xs4all.nl>
5887
5888         * [objects/dib.c]
5889         Small bug in DIB_SetImageBits() fixed, bitmaps in 16,24 bpp
5890         now work.
5891
5892         * [loader/ne_resource.c] [include/resource.h]
5893         Some cleanup.
5894
5895 Thu Nov 10 20:44:58 1994  Martin von Loewis  (martin@cs.csufresno.edu)
5896
5897         * [Configure]
5898           [rc/sysres.rc]
5899         Primitive compile-time support for multiple languages
5900
5901         * [rc/sysres_De.rc]
5902         New file
5903
5904         * [loader/resource.c]
5905         LoadBitmap: Recognize end of sysresbm properly
5906
5907         * [rc/Imakefile]
5908         Rules to compile resources simplified, dependencies changed
5909
5910         * [rc/sysresbm.rc]
5911         Don't use sysresbm if using XPM
5912
5913         * [windows/dialog.c]
5914         CreateDialogIndirectParam: Reverse Z-order of controls
5915
5916         * [windows/message.c]
5917         MSG_TranslateMouseMsg: Fix HTTRANSPARENT handling
5918
5919         * [windows/winpos.c]
5920         NextWindowFromPoint: New function
5921
5922         * [controls/button.c]
5923         WM_NCHITTEST: Group Box is HTTRANSPARENT
5924         BUTTON_CheckAutoRadioButton: New function
5925         BM_SETCHECK: Added call to BUTTON_CheckAutoRadioButton
5926
5927 Mon Nov  7 11:20:26 1994  Paul Falstad  (pf@zoof.cts.com)
5928
5929         * [objects/text.c]
5930         Fix hang when using DrawText(..., DT_WORDBREAK) with a word that
5931         is too long to break.
5932
5933         * [objects/font.c]
5934         Don't assume helvetica if there is no font family; let the other
5935         font attributes decide what font to use.
5936
5937         * [controls/widgets.c]
5938         Listboxes and combo boxes need to be notified of double-clicks.
5939
5940         * [controls/listbox.c]
5941           [include/listbox.h]
5942
5943         scrolling to bottom of list box should display last item at the
5944         bottom, not at the top.
5945         
5946         list boxes need to allocate a separate heap for their item data,
5947         rather than using the user heap.  Otherwise, it's very easy to run
5948         out of memory for list box items.
5949
5950         removed redundant code in ListBoxAddString().  Implemented simple
5951         version of LBS_SORT.
5952
5953         Don't put [.] in the list box when using DDL_DIRECTORY.
5954
5955         * [controls/combo.c]
5956         Combos should pass CBS_SORT onto their list box.
5957
5958         * [windows/win.c]
5959         If window creation is aborted, remove the window from the
5960         linked lists.
5961
5962         * [controls/static.c]
5963         static controls with SS_ICON were always returning 0 from
5964         WM_NCCREATE.
5965
5966         Make sure static controls have text to draw before drawing it.
5967
5968 ----------------------------------------------------------------------
5969 Sun Nov  6 18:52:04 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
5970
5971         * [objects/oembitmap.c]  (New file)
5972         Added possibility to use .xpm files for OEM bitmaps.
5973
5974         * [include/bitmaps/obm*]  (New files)
5975         Redrawn all OEM bitmaps in xpm format.
5976
5977         * [objects/font.c]
5978         Add space for internal leading when using a negative font height.
5979         Stubs for AddFontResource() and RemoveFontResource().
5980         Fix in FONT_Init() for uninitialised default font.
5981
5982         * [windows/dialog.c]
5983         Make font height negative as it is really a point size and not a
5984         pixel size; dialogs using 8-point fonts look better now.
5985
5986         * [windows/graphics.c]
5987         Fixed the fix :-) for Pie() to make it work for Arc() and Chord() also.
5988
5989         * [windows/nonclient.c]
5990         A few changes for new OEM bitmaps.
5991
5992 Sun Nov  6 18:22:18 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
5993
5994         * [windows/class.c]
5995         The names of local classes have to be stored using GlobalAtom*.
5996         Otherwise they couldn't be accessed from other modules (e.g. BWCC) 
5997
5998         * [if1632/call.S]
5999         CallTo16(cx): It's possible to set the contents of the cx-register.
6000
6001         * [loader/ne_image.c]
6002         InitNEDLL(): The size of the local heap is now passed in the cx-
6003         register when initializing a DLL.
6004
6005         * [memory/heap.c]
6006         LocalInit(): The case start==0 is now handled in the way it should.
6007
6008         * [windows/win.c]
6009         GetWindowLong(): If the adress of the windows function is requested
6010         it's no longer returned if it's within the Wine code (and therefore
6011         unreachable by a windows program). This makes Borland's OWL happy.
6012
6013         * [controls/edit.c]
6014         EDIT_GetStr(): Added handling for off<0.
6015
6016 Sun Nov  6 17:37:14 1994  Chris Jones  <chrisj@ichips.intel.com>
6017
6018         * [loader/library.c]
6019         Fixed infinite loop bug when two DLLs refer to each other (fixes
6020         hangup of Quicken during loading).
6021
6022 Thu Nov 04 12:00:00 1994  Jan Willamowius  (jan@janhh.sh.sub.de)
6023
6024         * [misc/dos_fs.c]
6025         Bug fix: The size of a disk an the available space
6026         is now returned in bytes instead of (incorrectly)
6027         KBytes.
6028
6029 Thu Nov 03 12:00:00 1994  Jan Willamowius  (jan@janhh.sh.sub.de)
6030
6031         * [windows/graphics.c]
6032         Bug fix: Pie segments are now filled with correct brush.
6033
6034 Thu Nov  3 10:40:09 1994  Martin von Loewis  (martin@cs.csufresno.edu)
6035
6036         * [Imakefile]
6037         generate rc.o before loader.o
6038
6039         * [controls/menu.c]
6040         CopySysMenu: generate SYSMENU on the fly, eliminate hSysMenu
6041
6042         * [include/resource.h]
6043         Add struct ResourceTable
6044
6045         * [loader/bitmap.h]
6046         Load system bitmaps from sysresbmTable
6047
6048         * [misc/clipboard.c]
6049           [windows/event.c]
6050         IsClipboardFormatAvailable,EVENT_SelectionRequest: bug fixes
6051         
6052         * [rc/Imakefile]
6053         generate rc.o from sysres.o and sysresbm.o. Added -lfl
6054
6055         * [rc/rc.y]
6056         change style handling to allow ( S1 | S2 ) | S3
6057
6058         * [rc/sysres.rc]
6059           [rc/sysresbm.rc]
6060         Put bitmaps and icons to sysresbm, everything else to sysres
6061
6062         * [rc/winerc.c]
6063           [rc/winerc.h]
6064         Added -o, -c flags. New function set_out_file. Output to files.
6065
6066         * [windows/dialog.c]
6067         DialogBoxIndirectPtr, DialogBoxIndirectParamPtr: New functions 
6068
6069         * [windows/nonclient.c]
6070         Create AboutWine dialog from template pointer
6071
6072 ----------------------------------------------------------------------
6073 Sun Oct 30 13:01:18 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6074
6075         * [controls/static.c]
6076         Bug fix for SS_ICON controls.
6077
6078         * [if1632/Imakefile]
6079         Fixed call.o dependencies.
6080
6081         * [objects/clipping.c] [objects/dc.c]
6082         Fixed visible region handling. hVisRgn is always non-null now.
6083
6084         * [windows/dce.c]
6085         Bug fix in GetDCEx for CS_OWNDC windows.
6086
6087         * [windows/nonclient.c] [windows/painting.c]
6088         Fixes to icon window drawing.
6089
6090         * [windows/winpos.c]
6091         A few fixes in SetWindowPos().
6092
6093 Sun Oct 30 12:50:24 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
6094
6095         * [objects/bitblt.c]
6096         BitBlt(): BitBlt is now able to handle any raster operation. If
6097         the request can't be passed to XWindows directly, it's quite
6098         slow, though.
6099
6100         * [*/*.c]
6101           [misc/main.c]
6102         Improvements of the system for handling debug messages. Options are
6103         now also loaded from /usr/lib/X11/app-defaults/Wine (insert
6104         *debugoptions: +xxx there if you want to have turn messages xxx on).
6105
6106         * [controls/menu.c]
6107         DestroyMenu(): The whole window won't be destroyed as a sideeffect
6108         any longer.
6109
6110         * [misc/file.c]
6111         OpenFile(): Fixed bug in searching in system/window-directory.
6112
6113 Sun Oct 30 12:25:53 1994  Jimmy Tirtawangsa <j0t2527@tam2000.tamu.edu>
6114
6115         * [include/windows.h]
6116         Bug fix for window related structures.
6117         DCB and COMSTAT are affected. They must be packed.
6118
6119         * [misc/comm.c]
6120         Bug fix for COM ports:
6121         Dial and dialog window in terminal.exe now works.
6122         Non sequential COM assignments in wine.conf should not break now.
6123         Baudrate can be specified in wine.conf to overcome baudrate limitation
6124         in mswindow. See sample wine.ini
6125
6126         * [include/comm.h]
6127         add baudrate field to DosDeviceStructre
6128
6129         * [object/font.c]
6130         Bug fix for font assignment.
6131         Use pairs of foundry and family fontnames in X11 to correspond with
6132         window's fonts.
6133         Put font assignment ini wine.ini.
6134
6135         * [wine.ini]
6136         Adding optional baudrate after port name in "serialports" section
6137         Add new section, "fonts".
6138         "default" is special key in "fonts" to match any unmatch window font.
6139
6140 Oct 29, 94 (new address) wine@trgcorp.mksinfo.qc.ca (Martin Ayotte)
6141
6142         * [if1632/relay.c]
6143         * [if1632/commdlg.spec]         New file.
6144         * [misc/commdlg.c]                      New file.
6145         * [include/commdlg.h]           New file.
6146         Begin of an emulated COMMDLG DLL, built-in for now.
6147         (BTW, if you want to switch between built-in & 16bits CommDlg, only 
6148         thing you need to do is to put the real/dummy name in file relay.c)
6149
6150         * [controls/scroll.c]
6151         * [controls/combo.c]
6152         * [controls/listbox.c]
6153         Few bug fixes and/or cosmetic.
6154
6155         * [misc/audio.c]
6156         * [misc/mmaux.c]
6157         bug fixes and flags returned to emulate SB16.
6158
6159         * [misc/midi.c]                         New file.
6160         skeleton for 'Midi' MMSYSTEM & MCI driver.
6161
6162         * [misc/mcianim.c]                      New file.
6163         skeleton for 'Animation1' MCI driver.
6164
6165         * [windows/win.c]
6166         Add new stub for GetLastActiveWindow().
6167
6168 Tue Oct 25 09:17:25 1994  Olaf Flebbe  (flebbe@tat.physik.uni-tuebingen.de)
6169
6170         * [if1632/call.S] [tools/build.c]
6171            Support for ELF format. (Not complete)
6172
6173 Sun Oct 23 00:51:50 1994  Paul Falstad  (pf@zoof)
6174
6175         * [if1632/user.spec]
6176         Add stubs for ArrangeIconicWindows(), etc.
6177
6178         * [if1632/kernel.spec]
6179         Add IsBad*Ptr() functions.
6180
6181         * [loader/signal.c]
6182         Add test_memory(), for use with IsBad*Ptr().
6183
6184         * [windows/winpos.c]
6185         Add stubs for TileChildWindows(), etc.
6186
6187         * [windows/win.c]
6188         IsWindow() shouldn't crash if it's given a bad handle.
6189         Add stub for GetLastActivePopup().
6190
6191         * [memory/global.c]
6192         Implement the IsBad*Ptr() functions.
6193
6194         * [controls/listbox.c]
6195         Return the full longword of the item data in LB_GETITEMDATA.
6196
6197         * [controls/edit.c]
6198         Don't let the user select an area past the end of the text.
6199
6200         * [objects/text.c]
6201         In DrawText(), the code to delete crlfs also removed multiple
6202         consecutive newlines.  Also, using DT_CALCRECT didn't return
6203         the right height, and the width wasn't returned at all.
6204         This caused MessageBoxes to be missing much of their text.
6205
6206         * [windows/scroll.c]
6207         ScrollWindow[Ex] didn't work right with null LPRECT arguments.
6208
6209 Fri Oct 21 21:47:19 1994  Paul Falstad  (pf@zoof.cts.com)
6210
6211         * [miscemu/int21.c]
6212         Fixed int21 0x42 handler to properly assemble 32-bit seek ptr.
6213
6214         * [misc/property.c]
6215         Fixed inverted logic in EnumProps(), and changed CallBack16()
6216         call to use new arg format.
6217
6218         * [windows/win.c]
6219         Fixed CallBack16() call in Enum[Child]Windows to use new arg
6220         format; this fixes crashes in enum procedures.
6221
6222 Wed Oct 19 21:30:00 PDT 1994            martin@cs.csufresno.edu
6223
6224         * [misc/clipboard.c]
6225           [windows/event.c]
6226           [windows/message.c]
6227         Added cut and paste between Wine and other X clients via
6228         the PRIMARY selection. Text only this time.
6229
6230         * [controls/edit.c]
6231         EDIT_LineLength, EDIT_TextLine return 0 for lines after last one.
6232
6233         * [windows/defwnd.c]
6234         Send WM_SYSCOMMAND to overlapped ancestor window, 
6235         not the receiver of WM_SYSKEYDOWN
6236
6237 Sat Oct 22 15:01:02 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
6238
6239         * [controls/edit.c]
6240         ClientWidth()/ClientHeight() macros: return 0 if size would
6241         be negative
6242         EDIT_StrLength(): takes unsigned char* instead of char*
6243
6244         * [controls/listbox.c]
6245         ListBoxWndProc(): in "case WM_MOUSEMOVE" - set lphl at start of
6246         case instead of in each place required (it was omitted in
6247         some places causing problems!)
6248
6249         * [controls/menu.c]
6250         MENU_CalcItemSize(): don't try to find size of a text item
6251         if the pointer is NULL
6252
6253         * [include/heap.h]
6254         added definition of HEAP_LocalInit()
6255
6256         * [include/msdos.h]
6257         removed buggy pointer() macro (use SAFEMAKEPTR() from segmem.h
6258         instead)
6259
6260         * [loader/selector.c]
6261         IPCCopySelector(): added missing flags to shmget() call
6262         ? does this break linux - I added these flags in a previous
6263         patch but they were missing in the corresponding release ?
6264
6265         * [loader/signal.c]
6266         win_fault(): added missing definitions of i, dump for those
6267         not running NetBSD or linux
6268
6269         * [misc/dos_fs.c]
6270         DOS_GetCurrentDir(): made temp[] static so it can be safely
6271         returned
6272
6273         * [miscemu/int21.c,int25.c,int26.c]
6274         Changed all invocations of pointer() to SAFEMAKEPTR(). Included
6275         segmem.h where necessary.
6276
6277         * [windows/dialog.c]
6278         CreateDialogIndirectParam(): Changed HEAP_Init() call to 
6279         HEAP_LocalInit(), removed redundant variables
6280
6281 Sat Oct 22 00:29:41 MET 1994              Dag Asheim (dash@ifi.uio.no)
6282
6283         * [loader/library.c] [loader/main.c] [loader/ne_image.c]
6284           [misc/exec.c] [miscemu/int10.c] [miscemu/int21.c]
6285           [objects/bitblt.c] [objects/metafile.c]
6286         Rewritten more printf's to use the new debugging system, and
6287         made wine less verbose per default. Use "-debugmsg +module"
6288         to get (almost) the same behavior as before.
6289
6290 ----------------------------------------------------------------------
6291 Sun Oct 16 13:29:07 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6292
6293         * [controls/button.c]
6294         Implemented WM_GETDLGCODE, WM_SETFONT, BM_SETSTYLE, BM_SETCHECK,
6295         BM_SETSTATE.
6296         Implemented default button painting.
6297         Optimised redrawing.
6298         Fixed owner-draw buttons.
6299
6300         * [controls/static.c]
6301         Implemented WM_SETFONT.
6302         A few optimisations in painting code.
6303         Bug fix for SS_SIMPLE controls.
6304
6305         * [if1632/callback.c]
6306         Preliminary GetCodeHandle().
6307
6308         * [if1632/gdi.spec]
6309         Changed 'pascal' to 'pascal16' everywhere it's needed.
6310
6311         * [include/windows.h]
6312         Fixed a few data structures.
6313
6314         * [memory/heap.c]
6315         Bug fix in HEAP_ReAlloc().
6316
6317         * [misc/cursor.c]
6318         Fixed SetCursor().
6319
6320         * [objects/bitblt.c]
6321         Fixed PatBlt() when using BLACKNESS or WHITENESS codes.
6322
6323         * [objects/font.c]
6324         Better font mapping code.
6325         Implemented GetTextFace().
6326
6327         * [objects/region.c]
6328         Bug fix in REGION_MakePixmap().
6329         Faster region copying.
6330
6331         * [objects/text.c]
6332         Implemented ExtTextOut().
6333         Implemented DT_NOCLIP style for DrawText().
6334
6335         * [windows/dc.c]
6336         Free the bitmap when deleting a memory DC.
6337
6338         * [windows/dce.c]
6339         Added support for windows that have no associated X window.
6340         Implemented DCX_CLIPSIBLINGS and DCX_PARENTCLIP in GetDCEx().
6341
6342         * [windows/defdlg.c]
6343         Implemented default push button handling and DM_SETDEFID.
6344         Implemented WM_NEXTDLGCTL.
6345
6346         * [windows/dialog.c]
6347         Implemented default push button handling.
6348         Beginning of a keyboard interface in dialogs
6349         (does not really work yet).
6350         Fixed dialogs that use a special font.
6351
6352         * [windows/event.c] [windows/focus.c]
6353         Added support for non-X windows.
6354
6355         * [windows/graphics.c]
6356         Rewritten FloodFill() and implemented ExtFloodFill().
6357
6358         * [windows/message.c]
6359         Cleaner hardware messages and X events handling.
6360
6361         * [windows/defwnd.c] [windows/painting.c]
6362         Implemented WM_SETREDRAW.
6363
6364         * [windows/win.c]
6365         Only create an X window for top-level windows, or for the desktop.
6366         Child windows now use their parent's drawable.
6367
6368         * [windows/winpos.c]
6369         Beginning of support for non-X windows (still somewhat broken).
6370         Implemented *DeferWindowPos().
6371
6372         * [*/Imakefile]
6373         Cleaned up some Imakefiles.
6374         Moved dc.c from windows/ to objects/.
6375         Moved cursor.c from misc/ to windows/.
6376
6377 Sun Oct 16 12:21:52 1994  Michael Patra <micky@marie.physik.tu-berlin.d400.de>
6378
6379         * [include/debug.h]
6380           [include/stddebug.h]
6381           [*/*.c]
6382         Rewritten all the calls to printf for displaying debug-information
6383         (messages like "LoadImage: loading SOL (SOL.EXE)" etc.) 
6384         Added option "-debugmsg" to Wine. Example: "-debugmsg +all" will turn
6385         all these messages on, "-debugmsg -dll" will turn all messages 
6386         concerning DLLs off.
6387
6388         * [controls/combo.c]
6389         Added some handling for combo controls with ownerdraw-styles
6390         (just creating and passing the necessary messages to the 
6391         corresponding listbox control; the edit-control needs to be
6392         replaced with something else).
6393
6394         * [controls/edit.c]
6395           [windows/dialog.c]
6396         Added support for use of global heap memory in dialogs with 
6397         edit controls.
6398
6399         * [controls/listbox.c]
6400         Added support for item data.
6401         ListBoxInsertString(): Fixed bug for elements which are not inserted
6402         after the currently last element.
6403         
6404         * [misc/dos_fs.c]
6405           [miscemu/int21.c]
6406         DOS_ValidDirectory(): Checks whether a given string is in fact the
6407         valid name of a directory.
6408
6409 Sat Oct 15 17:35:00 PDT 1994            <martin@cs.csufresno.edu>
6410
6411         * [Imakefile]
6412         generate wine.sym after creating wine
6413
6414         * [debugger/dbg.y]
6415         load "wine.sym" when entering debugger
6416
6417         * [debugger/info.c]
6418         symbolic backtrace for 32-bit stack. Breaks 16-bit bt.
6419
6420 Sun Sep  25 12:00:00 PDT 1994   <martin@osiris.cs.csufresno.edu>
6421
6422         * [rc/rc.y] [rc/rc.h] [rc/rc.l] [rc/winerc.c]
6423         Files created
6424
6425 Sun Sep 18 11:04:45 MET DST 1994          Dag Asheim (dash@ifi.uio.no)
6426
6427         * [misc/spy.c]
6428         Exclude and Include no longer requires a terminating ';' to
6429         register the last component.
6430
6431 Thu Sep 15 23:10:09 MET DST 1994          Dag Asheim (dash@ifi.uio.no)
6432
6433         * [Configure]
6434         Rewrote much of it.  Added capability to generate a wine.ini
6435         file.  Commented out the processor emulator options until that
6436         becomes interesting.  Gives a warning if it sees any *.rej
6437         files.  I hope I haven't assumed to much about the shell/OS so
6438         that it breaks under *BSD.
6439
6440         * [misc/dos_fs.c]
6441         Removed/changed calls to ToUnix() (which calls tolower()) so
6442         that the part of the pathname which correspond with the drive
6443         letter on DOS no longer will be mapped to lowercase.  This
6444         means that it should be possible to have uppercase letters in
6445         the [drives] section of wine.ini.
6446
6447         * [LICENSE]
6448         Cosmetic changes so that it displays better in the window you
6449         get from pressing "Credit_License" in the "About WINE" window.
6450
6451 Sun Aug 21 21:12:06 MET DST 1994        <erik@xs4all.nl>
6452
6453         * [controls/menu.c]
6454         LoadMenu() moved to loader/resource.c.
6455
6456         * [misc/main.c]
6457         Added stub for FileCDR().
6458
6459         * [include/peexe.h]
6460         Added, from Eric's pe-test.
6461
6462         * [include/resource.h]
6463         Added.
6464
6465         * [loader/resources.c]
6466         Removed duplicated code in *Resource() functions.
6467         Moved NE-program specific functions into ne_image.c.
6468         Moved NE-fileformat functions to ne_resource.c.
6469
6470         * [pe_image.c] [pe_resource.c]
6471         Added. Nothing implemented to run PE-executables, resource
6472         loading only.
6473
6474         * [misc/file.c]
6475         Changed OpenFile() to use macros.
6476
6477         * [misc/shell.c]
6478         Added NULL-ptr checks to ShellAbout().
6479
6480         * [miscemu/int21.c]
6481         Fixed a few typos.
6482
6483         * [miscemu/kernel.c]
6484         Added _DI = _DS, to put the caller's instance in DI. Doesn't
6485         work properly if caller changed DS :-(
6486
6487 ----------------------------------------------------------------------
6488 Thu Aug 25 15:24:36 EDT 1994            <jrichard@cs.uml.edu>
6489
6490         * [include/win.h]
6491         Removed seperate X window for icon, added icon width,height.
6492
6493         * [include/windows.h]
6494         Commented out the old SW_xxx emum and added defines since
6495         they aren't enumerated.
6496
6497         * [windows/dce.c]
6498         Removed some older IsIconic checks from GetDCEx(), functionality
6499         is now in nonclient and generic wine window handling code.
6500         Lots of thanks to Alexandre Julliard all the hints and
6501         help...
6502
6503         * [windows/defwnd.c]
6504         Removed call to NC_HandleNCPaintIcon() under case WM_PAINTICON,
6505         WM_PAINTICON now calls NC_HandleNCPaint.  
6506
6507         * [windows/event.c]
6508         Removed IsIconic checks.
6509
6510         * [windows/icon.c]
6511         Removed everything in this file for now... could be used later.
6512         Icon functionality is now handled by the generic wine windows
6513         handling functions.
6514         
6515         * [windows/mdi.c]
6516         Added a ShowWindow in MDIRestoreChild().  MDI child windows now
6517         show up when deiconified.  Removed IsIconic checks.
6518
6519         * [windows/message.c]
6520         Removed old icon routines from hardware_event().
6521
6522         * [windows/nonclient.c]
6523         Changed NC_HandleNCCalcSize() so it doesn't change the size
6524         of an icon window.  Made NC_InternalNCHitTest() on an Iconic
6525         window always return HTCAPTION.  Made NC_HandleNCLButtonDblClk()
6526         on an Iconic window always send a SC_RESTORE message.
6527
6528         * [windows/painting.c]
6529         Changed RedrawWindow() so it doesn't redraw an iconic window
6530         unless it has to (no icon for this class).
6531         
6532         * [windows/win.c]
6533         Removed creation of seperate icon window from CreateWindowEx().
6534         
6535         * [windows/winpos.c]
6536         Added saving and restoring of window rectangle during
6537         iconification/deiconification to ShowWindow().  Added
6538         functions to recursively hide and show children... called
6539         by ShowWindow during iconification/deiconification.
6540
6541 Sat, 27 Aug 1994 18:47:34 +0100 (MET DST)  micky@marie.physik.tu-berlin.de (Michael Patra)
6542
6543         * [windows/message.c]
6544         WaitMessage(): Fixed handling of wm_timer-messages
6545
6546         * [miscemu/int21.c]
6547         FindNextFCB(): Rewritten to support other functions than just
6548         returning the volume label
6549
6550         * [misc/file.c]
6551         OpenFile(): Fix in handling of OF_CREATE
6552
6553 Wed Aug 24 19:40:42 PDT 1994  Andrew Lagodzinski  (andrew@netcom.com)
6554
6555         * [if1632/user.spec]
6556         Added SetParent.
6557
6558         * [windows/win.c]
6559         Added SetParent.
6560
6561 Fri Aug 19 16:37:00 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
6562
6563         * [loader/selector.c]
6564         Many changes throughout file to correct handling of shared memory
6565         function return codes. FreeBSD and SunOS shm functions return
6566         -1 not 0 on error. If Linux is different, these changes
6567         will have to be backed out.
6568         CleanupSelectors(): this is a new (internal) call to free
6569         up all selectors (and shm handles/memory) for use on exit.
6570
6571         * [include/segmem.h]
6572         Change comment to reflect new use of shm_key
6573
6574         * [misc/main.c]
6575         called_at_exit(): add call to CleanupSelectors()
6576
6577 Mon Aug 22 18:19:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6578
6579         * [controls/button.c]
6580         Use OBM_CHECKBOXES to draw check boxes with correct colors.
6581         Fixed bug with WM_SETTEXT handling.
6582         A few drawing optimisations.
6583
6584         * [controls/menu.c]
6585         Implemented correct \t and \a handling in menu items.
6586         Implemented help items (flush right) on menu bar.
6587         Added WM_ENTERMENULOOP and WM_EXITMENULOOP messages.
6588
6589         * [controls/static.c]
6590         Fixed SS_ICON controls and implemented STM_SETICON message
6591         handling.
6592
6593         * [controls/widget.c]
6594         Set cursor to IDC_ARROW for built-in classes.
6595
6596         * [include/options.h] [misc/main.c]
6597         Backing store is now off by default.
6598
6599         * [objects/region.c]
6600         Use X regions for rectangle and polygon regions: *major* speed
6601         improvement.
6602
6603         * [windows/dialog.c]
6604         Fixed the fix for integer ids in controls. SS_ICON controls in
6605         dialogs should work now.
6606         Implemented DS_ABSALIGN style.
6607
6608         * [windows/graphics.c]
6609         Implemented InvertRgn().
6610         New internal function GRAPH_DrawBitmap() to draw bitmaps faster
6611         than with CreateCompatibleDC() + BitBlt().
6612
6613         * [windows/message.c]
6614         Determining the window for a mouse message is now done at
6615         GetMessage() time.
6616         Modified PeekMessage() handling to avoid needlessly flushing the
6617         output queue.
6618
6619         * [windows/timer.c]
6620         Check for restart of a timer (SetTimer call with the same hwnd and
6621         id than an existing timer).
6622
6623 ----------------------------------------------------------------------
6624 Tue Aug  9 23:58:29 MET DST 1994        <erik@hacktic.nl>
6625
6626         * [misc/file.c]
6627         OpenFile(): Completly rewritten.
6628
6629         * [miscemu/int21.c]
6630         CreateFile(): Fixed wrong mode in call to open.
6631         OpenExistingFile(): Implemented file sharing.
6632         FindNext(): Fixed.
6633         CreateNewFile(): Fixed wrong mode in call to open.
6634         fLock(): Added to handle record locking.
6635         GetFileAttribute(): Added.
6636         As a result, AH = 0x5c, 0x09, and 0x0b were changed.
6637
6638         * [miscemu/int2f.c]
6639         AH = 0x10: SHARE installation check
6640  
6641         * [loader/resource.c]
6642         AccessResource(): Fixed. A new file descriptor will be returned by
6643         every call to AccessResource().
6644
6645         * [windows/utility.c]
6646         wvsprintf(): Fixed.
6647
6648         * [controls/menu.c]
6649         FindMenuItem(): Fixed (handling for nPos == -1 added).  
6650
6651         * [windows/win.c]
6652         CreateWindowEx(): Added call to WINPOS_GetMinMaxInfo.
6653
6654         * [Configure]
6655         Added two options for a processor emulator that might be
6656         plugged in later..
6657
6658         * [loader/task.c] [include/toolhelp.h] [if1632/toolhelp.spec]
6659         CreateNewTask() stores real modulename instead of 'TASKxxxx'.
6660         Added TaskFirst(), TaskNext(), TaskFindHandle().
6661
6662         * [memory/global.c]
6663         Added stub for MemManInfo().
6664
6665         * [objects/text.c]
6666         Added stub for GetTabbedTextExt().
6667
6668         * [miscemu/*]
6669         Changed all references to registers. Please don't access
6670         the context structure.
6671         fix for GetSystemTime() by <jspeter@birch.ee.vt.edu> added.
6672
6673         * [misc/lstr.c]
6674         Fixed bug in AnsiUpper() & AnsiLower().
6675
6676         * [misc/winsocket.c]
6677         bugfix in getsockopt()/setsockopt(): winsock uses different values
6678         than unix.
6679
6680         * [objects/dib.c]
6681         Added DIB_SetImageBits_RLE[48] to support compressed bitmaps.
6682
6683 Mon Aug  8 21:12:33 1994  David Metcalfe <david@prism.demon.co.uk>
6684
6685         * [controls/edit.c]
6686         Added support for WM_COPY, WM_CUT and WM_PASTE messages.
6687
6688         * [windows/dialog.c] [windows/defdlg.c] [include/dialog.h]
6689         Modified dialog code to create new heap for edit controls
6690         unless DS_LOCALEDIT style is set.
6691
6692 Thu Aug  4 18:50:56 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6693
6694         * [controls/button.c] [controls/edit.c] [controls/static.c]
6695         Removed unneeded GlobalUnlock() calls.
6696
6697         * [controls/menu.c] [include/menu.h]
6698         Lots of changes, fixed a lot of old bugs and introduced a lot of
6699         new ones :-)
6700         - Changed message loop to use MSG_GetInternalMessage().
6701         - Fixed a bug that caused the main window to lose activation when
6702           displaying a menu.
6703         - Correctly send initialisation messages (WM_INITMENUPOPUP).
6704         - Implemented EndMenu() and LookupMenuHandle().
6705         - Changed internal structures to be as compatible as possible with
6706           MS-Windows.
6707         - Allocated everything on the USER heap instead of the global heap.
6708         - Prefixed all internal function names with MENU_ and declared
6709           them static.
6710         - Moved "About Wine..." handling to NC_HandleSysCommand().
6711         - Multi-line menus should now work correctly.
6712
6713         * [loader/resource.c] [objects/bitmap.c]
6714         Added the possibility to create OEM bitmaps directly as X bitmaps.
6715
6716         * [objects/dcvalues.c] [windows/dc.c]
6717         Fixed GetDCOrg() to return screen coordinates.
6718
6719         * [windows/message.c]
6720         Fixed double-click checks when the message is not removed from the
6721         queue.
6722         Fixed MSG_GetInternalMessage() to send WM_ENTERIDLE messages.
6723
6724         * [windows/nonclient.c]
6725         Bug fix in system menu hit-test calculation.
6726         A few changes for new menu functions.
6727
6728 Thu Aug 11 17:51:02 1994  Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
6729
6730         * [controls/edit.c]
6731         Bug fix in Edit_NCCreateMessage
6732         es->textlen was being used before being set
6733
6734         * [controls/menu.c]
6735         Bug fix in MENU_DrawMenuItem
6736         don't try to write text if NULL pointer passed
6737
6738 ----------------------------------------------------------------------
6739 Thu Aug  4 07:18:02 1994  Michael Patra  <micky@marie.physik.tu-berlin.de>
6740
6741         * [windows/message.c]
6742         Implemented WaitMessage() (USER.112).
6743
6744         * [if1632/user.spec]
6745         Added WaitMessage.
6746
6747         * [windows/defwnd.c]
6748         WM_ERASEBKGND: Added support for hbrBackground=COLOR_xxx.
6749
6750         * [miscemu/int{13,21,2a}.c]
6751         * [miscemu/Imakefile]
6752         * [signal/loader.c]
6753         Added a few basic disk information and diagnostic functions to
6754         prevent programs using this function from crashing. All drives
6755         are claimed to be remote ones, so direct I/O isn't allowed.
6756
6757         * [controls/edit.c]
6758         EDIT_WriteText(): Added code to correctly erase the remaining space
6759         of the edit-control if the size of the control has changed sinced it's
6760         creation.
6761
6762 Tue Jul 26 22:05:54 MET DST 1994 Erik Bos <erik@hacktic.nl>
6763
6764         * [if1632/mouse.spec]
6765         Added mouse.dll entry, no functions.
6766
6767         * [loader/resource.c]
6768         Bug fix in AccessResource(). 
6769
6770         * [misc/keyboard.c], added [include/keyboard.h]
6771         Changed functions to return more useful values.
6772
6773         * [windows/dialog.c]
6774         Hacked DIALOG_GetControl() to support resources which
6775         have 0xff00 - 0xffff as id. ** Needs to be done properly by
6776         someone who knows the NE fileformat **
6777
6778 Jul 29, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6779
6780         * [windows/event.c]
6781         Add new stub for EnableHGardwareInput() function.
6782
6783         * [windows/message.c]
6784         Add coding for HWND_BROADCAST in PostMessage().
6785
6786         * [misc/file.c]
6787         Add coding for OpenFile() also search in WindowPaths.
6788
6789         * [misc/mmsystem.c]
6790         * [misc/audio.c]
6791         * [misc/mmaux.c]
6792         * [misc/mcicda.c]
6793         Change #include "linux/soundcard.h" by #include "sys/soundcard.h"
6794         Add coding in MMIO functions. Now, mmioDescend() can find WAV chunks.
6795         SndPlaySound & MCI_ELEMENT now use MMIO and adjust to proper formats.
6796 ----------------------------------------------------------------------
6797 Mon Jul 18 23:55:13 MET DST 1994
6798
6799         * [if1632/call.S]
6800         CallTo16(): added `mov %eax,%edx' just before lcall,
6801         to make sure that DX contain the DLL's hinstance when
6802         initialised.
6803
6804         CallTo32_16() added, equal to CallTo32() except for
6805         one thing: it saves DX and 
6806
6807         * [tools/build.c]
6808         Added some code to support 16 and 32 bit return values.
6809
6810         * [1632/{kernel,user}.spec]
6811         Changed most of the `pascal' style to pascal_16 when
6812         function returned a 16bit value.
6813
6814 Tue Jul 19 18:40:25 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6815
6816         * [controls/menu.c]
6817         Reorganized sizing and drawing code to implement multi-line menus.
6818         Implemented MENUBREAK style.
6819         Use system colors to draw menus.
6820
6821         * [objects/color.c]
6822         Bug fix in COLOR_IsSolid().
6823
6824         * [objects/font.c]
6825         Bug fix in FONT_GetMetrics(): calculate average character width
6826         only on existing chars (dialogs look much better).
6827
6828         * [objects/text.c]
6829         Bug fix in DrawText(): use text color to underline mnemonic.
6830
6831         * [windows/nonclient.c]
6832         Changed WM_NCHITTEST handling to cope with multi-line menu bars.
6833
6834         * [windows/syscolor.c]
6835         Added system objects for menu colors.
6836
6837 Mon Jul 18 19:32:08 PDT 1994  Andrew Lagodzinski  (andrew@netcom.com)
6838
6839         * [controls/menu.c]
6840         Fixed bug in SelectPrevItem that caused seperators to not be
6841         skipped when using the up arrow key.
6842
6843 ----------------------------------------------------------------------
6844 Thu Jul 14 17:50:45 1994  Bob Amstadt  (bob@pooh)
6845
6846         * [Configure]
6847         Autodetects Linux version (if running Linux).
6848
6849         * [loader/signal.c]
6850         New signals for Linux.
6851
6852         * [loader/ldtlib.c]
6853         New structure field in sys call.
6854
6855 Sun Jul 10 19:31:34 1994  Olaf Flebbe  (olaf@dragon)
6856
6857         * [load/resource.c] 
6858           fixed Memory (Resource) Leak.
6859
6860         * [load/main.c] 
6861           fixed a printf.
6862
6863 Tue Jul 12 18:50:34 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6864
6865         * [controls/desktop.c]
6866         Implemented desktop wallpaper (only 16 colors for now).
6867
6868         * [controls/menu.c] [windows/nonclient.c]
6869         Preliminary work to allow multi-line menus.
6870
6871         * [misc/main.c]
6872         No backing store on desktop window (not useful).
6873
6874         * [objects/text.c]
6875         A few fixes to DrawText() to make underlines under mnemonic
6876         letters to look better.
6877
6878         * [windows/graphics.c]
6879         More fixes to GRAPH_DrawArc(), and some fixes to Polygon().
6880         Implemented PolyPolygon() (partially working).
6881
6882         * [windows/winpos.c]
6883         New function WINPOS_SendNCCalcSize().
6884         Cleaned up SetWindowPos() and added preliminary support for
6885         multi-line menus.
6886
6887 Mon Jul 11 19:15:51 1994  Miguel de Icaza  (miguel@sphinx)
6888
6889         * [controls/edit.c]
6890         Changes to work as a library.
6891
6892         * [if1632/callback.c] 
6893         Ifdefed module.
6894
6895         * [if1632/relay.c]
6896         Changes to allow linking with WineLib.
6897
6898         * [include/windows.h]
6899         Added macro WINELIB_UNIMP
6900
6901         * [loader/library.c]
6902         When compiling WineLib, GetProcAddress is not implemented yet.
6903
6904         * [loader/main.c]
6905         Added empty InitDLL when using WineLib.
6906
6907         * [loader/ne_image.c]
6908         Some parts of the loader are needed for WineLib, ifdefed correctly
6909
6910         * [misc/{audio.c,mcicda.c,mmaux.c,mmsystem.c]
6911         Disable compilation of module when compiling WineLib.
6912
6913         * [toolkit/heap.c]
6914         Fixed small bug.  When passed an invalid handle WineLib would
6915         crash, now return NULL.
6916
6917         * [toolkit/winmain.c]
6918         Call CreateNewTask in _WinMain.
6919
6920 Sun Jul 10 09:08:02 1994  David Metcalfe <david@prism.demon.co.uk>
6921
6922         * [controls/edit.c] [controls/widget.c]
6923         More changes to improve compatibility with Windows' edit
6924         control.  Finished off tab stop support.
6925
6926 Mon Jul 11 21:05:02 MET DST 1994  Erik Bos <erik@hacktic.nl>
6927
6928         * [if1632/relay.c]
6929         # of ordinals in shell.dll changed to 103.
6930
6931         * [loader/signal.c]
6932         sti, cli will now be ignored.
6933
6934         * [objects/brush.c]
6935         Added stub for GetSysColorBrush().
6936
6937 ----------------------------------------------------------------------
6938 Sun, 3 Jul 1994 20:15:56 +0100 (BST)  David Metcalfe <david@prism.demon.co.uk>
6939
6940         * [controls/edit.c]
6941         Bug fixes and tidying up.  Preliminary tab stop support
6942         (doesn't work yet).
6943
6944         * [windows/dialog.c]
6945         Reversed order of buttons in CheckRadioButtons so that all
6946         buttons are now displayed.
6947
6948 Tue Jul  5 18:30:24 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
6949
6950         * [include/options.h] [misc/main.c] [windows/win.c]
6951         Removed nosaveunders option, replaced by handling
6952         the CS_SAVEBITS flag.
6953
6954         * [windows/class.c]
6955         Modified the fix for negative size in class extra bytes to
6956         avoid modifying the caller's data.
6957
6958         * [windows/dc.c]
6959         Bug fix: system font must be a proportional font.
6960         Fixed a bug that caused the default pen to not be selected
6961         correctly in a DC.
6962
6963         * [windows/graphics.c]
6964         Bug fix in GRAPH_DrawArc(). Thanks to Adriano Azevedo for
6965         noticing it.
6966
6967         * [windows/painting.c]
6968         Removed incorrect selecting of default objects in BeginPaint()
6969         (no longer needed because of the fix in dc.c).
6970
6971 Jul 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6972
6973         * [misc/mmsystem.c]
6974         * [misc/audio.c]
6975         Add more code to interface '/dev/dsp'.
6976
6977         * New file [misc/mcicda.c]
6978         Create an MCI_DEVTYPE_CD_AUDIO driver connected to '/dev/sbpcd'.
6979
6980         * New file [misc/mmaux.c]
6981         Stubs to make a future driver connected to '/dev/mixer'.
6982
6983         * [windows/win.c]
6984         Temporary patch to CreateWindowEx() for reseting negative
6985         coordinates to 0,0 ; because 'soundrec.exe' give negative values
6986         and I need it to work on MMSYSTEM ... :-)
6987
6988         * [miscemu/int2f.c]
6989         add a stub 'do_int2f_16' (function 0x16) for DMPI server.
6990
6991 Mon Jun 20 10:08:40 BST 1994  William Smith (wos@dcs.warwick.ac.uk)
6992
6993         * include/comm.h
6994         New file -- some definitions that were in comm.c now need to
6995         be shared with misc/dos_fs.c
6996
6997         * misc/comm.c
6998         Some definitions moved into include/comm.h
6999
7000         * misc/dos_fs.c (DOS_GetEquipment):
7001         Fixed error in equipment -- bitwise or of two values should
7002         be used instead of logical or.  Also added code to correctly
7003         report the number of serial and parallel devices.
7004
7005 ----------------------------------------------------------------------
7006 Mon Jun 20 14:26:41 1994  Bob Amstadt  (bob@pooh)
7007
7008         * [objects/bitmap.c]
7009         Allow negative bitmap sizes.
7010
7011 Sun Jun 19 12:00:04 1994  David Metcalfe <david@prism.demon.co.uk>
7012
7013         * [controls/edit.c]
7014         Improved selection display.  Added processing for WM_SETFONT,
7015         EM_REPLACESEL, EM_LINELENGTH, EM_UNDO, EM_EMPTYUNDOBUFFER,
7016         EM_GETHANDLE, EM_SETHANDLE messages.  Text buffer now stored on 
7017         application's local heap.
7018
7019         * [windows/graphics.c]
7020         Corrected bug in Rectangle().  XFillRectangle has the same
7021         width as Rectangle, but XDrawRectangle is one pixel wider
7022         for the same co-ordinates.
7023
7024         * [memory/heap.c] [include/heap.h]
7025         Added HEAP_LocalSize function.
7026
7027         * [windows/event.c] [windows/keyboard.c]
7028         Improvements to KeyStateTable and addition of AsyncKeyStateTable.
7029         Added supporting code to GetKeyState and GetAsyncKeyState and
7030         merged mouse button states into GetKeyboardState.
7031
7032         * [loader/resource.c] [include/accel.h]
7033         Added recognition of SHIFT, CONTROL and ALT keys to
7034         TranslateAccelerator.
7035
7036         * [objects/metafile.c] [objects/font.c] [objects/bitblt.c]
7037         A bit more metafile support.
7038
7039 Sun Jun 19 17:29:00 MET DST 1994  Erik Bos (erik@hacktic.nl)
7040
7041         * [loader/resource.c]
7042         SizeofResource() and AllocResource() added, AccessResource() updated.
7043
7044         * [if1632/kernel.spec]
7045         FreeLibrary() used for FreeModule().
7046
7047         * [windows/graphics.c]
7048         Rectangle(): swap left & right corners when right < left,
7049         swap top & bottom when botton < top.
7050
7051 Jun 19, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7052
7053         * [controls/combo.c]
7054         Fix bug in window style of the associated listbox.
7055
7056         * [controls/menu.c]
7057         Skip separators in keyboard navigation by using new internal 
7058                 functions SelectPrevItem() & SelectNextItem(),
7059
7060         * [misc/profile.c]
7061         Bug fix in GetPrivateProfileInt(), was limited to 4 digit,
7062                 IntBuf must be alloc to (5+1)=6. char instead of 5.
7063
7064         * [misc/main.c]
7065         Put code in functions SetEnvironment() & GetEnvironment().
7066
7067         * [misc/shell.c]
7068         Start putting some code in ExtractIcon() function.
7069
7070         * [misc/mmsystem.c]
7071         Some code for MMTimer functions & timers list.
7072
7073         * [miscemu/int31.c]
7074         Few stubs for DPMI interrupt calls. Nothing work yet.
7075
7076 Mon Jun 20 07:37:43 EDT 1994    John Richardson (jrichard@cs.uml.edu)
7077
7078         * include/win.h (tagWND):
7079         Added icon fields icon, hIcon and rectClientSave to 
7080         the tagWND struct.
7081
7082         * windows/Imakefile
7083         Added icon.c to the list of files to compile
7084
7085         * windows/dce.c (GetDCEx):
7086         Added some checks for iconic mode and pass icon window as drawable,
7087         not the real window.
7088
7089         * windows/defwnd.c (DefWindowProc)
7090         Added PAINTICON default windows procedure.
7091
7092         * windows/event.c (EVENT_Expose)
7093         Added check for iconic window expose. If iconic window is exposed
7094         send a WM_PAINTICON message
7095
7096         * windows/icon.c 
7097         New file.  ICON_Iconify, ICON_findIconFromPoint, ICON_Deiconify.
7098
7099         * windows/mdi.c (DefMDIChildProc)
7100         Test for IsIconic during a SC_RESTORE, this doesn't work yet.
7101
7102         * windows/message.c (hardware_event)
7103         Looks for icon as well as window now.
7104
7105         * windows/nonclient.c (NC_HandleSysCommand, NC_DoNCPaintIcon)
7106         Added iconify/deiconify in NC_HandleSysCommand, new function
7107         NC_DoNCPaintIcon which paints an icon.
7108
7109         * windows/painting.c (BeginPaint)
7110         Made a BeginPaint select the STOCK_BLACK_PEN, STOCK_WHITE_BRUSH,
7111         and STOCK_SYSTEM_FONT objects since this is (hopefully) default
7112         windows behavior.
7113
7114         * windows/win.h (CreateWindowEx)
7115         Set the default background color of a window to be white.
7116         Create icon window, turn off MINIMIZE if it is on, since
7117         I don't know what to do with it as of yet... register
7118         the icon with the hwnd of its window so we can identify where
7119         icon messages are coming from.
7120
7121 Mon Jun 20 10:15:59 1994  Miguel de Icaza  (miguel@sphinx)
7122
7123         * windows/event.c: Added a hack to define XPointer when using
7124         X11R4. 
7125
7126         * toolkit/hello.c: Test application for WineLib. To compile you'll
7127         need: gcc -Iinclude -DWINELIB -g hello.c -c, and to link you'll
7128         need: gcc hello.o libwine.a -lX11 -L/usr/openwin/lib -lm 
7129
7130         * toolkit/heap.c: Extended the size of the block size per chunk.
7131
7132         * misc/stress.c (GetFreeFileHandles): Fixed typo.
7133
7134         * misc/main.c (main): Changes to allow compilation under SunOS. 
7135
7136         * loader/library.c: Changed some ifdefs to compile WineLib.
7137
7138 ----------------------------------------------------------------------
7139 Tue Jun 14 08:09:14 1994  Bob Amstadt  (bob@pooh)
7140
7141         * loader/selector.c (GetCurrentPDB): 
7142         Added trivial function GetCurrentPDB() which returns the program
7143         segment prefix selector.
7144
7145         * memory/heap.c (HEAP_Free): 
7146         If free list is empty, make the freed block the free list.
7147
7148 Fri Jun 10 07:56:49 1994  Bob Amstadt  (bob@pooh)
7149
7150         * controls/edit.c (EDIT_SetTextMsg): 
7151         Do not append a newline at the end of the last line.
7152
7153         * windows/event.c (SetCapture): 
7154         Set winHasCursor if mouse capture succeeds.
7155
7156 Jun 13, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7157
7158         * [controls/listbox.c]
7159         Fix bug in listbox : InsertString should call AddString if -1.
7160
7161         * [controls/menu.c]
7162         New function GetMenuState().
7163
7164         * [controls/scroll.c] [windows/nonclient.c]
7165         Try to make ShowScrollBar() recalc NC_ regions. Not finished !
7166
7167         * [objects/text.c]
7168         Add Stub for TabbedTextOut(), which temporarely call Textout().
7169
7170         * [windows/keyboard.c] [windows/event.c]
7171         New function GetKeyBoardState() with an KeyStateTable array
7172                 & associated handling in function EVENT_key().
7173
7174 Mon Jun 13 16:45:24 MET DST 1994 (erik@hacktic.nl)
7175
7176         * [controls/menu.c]
7177         IsMenu() added.
7178
7179         * [loader/library.c]
7180         ModuleFirst(), ModuleNext(), ModuleFindName(), ModuleFindHandle()
7181         added.
7182
7183         * [object/gdiobj.c]
7184         IsGDIObject() added.
7185
7186         * [miscemu/int2[56].c]
7187         bugfix: both didn't leave flags pushed on 16bit-stack.
7188         (winfile gets a bit further)
7189
7190         * [miscemu/int16.c]
7191         Added (empty).
7192
7193 Sat Jun 11 22:56:48 1994 Jon Tombs (jon@esix2.us.es)
7194         * windows/event.c:
7195         Added code to drop redundant motion Events in the XEvent queue.
7196
7197 Thu Jun  9 10:55:55 MET DST 1994  Jochen Hein ( Hein@Student.TU-Clausthal.de )
7198
7199         * [misc/main.c misc/message.c include/texts.h]
7200         Removed the text-constants from message.c into variables
7201         which may be changed from X-resources.
7202
7203         * [misc/main.c misc/message.c]
7204         added <locale.h> and setlocale() to main.c, used toupper() in message.c
7205
7206 Mon, 13 Jun 94 09:41:16 -0500 Paul Bramel <paulbr@comm.mot.com>
7207
7208         * controls/button.c ( [CR]B_LButton* ) 
7209         left rc.right at full window width so click on label also 
7210         activates the control (MSWin behavior)
7211
7212 Sat Jun 11 19:05:40 1994  Olaf Flebbe  (flebbe@tat.physik.uni-tuebingen.de)
7213
7214         * include/windows.h:
7215           functions pointers can not be packed.
7216           (annoying warnings with forthcomming gcc-2.6.x)
7217         
7218         * loader/main.c (InitDLL): 
7219           Fixed a printf statement. (for control.exe) 
7220
7221           (InitializeLoadedDLLs): 
7222           deleted shadow definition of  *wpnt.
7223           (Breaks many programs, because now COMMDLG will be
7224            initialized :-(
7225
7226         * windows/win.c (SetWindowText): 
7227           added missing breaks; (PENSATE starts) 
7228
7229         * windows/graphics.c (FloodFill): 
7230           Proper boundarys. (BANGBANG starts) FloodFile_rec should
7231           be rewritten.
7232
7233         * objects/font.c (FONT_GetMetrics): 
7234           TYPO: use font->perchar only if it is defined. (WRITE starts)
7235
7236 Sun June 12, Peter Broadhurst (pbr@ua.nwl.ac.uk)
7237         controls/scroll.c:
7238         Fixes for improved behaviour when dragging thumb;
7239         Added SB_THUMBPOSITION message when thumb is released.
7240
7241 ----------------------------------------------------------------------
7242 Tue Jun  7 08:41:27 1994  Bob Amstadt  (bob@pooh)
7243
7244         * loader/selector.c (FixupFunctionPrologs): 
7245         New function to fixup loaded DLL function prologs.  It replaces the
7246         do nothing code with code that loads DS with the appropriate data
7247         segment for the DLL.
7248
7249         * misc/cursor.c (LoadCursor): 
7250         Disabled cursor loading from .EXE or .DLL.  The code needs to handle
7251         the possibility of multiple cursors in a single directory.  Also,
7252         it should check to see if the cursor is the right size.
7253
7254         * objects/font.c (EnumFonts): 
7255         Checked for lpLogFontList[i] == NULL
7256
7257         * objects/gdiobj.c (SetObjectOwner): 
7258         Removed stub.  Replaced with simple return in gdi.spec.  This
7259         function is not defined for the retail version of Windows.
7260
7261         * memory/heap.c (WIN16_LocalHandleDelta): 
7262         New function.  This is really a dummy that imitates the proper
7263         return values.
7264
7265         * loader/library.c (GetProcAddress): 
7266         Fixed definition of IS_BUILTIN_DLL() macro.
7267
7268 Mon Jun  6 18:15:40 1994  Bob Amstadt  (bob@pooh)
7269
7270         * miscemu/int21.c (SeekFile): 
7271         Needed to return current position in DX:AX.
7272
7273         * windows/utility.c (windows_wsprintf): 
7274         Added support for '#' in format, and fixed bug with "ptr" being
7275         incremented too many times.
7276
7277         * miscemu/int21.c (OpenExistingFile): 
7278         Add code to handle opening files read-only and write-only.
7279
7280         * loader/wine.c:
7281         Segment fixups now done in LoadImage instead of _WinMain.  This
7282         is necessary to support LoadLibrary().
7283
7284 Sun Jun  5 17:34:24 1994  Erik Bos (erik@hacktic.nl)
7285
7286         * [loader/*]
7287                 - fixed: GetModuleHandle() sometimes returned
7288                   a wrong handle.
7289                 - don't init dlls when cs == 0 (lzexpand, doesn't
7290                   seem to have a init function)
7291                 - LoadLibrary & LoadImage now return error instead
7292                   of stopping wine.
7293                 - moved most of NE-functions into one file.
7294                 - LoadLibrary() uses w_files list instead of its
7295                   own list.
7296                 - NE exectables are now fixed-up and initialised when
7297                   loaded instead of only once before calling InitTask.
7298
7299         * [miscemu/int15.c] [miscemu/int31.c]
7300         Added.  
7301
7302         * [loader/selector.c]
7303         Stubs added for {Get|Set}SelectorLimit(), {Get|Set}SelectorBase().
7304
7305         * [misc/main.c]
7306         Stub added for IsRomModule().
7307
7308         * [miscemu/int21.c]
7309         Some cleanup, added heap for returning data.
7310
7311 Jun 6, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7312
7313         * [tools/build.c]
7314         Change MAX_ORDINALS     define to higher value, 1299 entries.
7315         (MMSYSTEM doesn't have succesive numbers, some are around 1200).
7316
7317         * [windows/utility.c]
7318         Bug fix in windows_wsprintf(), (twice increments ...).
7319
7320         * [windows/winpos.c]
7321         Bug fix in SetWindowPos(), redraw was done if flag
7322                 was set to SWP_NOREDRAW while SWP_SHOWWINDOW).
7323
7324         * [misc/message.c] [controls/combo.c]
7325         Add an InvalidateRect() in WM_SHOWWINDOW to statisfy the new 'saveunder'.
7326
7327         * [windows/win.c]
7328         In CreateWindowEx(), do SetMenu() calls after window creation,
7329                 just before sending to WM_NCCALCSIZE.
7330
7331         * [controls/menu.c]
7332         In function SetMenu(), now use SetWindowPos() with 
7333                 flags SWP_FRAMECHANGED to readjust menu area.
7334         Function MenuBarCalcSize() redone.
7335
7336 Sun May 29 11:08:24 1994  David B. Thomas  (dt@yenta.abq.nm.us)
7337
7338         * [objects/text.c]
7339         Fixed problems associated with DT_WORDBREAK flag.  String length
7340         was not being properly decremented when lines were folded, and
7341         wrapping was not performed when DT_NOCLIP and DT_NOPREFIX were
7342         both on in addition to DT_WORDBREAK.  Windows does wrapping in
7343         this case, and now so does wine.
7344
7345 Sun Jun  5 19:17:49 1994  Olaf Flebbe  (olaf@dragon)
7346
7347         * [edit.c]
7348         cp1 was uninitialized iff lineno == 0
7349
7350         *  FindFile tests for existance of file even if a full
7351            filename was supplied. What about unix file names?
7352
7353         * [controls/listbox ]
7354         wndPtr was uninitialized for LB_SETTOPINDEX
7355
7356         * [misc/property.c]     
7357         Do not free lpProp. Is it really allocated by malloc?
7358         {edited by Bob Amstadt: changed free() to GlobalFree()}
7359
7360 ----------------------------------------------------------------------
7361 Sat May 28 12:03:23 1994  Bob Amstadt  (bob@pooh)
7362
7363         * miscemu/int21.c (OpenExistingFile): 
7364         OpenExistingFile needed to return handle in AX register instead
7365         of the BX register.
7366
7367         * miscemu/int21.c (ioctlGetDeviceInfo): 
7368         Added a little code to give a fake result for normal files.
7369
7370 Wed May 25 21:55:38 1994  Bob Amstadt  (bob@pooh)
7371
7372         * [memory/global.c]
7373         return value from GlobalSize was completely wrong.
7374
7375         * [miscemu/int21.h]
7376         fixed bug in FindFirst.  Directory pointer (dp) was not placed in
7377         dta correctly.
7378
7379         * [tools/build.c]
7380         fixed creation of pop.h to guarantee that flags are restored correctly.
7381
7382         * [misc/comm.c]
7383         changed all occurance of strncmp() to strncasecmp().
7384         BuildCommDCB() should not require that OpenComm() be called first.
7385
7386         * [loader/selector.c]
7387         Heap initialized to size of full segment less stack size and 
7388         automatic data size.
7389
7390 Sat May 28 09:14:33 1994  Rick Sladkey  (jrs@world.std.com)
7391
7392         * [controls/listbox.c]
7393         Correct typos in ListBoxResetContent where lpls variable is
7394         used where lsls2 variable is meant.  Don't call USER_HEAP_FREE
7395         twice on the same handle if hData and hMem are the same.
7396
7397         * [debugger/opcodes/i386-dis.c]
7398         Add new name array names_rmw for table driven decoding of the
7399         16-bit mod/rm field.  Omit large case statement in OP_E and
7400         replace with array reference to match existing coding style.
7401         Add new static variable machine with value 286 or 386 to
7402         correctly decode mod/rm field in either 16 or 32 bit modes.
7403         Set it in print_insn_i{2,3}86.  In OP_E use it to decide how
7404         to decode mod/rm.  While the code was correct for 16 bit code,
7405         it was improperly decoding mod/rm fields on word prefixed
7406         32 bit instructions.
7407
7408         * [debugger/debug.l]
7409         Recognize new token ABORT.   Recognize single letters 'p'
7410         and 'q' as tokens.
7411
7412         * [debugger/dbg.y]
7413         Add new token ABORT.  Allow print command to be invoked by
7414         'p' and quit command by 'q', ala GDB.  Change lots of '};'
7415         to just '}'.  Add static dummy_regs to wine_debug so that
7416         wine_debug(0, NULL) doesn't core dump with qmagic.
7417
7418         * [debugger/info.c]
7419         Correct syntax of break command in helptext and omit former
7420         comment about probable bugginess of the disassembly since it
7421         is now correct.  Change fprintf of first backtrace stack
7422         frame to match that of the second and subsequent frames.
7423
7424         * [loader/selector.c]
7425         Change construction of command line in CreatePSP from creating
7426         a string that looks like "arg1 arg2 \r" to "arg1 arg2".  A DOS
7427         PSP command line looks like " arg1 arg2\r" with the length not
7428         including the trailing "\r" but that is not how Windows does it.
7429
7430         * [loader/library.c]
7431         Change uses of %s to print strings in GetModuleHandle to %x so
7432         that string IDs don't cause a core dump with qmagic.  Handle
7433         converting a string id to a literal module handle.  For
7434         example, GetModuleHandle((LPSTR) 0x57) now returns 0x57 if
7435         it is a real module handle.
7436
7437         * [misc/message.c]
7438         In MessageBox, translate a NULL title argument to the string "Error".
7439
7440         * [misc/profile.c]
7441         In GetSetProfile translate a NULL Default argument to "".  Any
7442         caller whose Default argument is NULL is buggy, but CHARMAP does it
7443         anyway.
7444
7445         * [objects/font.c]
7446         Add NULL pointer checks in EnumFontFamilies to prevent core dumps.
7447
7448 Sat May 28 20:01:51 1994 Jon Tombs (jon@gtex02.us.es) 
7449
7450         * New options/resourses nosaveunders and nobackingstore.  By 
7451         default backingstore and saveunders are now enabled, these use 
7452         more memory but avoids those slow (sometimes multiple) redraws 
7453         caused be exposure events.
7454
7455 May 30, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7456
7457         * [misc/driver.c] New file
7458         Skeleton for 'Installable Wine Drivers' functions. :-)
7459         * [misc/audio.c] New file
7460         Skeleton for basic 'Audio Driver' functions.
7461         * [misc/network.c] New file
7462         Stubs for few networking functions.
7463
7464         * [misc/mmsystem.c]
7465         More coding ... a dust in a galaxy ...
7466         * [misc/shell.c]
7467         Some coding for 'RegXXX' functions ... a dust in the wind ...
7468
7469         * [misc/profile.c]
7470         Bug fix in GetSetProfile(), bad enumeration if KeyName == NULL.
7471
7472         * [objects/gdi.c]
7473         New function CreateDiscardableBitmap(), it just calling 
7474         CreateCompatibleBitmap() for now. It's get 'clock.exe' running ! :-)
7475
7476         * [controls/listbox.c]
7477         * [controls/combo.c]
7478         New font member assigned to SYSTEM_FONT as default.
7479         Added processing for WM_SETFONT message;
7480
7481
7482 Tue May 31 20:34:25 EDT 1994  John Richardson <jrichard@cs.uml.edu>
7483
7484         * [windows/event.c]
7485         Added AsyncMouseButtonsStates array for GetAsyncKeyState.
7486
7487         * [windows/keyboard.c]
7488         Implemented beginning of GetAsyncKeyState.
7489
7490 Wed May 25 23:35:03 1994  David Metcalfe <david@prism.demon.co.uk>
7491
7492         * [objects/metafile.c] [include/metafile.h]
7493           [windows/mapping.c] [objects/clipping.c] [objects/bitblt.c]
7494           [windows/dc.c]
7495         Further metafile support.
7496
7497 ----------------------------------------------------------------------
7498 Mon May 23 15:07:36 1994  Bob Amstadt  (bob@pooh)
7499
7500         * [loader/selector.c]
7501         Allocate heap and stack segments as 64k.
7502
7503 Sat May 21 01:15:49 1994  Rick Sladkey  (jrs@world.std.com)
7504
7505         * [loader/selector.c]
7506         Correct typos where memcpy is used instead of memset.
7507
7508         * [loader/resource.c]
7509         Allow for legitimate cases where biSizeImage is 0 in LoadIcon
7510         by calculating the value when the bitmap is not compressed.
7511
7512         * [miscemu/int21.c]
7513         Fix NULL dereference caused by superfluous DOS_closedir in FindNext.
7514
7515         * [loader/resource.c]
7516         New function type_match to handle string resource types as
7517         well as IDs.  In addition, compare only low 4 bits of type_id
7518         when both numbers are IDs so that 0x0002 matches 0x8002.
7519         In FindResourceByNumber and FindResourceByName use type_match
7520         instead of comparing numbers.  In FindResource handle the
7521         "#number" syntax and empty strings in both the resource and
7522         type names.
7523
7524 Mon May 23 00:48:25 1994  Rick Sladkey  (jrs@world.std.com)
7525
7526         * [windows/dialog.c]
7527         Fix inadvertent printing of string IDs as strings.
7528
7529 May 23, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7530
7531         * [controls/menu.c]
7532         New functions GetMenuItemCount(), GetMenuItemID().
7533                 GetMenuString() & HiliteMenuItem().
7534         Bug fix in CheckMenuItem().
7535         Function SetMenu() now make client area recalc if menu removed.
7536
7537         * [windows/winpos.c]
7538         Bug fix in SetWindowPos(), no more XMapping or XConfiguring     of
7539                 windows with initial width or height equal zero.
7540
7541         * [objects/gdiobj.c]
7542         New function EnumObjects(), using new lpPenBrushList buildup
7543                 from calls to new function GDI_AppendToPenBrushList().
7544                 ('pbrush.exe' don't show its face yet ! ... :-( )
7545         New EMPTY STUB for function SetObjectOwner(),
7546                 ('mplayer.exe' call it via GetProcAddress() ...)
7547
7548         * [objects/font.c]
7549         New internal functions ParseFontParms() & InitFontsList().
7550         EnumFonts() & EnumFontFamilies() enumerates fonts (no more dummies).
7551         FONT_MatchFont now make retries to find closest-smallest font.
7552                 ('charmap.exe' can now show the differents fonts available)
7553
7554         * [windows/nonclient.c]
7555         Use small dos OBM_OLD_CLOSE button for MDI windows.
7556
7557         * [windows/graphics.c] [objects/bitmap.c]
7558         Start to remove obsolete globals such XT_screen ...
7559
7560         * [loader/library.c]
7561         Make function GetProcAddress() working also with builtin DLLs.
7562
7563 Tue May 24 20:18:02 1994  Erik Bos (erik@hacktic.nl)
7564
7565         * [if1632/system.spec] [if1632/toolhelp.spec]
7566         system.dll & toolhelp.dll added.
7567
7568         * [loader/library.c]
7569         Modified GetModuleFileName() to return the full
7570         filename.
7571         Added a check to LoadLibrary() to prevent loading
7572         built in dlls. (eg. user.exe)
7573         Added a check to FreeLibrary() to prevent built-in
7574         dlls from being freed.
7575         Modified GetProcAddress() to support builtin dlls.
7576
7577         * [loader/signal.c] [miscemu/int2f.c]
7578         Added => pifedit runs.
7579
7580         * [misc/dos_fs.c]
7581         Added a NULL-ptr check to DOS_closedir().
7582
7583 ----------------------------------------------------------------------
7584 Tue May 17 23:03:16 1994  Bob Amstadt  (bob@pooh)
7585
7586         * [windows/dce.c]
7587         Fixed bug with dce initialization that was causing dialog boxes to not
7588         be displayed.
7589
7590         * [if1632/callback.c]
7591         Better fix for bug found by Martin.
7592
7593 Sat May 14 19:48:39 1994  Rick Sladkey  (jrs@world.std.com)
7594
7595         * [ memory/heap.c ]
7596         Redirect HEAP_ReAlloc calls with NULL argument to HEAP_Alloc.
7597
7598 May 16, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7599
7600         * [objects/font.c]
7601         Make EnumFonts() calling a callback with dummy fonts ... :-)
7602
7603         * [objects/text.c]
7604         Add Empty Stub for ExtTextOut(), which temporarely call Textout().
7605
7606         * [if1632/callback.c]
7607         Temporarely go around bug in CallWindowProc(), you will see printfs.
7608
7609         * [controls/edit.c]
7610         Make EDIT controls focused by a mouse click.
7611
7612         * [misc/property.c]
7613         Bug Fix in function EnumProps(), better use of CallBack16().
7614
7615         * [misc/mmsystem.c]
7616         Basic Skelton's for MCI messages dispatching function.
7617
7618 Sun May 15 16:15:17 1994  Erik Bos (erik@hacktic.nl)
7619
7620         * [windows/utility.c]
7621         Added windows_wsprintf() for the emulator, wsprintf() is
7622         for libwine.
7623
7624 Sat May 14 22:16:40 1994  Rick Sladkey  (jrs@world.std.com)
7625
7626         * [misc/cursor.c]
7627         Fix pointer problems in LoadCursor leading to heap corruption.
7628
7629         *  [ controls/menu.c ]
7630         Fix two NULL dereferencing bugs.
7631
7632 Sun May 15 20:07:48 1994  Rick Sladkey  (jrs@world.std.com)
7633
7634         * [objects/font.c]
7635         Fix NULL pointer dereferencing bug in GetCharWidth.
7636
7637         * [loader/resource.c]
7638         Fix under-allocation of memory in LoadAccelerators.
7639
7640         * [windows/class.c]
7641         Ignore negative sizes for extra fields in RegisterClass.
7642
7643 Sun May 15 06:35:03 1994  David Metcalfe <david@prism.demon.co.uk>
7644
7645         * [objects/metafile.c] [include/metafile.h] [include/windows.h]
7646           [objects/gdiobj.c] [objects/brush.c] [objects/pen.c]
7647           [objects/text.c] [objects/dcvalues.c] [windows/graphics.c]
7648           [windows/dc.c] [windows/mapping.c]
7649         Beginnings of metafile support.
7650
7651         * [misc/file.c]
7652         Corrected spelling of _lcreat.
7653
7654         * [controls/edit.c]
7655         Minor bug fixes.
7656 ----------------------------------------------------------------------
7657 May 9, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7658
7659         * [controls/scroll.c]
7660         Make thumbtrack button disappear if scroll box ratio < 3:1.
7661         Make arrow buttons rectangular if scroll box ratio < 2:1.
7662         Add code for SBS_TOPALIGN, SBS_BOTTOMALIGN, 
7663                                 SBS_LEFTALIGN & SBS_RIGHTALIGN.
7664         Bug fix in NC_CreateScrollBars(), no more bigbutt in calendar.exe... :-)
7665
7666         * [loader/library.c] [loader/task.c] [misc/exec.c]
7667         Continue playing around trying to get a second task running.
7668
7669         * [windows/mdi.c]
7670         Change OBM_CLOSE for OBM_OLD_CLOSE, a smaller dot button when maximized.
7671
7672         * [everywhere]
7673         Adding previous works of the Apr 25, 94.
7674
7675 Tue May 10 18:09:14 1994 Erik Bos (erik@trashcan.hacktic.nl)
7676
7677         * [if1632/mmsystem.spec] [misc/mmsystem.c] [include/mmsystem.h]
7678         Added Martin's mmsystem.dll stubs.
7679
7680         * [misc/sound.c]
7681         Added remaining stubs for sound.dll.
7682
7683         * [if1632/shell.spec] [misc/shell.c]
7684         Fixed prototypes (I found them in BC 4) and added ShellAbout()
7685         and AboutDlgProc().
7686
7687 ----------------------------------------------------------------------
7688 May 1, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7689
7690         * [loader/signal.c]
7691         Add XUngrabPointer() & XUngrabServer() in wine_fault().
7692
7693 Fri Apr 22 19:30:08 1994  Erik Bos (erik@trashcan.hacktic.nl)
7694
7695         * [objects/bitblt.c]
7696         color_stretch() rewritten to use ints only. *fast!*
7697         BLACKONWHITE & WHITEONBLACK stretchmodes redirected to
7698         use color_stretch().
7699
7700 Mon May  2 21:39:43 1994  Erik Bos (erik@trashcan.hacktic.nl)
7701
7702         * [controls/menu.c]
7703         SetSysMenu() added.
7704
7705         * [misc/cursor.c]
7706         GetCursor() added.
7707
7708         * [misc/main.c]
7709         SwapMouseButton() added, (NOP).
7710
7711         * [windows/win.c]
7712         GetDesktopHwnd() added.
7713
7714         * [if1632/*spec]
7715         Added not implemented functions defs as comment.
7716
7717         * [misc/winsocket.c]
7718         Change WSAGetXbyY() functions to non-blocking ones,
7719         Added WSAAsyncSelect(). 
7720         (WSA functions can't be canceled yet).
7721
7722 Wed Apr 20 23:58:58 1994  Scott A. Laird  (scott@curly)
7723
7724         * misc/profile.c: Fixed bug with GetIniFileName returning wrong
7725         path when given a simple file name.  Fixed GetSetProfile to allow
7726         enumerating all key names when KeyName is null.
7727
7728 Apr 25, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7729
7730         * [objects/bitblt.c]
7731         Add protection to BitBlt() & StretchBlt() for width or height = 0.
7732
7733         * [windows/nonclient.c]
7734         Avoid painting in NC_DoNCPaint() if IsWindowVisible().
7735         Simplify NC_TrackMouseMenuBar() because code moved to MenuFocusLoop().
7736
7737         * [windows/win.c]
7738         CreateWindowEx() & DestroyWindow() now call respectively
7739                 AddWindowToTask() & RemoveWindowFromTask().
7740         New empty stub for function AnyPopup().
7741
7742         * [loader/library.c]
7743         Bug Fix : GetModuleFileName() now return full path filename.
7744
7745         * [include/menu.h] [controls/menu.c]
7746         Add hText handle and remove obsolete MENUITEM struct members.
7747         Add a ReleaseCapture() in SetMenu() when menubar changed while captured.
7748         Add MenuMouseMove() MenuButtonUp() in function MenuFocusLoop().
7749
7750         * [misc/file.c]
7751         GetTempFilename() now create a file.
7752         _lcreate() use unix open (name, mode, perm), with perm=O666.
7753
7754         * [if1632/relay.c]
7755         Remove temporarly builtin SHELL.DLL, Add MMSYSTEM.DLL in builtin list.
7756
7757         * New file [misc/mmsystem.c]
7758         * New file [include/mmsystem.h]
7759         * New file [if1632/mmsystem.spec]
7760         Many, many empty stubs ... :-)
7761
7762 ----------------------------------------------------------------------
7763
7764 Wed Apr 20 14:53:35 1994  Bob Amstadt  (bob@pooh)
7765
7766         * [tools/build.c] [if1632/call.S] [if1632/Imakefile]
7767         Fixed bug for non-Linux systems.
7768
7769 Apr 18, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7770
7771         * [windows/win.c]
7772         Bug fixed in CreateWindowEx() : Now use SetMenu() for menubar setup.
7773         New empty stub for function SetSysModalWindow().
7774
7775         * [misc/exec.c]
7776         New empty stub for function ExitWindows().
7777
7778         * [objects/font.c]
7779         New empty stub for function EnumFonts().
7780
7781         * New file [misc/property.c]
7782         New functions RemoveProp(), GetProp(), SetProp() & EnumProps().
7783
7784         * New file [misc/shell.c]
7785         New empty stubs for function RegisterShellProc(), 
7786                         ShellExecute() & ShellProc().
7787
7788         * New files [loader/task.c] & [include/task.h]
7789         Move functions GetWindowTask(), GetNumTask(), EnumTaskWindows()
7790                 from 'loader/library.c'.
7791
7792         * [if1632/user.c] [if1632/kernel.c]
7793         Put Atoms functions entries.
7794
7795         * [controls/combo.c]
7796         New functions DirDlgSelectComboBox() & DirDlgListComboBox().
7797
7798         * [controls/listbox.c]
7799         New functions DirDlgSelect() & DirDlgList().
7800
7801 Sun Apr 17 20:57:59 1994  Erik Bos (erik@trashcan.hacktic.nl)
7802
7803         * [objects/test.c]
7804         GrayString() added.
7805
7806         * [if1632/callback.c]
7807         CallGrayStringProc() added.
7808
7809         * [if1632/relay.c] [if1632/mmsystem.spec]
7810         Added.
7811
7812         * [if1632/kernel.spec] [if1632/user.spec]
7813         Added forgotten specs for atom functions.
7814
7815 ----------------------------------------------------------------------
7816 Tue Apr 12 00:05:31 1994  Bob Amstadt  (bob@pooh)
7817
7818         * misc/spy.c (SpyInit): Added more message types
7819
7820         * [windows/mdi.c] [include/mdi.h]
7821         Maximizing and restoring child windows.
7822         Tiling of child windows.
7823
7824 Mon Apr 11 20:48:28 1994  Alexandre Julliard  (julliard@lamisun.epfl.ch)
7825
7826         * [windows/winpos.c]
7827         Revert focus and activation to previous window when hiding a window.
7828
7829         * [windows/syscolor.c]
7830         Implemented system color objects (brushes and pens created at
7831         SetSysColor() time for better performance).
7832
7833         * [windows/graphics.c] [windows/nonclient.c] [controls/button.c]
7834         Changed painting code to use system color objects.
7835
7836         * [windows/message.c]
7837         New function MSG_InternalGetMessage() for internal messages
7838         loops (e.g. for dialogs or menus).
7839
7840         * [windows/hook.c] [include/hook.h]  (New files)
7841         Beginning of the window hooks implementation.
7842
7843         * [windows/dialog.c]
7844         Use new function MSG_InternalGetMessage() in DialogBox().
7845
7846         * [if1632/callback.c]
7847         Added function CallHookProc().
7848
7849 Apr 11, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7850
7851         * [windows/event.c]
7852         Bug fix : WM_CHARs are sent to focused window like WM_KEY???.
7853
7854         * [misc/exec.c]
7855         Nothing much more than a stub for LoadModule(), I saw there a lot
7856                 to be done in that corner, I will come back later ...
7857
7858         * [loader/library.c]
7859         New functions GetWindowTask(), GetNumTask(), EnumTaskWindows() 
7860                         and associated modules & tasks linked-lists.
7861         (it's only an 'emerging bud', more to come next weeks).
7862
7863         * [loader/wine.c]
7864         Use LoadLibrary() instead of LoadImage() for 'sysres.dll'.
7865
7866         * [control/menu.c]
7867         You can now click outside menu region without problem.
7868         Keyboard navig more smootly, even if a child has the focus.
7869         Bug fix in InsertItem(), (bad linklist when insert point not found).
7870         change Realloc for Free & Alloc in ModifyItem().
7871         MF_STRING now set BLACK_PEN to fix bug of bad color of the underscores 
7872                 done by DrawText(), (maybe it should done in DrawText() itself ?).
7873
7874 Sun Apr 10 14:06:08 1994  Erik Bos (erik@trashcan.hacktic.nl)
7875
7876         * [misc/profile.c]
7877         .INI files will now be stored in / loaded from the windows dir
7878         if no path is supplied.
7879
7880         * [if1632/kernel.spec]
7881         Fixed GetDriveType's prototype.
7882
7883         * [if1632/winsock.spec] [include/winsock.h] [misc/winsocket.c]
7884         Fixed prototypes: winsock uses a word as socket handle not an int.
7885
7886         * [misc/winsocket.c]
7887         Added heap allocation for returned structures.
7888         Added non-blocking WSAAsyncGetXbyY() functions as blocking ones.
7889
7890         * [loader/wine.c]
7891         Added IsDLLLoaded(), used in LoadImage() to prevent loading
7892         a dll multiple times.
7893         Directory is added to wine's path when a fullpath is supplied when
7894         starting wine.
7895         LoadImage(): DLL filename used instead DLL's own internal name,
7896         fixes 'Bad DLL name' errors.
7897
7898 Sat Apr  9 08:26:03 1994  David Metcalfe <david@prism.demon.co.uk>
7899
7900         * [controls/edit.c] [controls/widgets.c]
7901         First release of edit control.
7902
7903 ----------------------------------------------------------------------
7904 Tue Apr  5 14:36:59 1994  Bob Amstadt  (bob@pooh)
7905
7906         * [include/mdi.h] [windows/mdi.c]
7907         Use WM_PARENTNOTIFY messages to activate children.
7908         Generate WM_CHILDACTIVATE messages.
7909         Beginnings handler for maxmized child window.
7910         Clean up when children are destroyed.
7911
7912         * [windows/message.c] [windows/nonclient.c] [windows/winpos.c]
7913         Removed code add 94/03/26.
7914
7915 Apr 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
7916
7917         * [control/menu.c]
7918         Make mouse menu navigation working again. :-))
7919         (be carefull, clicking outside menus (ie.: clientrect) 
7920         not resolved yet)
7921
7922         * [windows/nonclient.c]  [controls/scroll.c]
7923         Bugs fix in NCTrackScrollBars().
7924
7925         * [misc/dos_fs.c]
7926         Bug fix in 'ToDos()' in conversion for '/',
7927                 (example: '/window/' was translated to 'WINDOWs').
7928
7929         * [miscemu/int21.c]
7930         Function ChangeDir() extract possible drive before DOS_ChangeDir().
7931
7932         * [loader/library.c]  [loader/wine.c]
7933         Playing around moving function GetProcAddress() and put some code in.
7934
7935 Mon Apr  4 21:39:07 1994  Alexandre Julliard (julliard@lamisun.epfl.ch)
7936
7937         * [misc/main.c]
7938         Better explanation of command-line options.
7939
7940         * [objects/dib.c]
7941         Implemented SetDIBitsToDevice().
7942
7943         * [windows/dc.c]
7944         Bug fix in SetDCState().
7945
7946         * [windows/event.c]
7947         Removed WS_DISABLED handling (now done in message.c).
7948
7949         * [windows/message.c]
7950         Added sending a WM_PARENTNOTIFY message in MSG_TranslateMouseMsg().
7951         Use WindowFromPoint() to find the window for mouse events, taking
7952         into account disabled windows.
7953
7954         * [windows/painting.c]
7955         Bug fix in BeginPaint() to allow calling it at other times than
7956         on WM_PAINT (Solitaire needs it...)
7957
7958         * [windows/win.c]
7959         Implemented FindWindow().
7960         Rewritten EnableWindow() to behave more like Windows.
7961
7962         * [windows/winpos.c]
7963         Rewritten WindowFromPoint() to also search child windows.
7964
7965 Mon Apr  4 17:36:32 1994  Erik Bos (erik@trashcan.hacktic.nl)
7966
7967         * [include/int21.h] -> [msdos.h]
7968         renamed.
7969
7970         * [miscemu/int10.h] [miscemu/int25.h] [miscemu/int26.h] 
7971         new, added for int 10, 25 and 26.
7972
7973         * [miscemu/ioports.c]
7974         new, added to allow win apps to use ioports.
7975
7976         * [loader/signal.c]
7977         Added support for in, inb, out, outb instructions.
7978
7979 ----------------------------------------------------------------------
7980 Sun Mar 27 13:40:25 1994  Bob Amstadt  (bob@pooh)
7981
7982         * controls/menu.c (InsertMenu): Changed to use FindMenuItem().
7983
7984 Sat Mar 26 21:23:55 1994  Bob Amstadt  (bob@pooh)
7985
7986         * [windows/mdi.c]
7987         Window list properly updated.
7988
7989         * [windows/message.c]
7990         Call WINPOS_ChildActivate() when mouse pressed.
7991
7992         * [windows/nonclient.c]
7993         Use WINPOS_IsAnActiveWindow() instead of GetActiveWindow() in
7994         NC_HandleNCPaint().
7995
7996         * [windows/winpos.c]
7997         Created functions WINPOS_IsAnActiveWindow() and WINPOS_ActivateChild()
7998
7999 Thu Mar 24 14:49:17 1994  Bob Amstadt  (bob@pooh)
8000
8001         * controls/menu.c (DeleteMenu): Changed to use FindMenuItem
8002         (DeleteMenu): Many bug fixes.
8003
8004         * [controls/menu.c]
8005         Created function FindMenuItem().
8006
8007 Thu Mar 24 14:17:24 1994  Bob Amstadt  (bob@pooh)
8008
8009         * [windows/win.c]
8010         Removed incorrect MDI handling code from CreateWindowEx().
8011
8012         * [controls/menu.c]
8013         MF_STRING items needed to allocate a private copy of string.
8014
8015         * [controls/menu.c]
8016         Fixed buggy calls to GlobalFree().
8017
8018         * [memory/global.c]
8019         Eliminated some redundant code with function call.
8020
8021 Wed Mar 23 1994 Pentti Moilanen (pentti.moilanen@ntc.nokia.com)
8022
8023         * [windows/timer.c]
8024         timer list pointers looped in InsertTimer
8025
8026 Tue Mar 29 13:32:08 MET DST 1994  julliard@di.epfl.ch (Alexandre Julliard)
8027
8028         * [misc/cursor.c]
8029         A few changes for desktop window support.
8030
8031         * [misc/main.c]
8032         Added -depth option.
8033
8034         * [misc/rect.c]
8035         Yet another bug fix in SubtractRect().
8036
8037         * [objects/bitmap.c]
8038         Changes to use only one depth (specified with -depth)
8039         for color bitmaps.
8040
8041         * [objects/brush.c]
8042         Added support for dithered solid brushes.
8043
8044         * [objects/color.c]
8045         Use the same 20 system colors as in Windows.
8046         System palette initialisation now done in COLOR_InitPalette().
8047         Added support for a color mapping table to map logical color
8048         indexes to X colormap entries.
8049         Implemented GetNearestColor() and RealizeDefaultPalette().
8050
8051         * [objects/dib.c]
8052         Added support for color mapping table.
8053
8054         * [objects/dither.c]  (New file)
8055         Implemented solid color dithering.
8056
8057         * [objects/palette.c]
8058         Implemented GetSystemPaletteEntries() and SelectPalette().
8059
8060         * [windows/class.c]
8061         Make a copy of the menu name in RegisterClass().
8062
8063         * [windows/dc.c]
8064         Fixed device caps when using a desktop window.
8065         Added support for the color mapping table in DCs.
8066
8067         * [windows/event.c]
8068         Added ConfigureNotify handler on desktop window.
8069
8070         * [windows/message.c]
8071         Removed call to XTranslateCoordinates() on every mouse motion
8072         New function MSG_Synchronize() to synchronize with the X server.
8073
8074         * [windows/syscolor.c]
8075         Rewritten SYSCOLOR_Init() to read the system colors from WIN.INI.
8076
8077         * [windows/winpos.c]
8078         Added synchronization on window mapping. Solves the double redraw
8079         problem when starting Solitaire.
8080
8081 Mar 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8082
8083         * [control/menu.c]      * [windows/defwnd.c]
8084         Make keyboard navigation working with menubar,
8085         but temporarely inserted a bug in menubar mouse handling ... :-((
8086         (it will be fix next week !)
8087
8088         * [windows/defwnd.c]
8089         Connect VK_MENU to menubar navigation.
8090
8091         * [loader/library.c]
8092         GetModuleHandle() return 'fictive 0xF000+ handles' for built-in DLLs.
8093
8094 Sun Mar 20 22:32:13 1994 Erik Bos (erik@trashcan.hacktic.nl)
8095
8096         * [misc/main.c]
8097         Added Copy(). Added a check for `-h' to show usage.
8098
8099         * [misc/dos_fs.c]
8100         Fixed bug in FindFile(), to load directories as dlls.
8101
8102         * [misc/dos_fs.c]
8103         Fixed ToUnix() and ToDos() again, as my previous patch
8104         didn't make it.
8105
8106         * [misc/dos_fs.c] [miscemu/int21.c]
8107         Bug fixes, should be able to handle all winfile and progman int21
8108         requests now except for a few small things.
8109
8110 Tue Mar 29 06:25:54 1994  crw@harris.mlb.semi.harris.com (Carl Williams)
8111
8112         * [memory/heap.c]
8113         Implemented GetFreeSystemResources().
8114
8115 ----------------------------------------------------------------------
8116 Mon Mar 21 17:32:25 1994  Bob Amstadt  (bob@pooh)
8117
8118         * controls/menu.c (GetSubMenu): Function did not return correct value
8119
8120         * [windows/mdi.c]
8121         Beginnings of menu handling.
8122
8123 Thu Mar 10 11:32:06 1994  Stefan (SAM) Muenzel  (muenzel@tat.physik.uni-tuebingen.de)
8124
8125         * [objects/font.c]
8126         if font.width equals zero use asterix instead.
8127
8128 Mon Mar 21 17:23:37 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
8129
8130         * [objects/bitmap.c]
8131         Rewritten bitmap code to use exclusively X pixmaps; *much* faster.
8132
8133         * [objects/brush.c]
8134         Some changes with pattern brushes because of the new bitmap code.
8135
8136         * [objects/color.c]
8137         Added function COLOR_ToPhysical for better color mapping.
8138
8139         * [objects/dib.c]
8140         Heavily optimized SetDIBits().
8141
8142         * [windows/dc.c]
8143         Opimized SetDCState() and DC_SetupGC*() functions.
8144         Added stub for CreateIC().
8145
8146 Mar 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8147
8148         * [misc/message.c]
8149         Call SetFocus() after closing box to give back focus to previous owner.
8150
8151         * [misc/files.c]
8152         Small bug fix in GetTempFilename() : replace a '\' to '\\'.
8153
8154         * [control/scroll.c]
8155         Calls to BitBlt() replace by StretchBlt().
8156
8157         * [control/menu.c]
8158         Call SetFocus() to previous owner after closing Popups. 
8159         Fill stub DeleteMenu().
8160
8161         * [control/listbox.c]
8162         * [control/combo.c]
8163         Use SetFocus() in WM_LBUTTONDOWN.
8164         Close ComboBox List upon WM_KILLFOCUS.
8165         Early development of WM_MEASUREITEM mecanism.
8166
8167         * [windows/defwnd.c]
8168         Early development of WM_MEASUREITEM mecanism.
8169
8170 Tue Mar 22 10:44:57 1994  Miguel de Icaza  (miguel@xochitl)
8171
8172         * [misc/atom.c]
8173         Fixed sintaxis problem when building the library.
8174
8175 ----------------------------------------------------------------------
8176 Tue Mar 15 13:11:56 1994  Bob Amstadt  (bob@pooh)
8177
8178         * [include/windows.h]
8179         Added message types and structures for MDI
8180
8181         * [include/mdi.h]
8182         Created internal structures for handling MDI
8183
8184         * [windows/mdi.c]
8185         Began creating MDI support
8186
8187 Thu Mar 10 16:51:46 1994  Bob Amstadt  (bob@pooh)
8188
8189         * [loader/wine.c] [include/wine.h]
8190         Added new field to "struct w_files" to hold the "name table"
8191         resource for Windows 3.0 programs
8192
8193         * [loader/resource.c]
8194         Added code to handle programs with a "name table" resource.
8195         LoadResourceByName() modified to check for the existence of
8196         this resource.
8197
8198 Mon Mar 14 22:31:42 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
8199
8200         * [objects/color.c]
8201         Added installing the private colormap on the desktop window.
8202
8203         * [windows/event.c]
8204         Cleaned up focus event handling (see focus.c).
8205         Use GetFocus() to direct key events to the correct window.
8206
8207         * [windows/focus.c]
8208         Rewritten SetFocus() to:
8209         - only set X focus on top-level windows
8210         - send WM_SETFOCUS and WM_KILLFOCUS messages (was done in event.c)
8211         - prevent setting focus to disabled windows
8212         - install private colormap so -privatemap option works again
8213
8214         * [windows/message.c] [windows/timer.c]
8215         Changed timer management to no longer use PostMessage(), but
8216         to generate timer messages on the fly. Also fixed a related bug
8217         in GetMessage() which could cause busy-waiting.
8218
8219         * [windows/win.c]
8220         Only select focus events on top-level windows.
8221
8222         * [windows/winpos.c]
8223         Added some sanity checks for desktop window.
8224
8225 Fri Mar  4 20:42:01 1994  Erik Bos (erik@trashcan.hacktic.nl)
8226
8227         * [misc/dos_fs.c]
8228         bug fixes in ToUnix(), WinIniFileName(), GetUnixFileName(). 
8229         Support for tilde symbol added for rootdirectories in [drives]
8230         section of wine's configfile.
8231
8232         * [misc/file.c]
8233         hread(), hwrite() added.
8234
8235         * [misc/main.c]
8236         hmemcpy() added.
8237
8238         * [if1632/stress.spec] [include/stress.h] [misc/stress.c]
8239         Added STRESS.DLL, an useless dll used to stress a windows system.
8240
8241         * [*/*]
8242         Added missing #includes, fixed prototypes for prototype checking.
8243
8244         * [include/prototypes.h]
8245
8246         Added prototypes for loader/*c, if1632/*c.
8247
8248 ----------------------------------------------------------------------
8249 Tue Mar  8 09:54:34 1994  Bob Amstadt  (bob@pooh)
8250
8251         * [Configure]
8252         Added reminder to set WINEPATH, if it is not set.
8253
8254         * [Imakefile]
8255         Removed #elif's
8256
8257         * [controls/button.c]
8258         Added BN_CLICKED notification for owner-draw buttons.
8259
8260         * [if1632/kernel.spec] [memory/heap.c]
8261         Changed Local* functions to WIN16_Local* to prevent unconcious use
8262         of these functions.
8263
8264         * [if1632/relay.c]
8265         Push old Stack16Frame on stack before setting.
8266
8267         * [include/atom.h] [misc/atom.c] [include/heap.h] [memory/local.c]
8268         Added multiple local heap handling in Atom* functions.
8269
8270         * [include/regfunc.h] [miscemu/int21.c]
8271         Rewrote DOS3Call() use context frame that is already on the stack.
8272
8273         * [misc/profile.c]
8274         Fixed to allow leading ";" to mark comments.
8275
8276         * [misc/spy.c]
8277         Fixed bugs and added support for "include" and "exclude" filters.
8278
8279         * [misc/user.c]
8280         Rearranged calls in InitApp().
8281
8282         * [misc/font.c]
8283         Fixed font handling to create system fonts, if they are used.
8284
8285         * [windows/dc.c]
8286         If text drawn on window with no font specified, then default the
8287         font to the system font.
8288
8289 Mon Mar  7 20:32:09 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
8290
8291         * [controls/desktop.c]
8292         Added handling of WM_NCCREATE and WM_ERASEBKGND functions.
8293         Implemented SetDeskPattern().
8294
8295         * [misc/main.c]
8296         Added -desktop option to get a large desktop window with
8297         everything inside it.
8298         Added -name option.
8299
8300         * [misc/rect.c]
8301         Bug fix in SubtractRect().
8302
8303         * [objects/*.c]
8304         Replaced the DefaultRootWindow() macro by the rootWindow variable.
8305
8306         * [windows/event.c] [windows/message.c]
8307           [windows/nonclient.c] [windows/win.c]
8308         A few changes to accomodate the new desktop window.
8309
8310  Tue Mar  8 11:13:03 1994  Miguel de Icaza  (miguel@xochitl.nuclecu.unam.mx)
8311  
8312         * [toolkit/arch.c] --New file-- 
8313         Routines for converting little endian data structures to
8314         big-endian data structures, currently only BITMAP structures are 
8315         converted.
8316  
8317         * [misc/atom.c]
8318         When used as part of the WineLib, the code is much simpler.
8319         Doesn't depend on alignement.
8320  
8321         * [loader/wine.c]
8322         Ifdefed Emulator dependent code if compiling WineLib.
8323  
8324         * [loader/resource.c]
8325         Moved misc/resource.c to loader/resource.c.
8326  
8327         * [loader/dump.c,ldt.c,ldtlib.c,library,c,selector.c,signal.c]
8328         Ifdefed whole code if compiling WINELIB.
8329  
8330         * [include/winsock.h]
8331         Added compilation define to allow compilation on SunOS.
8332  
8333         * [include/wine.h]
8334         Removed load_typeinfo and load_nameinfo prototypes, they belong
8335         to neexe.h
8336  
8337         * [include/neexe.h]
8338         Added load_typeinfo and load_nameinfo prototypes.
8339  
8340         * [include/arch.h]
8341         Fixed some bugs in the conversion routines.
8342         Added macros for Bitmap loading.
8343
8344 Tue Mar  8 12:52:05 1994  crw@maniac.mlb.semi.harris.com (Carl Williams)
8345         
8346         * [if1632/kernel.spec] [memory/global.c]
8347         Implemented GetFreeSpace()
8348
8349         * [if1632/user.spec] [loader/resource.c]
8350         Implemented CreateIcon()
8351
8352 ----------------------------------------------------------------------
8353 Tue Mar  1 11:30:21 1994  Bob Amstadt  (bob@pooh)
8354
8355         * [Configure] [*/Imakefile]
8356         Created configure script to handle different types of Wine builds.
8357
8358         * [Configure] [tools/build.c] [if1632/Imakefile] [Wine.tmpl]
8359         Added ability to compile Wine on systems with 14-char filename limit.
8360
8361         * [if1632/relay.c] [include/options.h] [misc/main.c]
8362         Added -relaydbg option to command line if DEBUG_RELAY is defined.
8363
8364         * [loader/selector.c]
8365         Fixed bug in GetEntryDLLName() that caused Wine to seg fault.
8366
8367         * [memory/heap.c]
8368         Fixed LocalInit() to work correctly.
8369
8370         * [misc/user.c]
8371         Added code to call loaded DLLs' initialization routines.
8372
8373 Tue Mar  1 01:01:17 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
8374
8375         * [windows/dce.c]
8376         Added clipping of child windows by their parent's client area.
8377
8378         * [windows/nonclient.c]
8379         Bug fix in NC_DoNCPaint().
8380
8381         * [windows/painting.c]
8382         Bug fix in RedrawWindow().
8383
8384 Feb 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8385
8386         * [mem/atom.c]
8387         Bug fix again in ATOM_DeleteAtom() : 
8388                 change LocalFree() by USER_HEAP_FREE().
8389         (Previous patch done Feb 13th had been lost)
8390
8391         * [controls/scroll.c]
8392         Move bitmaps loading in AllocScrollBar() instead of in WM_CREATE.
8393
8394         * [windows/class.c] (sorry Alex ...)
8395         There was no bug there "in RegisterClass() : 
8396                 WNDCLASS->lpszClassName was reset to NULL."
8397                               ^^^^^
8398
8399         * [misc/clipboard.c]    --- New File ---
8400         New function EnumClipboardFormats().
8401         New function OpenClipboard().
8402         New function CloseClipboard().
8403         New function EmptyClipboard().
8404         New function GetClipboardOwner().
8405         New function GetClipboardViewer().
8406         New function CountClipboardFormats().
8407         New function IsClipboardFormatAvailable().
8408         New function OpenClipboard().
8409         New function GetClipboardData().
8410         New function SetClipboardViewer().
8411         New function EnumClipboardFormats().
8412         New function RegisterClipboardFormat().
8413         New function ChangeClipboardChain().
8414         New function SetClipboardData().
8415         New function GetOpenClipboardWindow().
8416         New function GetPriorityClipboardFormat().
8417         New function GetClipboardFormatName().
8418
8419 Tue Mar  1 20:15:45 1994  Erik Bos <erik@trashcan.hacktic.nl>
8420
8421         * [misc/comm.c]
8422         bugfix in OpenComm().
8423
8424 ----------------------------------------------------------------------
8425 Tue Feb 22 18:04:02 1994  Jeffrey Hsu <hsu@freefall.cdrom.com>
8426
8427         * [include/winsock.h]
8428         The sockproto struct is already defined in <sys/socket.h>
8429
8430         * [misc/winsock.c]
8431         Need to include <netinet/in.h> for struct in-addr.
8432         Use sys_errlist[] instead of strerror[].
8433
8434         *[toolkit/heap.c]
8435         ANSI C specifies that the malloc functions are defined in stdlib.h,
8436           so we don't need to include malloc.h.
8437
8438         *[loader/ldtlib.c]
8439         Print informative error message about probable cause of i386_set_ldt()
8440           failure and then exit.
8441
8442         *[Imakefile]
8443         For systems that don't use gmake by default, set the MAKE variable
8444           to gmake and propagate it on recursive makes.
8445         Take out -li386 for FreeBSD systems and define __FreeBSD__ so Wine
8446           can be built with the FreeBSD 1.0.2 compiler.
8447
8448 Tue Feb 22 02:52:19 EST 1994    jrichard@cs.uml.edu (John Richardson)
8449
8450         * [objects/bitblt.c]
8451         Added in three functions to do stretching and compression
8452         for WHITEONBLACK, BLACKONWHITE, and color copies.
8453
8454 Tue Feb 22 15:01:31 EST 1994    jrichard@cs.uml.edu (John Richardson)
8455
8456         * [windows/graphics.c]
8457         Added FloodFill and FloodFill_rec.  FloodFill_rec is pretty
8458         inefficent, but should suffice for now.
8459
8460         * [include/windows.h]
8461         Changed the x,y paramaters for the FloodFill prototype 
8462         from ints to shorts
8463
8464 Tue Feb 22 00:58:28 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
8465
8466         * [windows/widgets.c]
8467         Added desktop window class.
8468
8469         * [windows/painting.c]
8470         Bug fix in RedrawWindow().
8471         Implemented ExcludeUpdateRgn().
8472
8473         * [windows/win.c] [windows/winpos.c]
8474         Implemented desktop window.
8475
8476         * [controls/desktop.c]
8477         Preliminary desktop window procedure.
8478
8479 Feb 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8480
8481         * [controls/menu.c]
8482         New function LoadMenuIndirect().
8483         New function GetMenuCheckMarkDimensions().
8484
8485         * [if1632/user.spec]
8486         Entry for DefDlgProc().
8487
8488         * [windows/class.c]
8489         Fix bug in RegisterClass() : 
8490                 WNDCLASS->lpszMenuName was reset to NULL.
8491
8492         * [windows/win.c]
8493         In CreateWindowEx(), if hMenu == 0 then use 
8494                 wndclass->lpszMenuName to load Menu from resource;
8495
8496 Mon Feb 21 22:38:28 1994 Erik Bos (erik@trashcan.hacktic.nl)
8497
8498         * [loader/library.c] [loader/wine.c]
8499         Fixed runing DLL's as main executable problem.
8500
8501         * [misc/dos_fs.c]
8502         Added wildcard support in DOS_readdir().
8503
8504         * [misc/winsocket.c]
8505         Added proper error handling of BSD winsocket functions.
8506
8507         * [miscemu/int21.c]
8508         KERNEL_DOS3Call renamed to DOS3Call and modified to use do_int21().
8509
8510         * [main/main.c]
8511         Added functions for GetVersion, GetWinFlags and GetTimerResolution
8512         for libwine.a, SystemParametersInfo() partly implemented.
8513
8514 Tue Feb 22 19:00:02 1994  Miguel de Icaza  (miguel@xochitl.nuclecu.unam.mx)
8515
8516         * [toolkit/winmain.c]
8517         Added _WinMain function. Setups the library (calls USER_InitApp).
8518
8519         * [toolkit/sup.c]
8520         Added load_mz_header, load_ne_header, load_type_info and
8521         load_name_info functions.
8522
8523         * [toolkit/heap.c] 
8524         Code cleanup. 
8525
8526         * [misc/user.c]
8527         Moved from loader/misc.c. I hope to put back all the loader
8528         functions in the ~loader subdirectory in the future. CUrrently is
8529         needed since it has USER_InitApp.
8530
8531         * [misc/resource.c]
8532         Since WineLib will probably need DLLs (currently it needs
8533         Sysres.dll). WineLib will be using much code of the loader again.
8534         So I removed some ifdefs that were used by WineLib.
8535
8536         Added load_typeinfo and load_nameinfo (and the corresponding
8537         functions in [toolkit/sup.c]
8538
8539         Added integer convertion functions in the needed places.
8540
8541         Added very ugly patch (includes wine.c). In the next release I
8542         plan to move back all the loader routines to ~/loader. In the
8543         meantime I needed this patch. It doesn't affect any of the
8544         emulator code (its ifdefed for WineLib).
8545
8546         * [misc/main.c]
8547         Cleaned up call to WinMain (now uses [toolkit/winmain.c]
8548         Ifdefed argument number checking when compiling the library.
8549
8550         * [loader/wine.c]
8551         Modified to use load_(mz|ne)_header instead of doing a direct
8552         read.  When compiling the emulator it still uses the direct read
8553         for performance. 
8554
8555         * [include/wine.h]
8556         Prototypes for loading routines.
8557
8558         * [include/class.h]
8559         Added WINE_PACKED macro instead of __attribute__ ((packed))
8560
8561         * [include/arch.h]
8562         Macros for converting integers (Little endian to big-endian).
8563         Needed in the Sun to allow loading of DLL files.
8564
8565 ----------------------------------------------------------------------
8566 Mon Feb 14 23:48:09 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
8567
8568         * [windows/clipping.c]
8569         Moved everything into windows/painting.c and removed this file.
8570
8571         * [windows/message.c]
8572         Removed calls to memmove() in MSG_RemoveMsg().
8573
8574         * [windows/nonclient.c]
8575         Added WM_GETMINMAXINFO support for window resizing.
8576
8577         * [windows/painting.c]
8578         Implemented RedrawWindow().
8579
8580         * [windows/scroll.c]
8581         Bug fix in ScrollWindowEx().
8582
8583         * [windows/win.c]
8584         Moved UpdateWindow() to windows/painting.c.
8585
8586 Fri Feb 11 12:41:28 1994  Erik Bos (erik@trashcan.hacktic.nl)
8587         
8588         * [loader/wine.c] [misc/dos_fs.c]
8589         getenv() eq NULL bugfixes.
8590
8591         * [misc/comm.c]
8592         cfmakeraw changed for SunOS.
8593
8594 Feb 13, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8595
8596         * [mem/atom.c]
8597         Bug fix in ATOM_DeleteAtom() : 
8598                 change LocalFree() by USER_HEAP_FREE().
8599
8600         * [misc/message.c]
8601         New function FatalAppExit().
8602
8603         * [objects/font.c]
8604         New empty stub SetMapperFlags().
8605
8606         * [controls/menu.c]
8607         Better CheckMark & other bitmaps placement.
8608
8609         * [windows/graphics.c]
8610         New function RoundRect() : calc.exe now working...
8611
8612 Tue Feb 15 14:29:37 1994  John Richardson
8613
8614         * [objects/bitblt.c]
8615         Fixed StretchBlt so it works quicker and faster.  It still doesn't
8616         use the StretchMode bits for bitmap compression, but that will
8617         come soon.
8618
8619 Mon Feb 14 13:21:04 1994  Miguel de Icaza  (miguel@roxanne.nuclecu.unam.mx)
8620
8621         * [include/windows.h,dialog.h,gdi.h]
8622         Changed __atribute__ ((packed)) for WINE_PACKED. 
8623         When compiling the library this is defined as nothing. This gets
8624         rid with all the problems compiling under SunOS. Also 
8625
8626         * [windows/utility.c]
8627         Added DebugPrintString.
8628
8629         * [toolkit/sup.c]
8630         Added hSysRes = 1 definition to resolve externals.
8631         Added CallLineDDAProc function (toolkit version).
8632         Added toy, and hi ineficient memmove until code in message.c get
8633         rewritten.
8634
8635         * [objects/gdiobj.c]
8636         Ifdefed linux/emulator-dependent code to allow compilation of
8637         WineLib.
8638
8639         * [misc/winsocket.c]
8640         Added ifdef to allow compilation under SunOS.
8641
8642         * [misc/resource.c]
8643         When compiling the library, the resource file is expected to be in
8644         a file called $argv[0].Res. Also the information of the resource
8645         is expected to be at offset 0 of the .Res file.
8646
8647         * [misc/main.c]
8648         Call WinMain with arguments if compiling WineLib.
8649         Call shutdown functions (Comm_DeInit, DOS_DeInitFS).
8650         Call sync_profiles to preserve changes to .INI files.
8651
8652         * [misc/comm.c,dos_fs.c]
8653         removed call to atexit(Comm_DeInit)
8654         removed call to atexit(DOS_DeInitFS)
8655         Shutdown functions are now called from the return of WinMain
8656
8657         * removed memorylib subdirectory
8658
8659         * moved memory/atom.c    to misc/atom.c
8660           moved memorylib/heap.c to toolkit/heap.c
8661
8662         * [loader/wine.c]
8663         Moved DebugPrintString to windows/utility.c
8664
8665         * [include/winsock.h]
8666         Define SO_DONTLINGER only if it has not been previously defined.
8667
8668         * [include/windows.h]
8669         added definition for DLGPROC.
8670         added definition for LMEM_WINE_ALIGN and other LMEM_* constants.
8671         When compiling WineLib WNDPROC is defined with all the parameters
8672         to avoid compilation problems.
8673
8674         * [include/user.h]
8675         When compiling WineLib USER_HEAP_(ALLOC|REALLOC|ADDR|FREE) the
8676         calls are translated to the library allocation routines.
8677
8678         * [include/gdi.h,user.h]
8679         When compiling WineLib GDI_HEAP_(ALLOC|ADDR|FREE) the calls are
8680         translated to the library allocation routines.
8681
8682         * [include/atom.h]
8683         Defined LocalAlign. When compiling the emulator it's translated as
8684         a call to LocalAlloc (the original code), when compiling WineLib
8685         as a call to LocalAlloc with a WINE-flag called LMEM_WINE_ALIGN
8686         (atom.c needs aligned data on a 4 byte boundary).
8687
8688         * [misc/file.c]
8689         Renamed KERNEL_* functions and fixed prototypes.
8690
8691         * [if1632/kernel.spec]
8692         Renamed KERNEL_* functions in order to be used by applications
8693         using Wine as a library (OpeFile, _lclose, _lread, _lcreate,
8694         _llseek, _lopen, _lwrite).
8695
8696         * [Makefile]
8697         Create library instead of executable when building target
8698         libwine.a 
8699
8700 ----------------------------------------------------------------------
8701 Tue Feb  8 13:52:11 1994  Miguel de Icaza  (miguel@roxanne)
8702
8703         * [Makefiles]
8704         Use $(CC) instead of cc.
8705         Added libwine target.
8706
8707         * [include/prototypes]
8708         #ifdefed section for WineLib
8709
8710         * moved loader/cursor.c   to misc/cursor.c
8711           moved loader/resource.c to misc/resource.c
8712           moved misc/emulate.c    to miscemu/emulate.c
8713           moved misc/int1a.c      to miscemu/int1a.c
8714           moved misc/int21.c      to miscemu/int21.c
8715           moved misc/kernel.c     to miscemu/kernel.c
8716           moved misc/user.c       to miscemu/user.c
8717
8718         * [memorylib/heap.c]
8719         Heap management for WineLib
8720
8721         * [misc/comm.c]
8722         Modified to allow compilation under SunOS (#include errno, SunOS
8723         doesn't have atexit ()).
8724
8725         * [misc/dos_fs.c]
8726         Modified to allow compilation under SunOS (#include vfs.h)
8727
8728         * [misc/file.c]
8729         Modified to allow compilation under SunOS (OPEN_MAX constant,
8730         #include unistd.h)
8731
8732         * [objects/palette.c]
8733         Modified to allow compilation under SunOS (#include limits)
8734
8735         * [toolkit/sup.c]
8736         WineLib version of CallWindowProc.
8737
8738         * [windows/event.c]
8739         Typedef XPointer under X11R4 (OpenWindows).
8740
8741         * [windows/win.c]
8742         When compiling WineLib, use direct callbacks instead of the
8743         windows supplied callbacks.
8744
8745 Mon Feb  7 22:37:34 MET 1994  julliard@di.epfl.ch (Alexandre Julliard)
8746
8747         * [loader/cursor.c]
8748         New function CURSOR_SetWinCursor(), for internal use, to set
8749         the cursor of a specific window more reliably than with SetCursor().
8750
8751         * [windows/nonclient.c]
8752         Better window management. Moving and resizing from the system
8753         menu should work now.
8754         Added scroll-bar mouse tracking.
8755
8756         * [windows/win.c]
8757         Moved scroll-bar creation and destruction to defwnd.c.
8758
8759 Feb 5, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8760
8761         * [windows/nonclient.c]
8762         Call to StdDrawMenuBar() during NC's drawing.
8763         New NC_TrackMouseMenuBar() function which call 
8764                 MenuButtonDown(), MenuButtonUp() & MenuMouseMove().
8765
8766         * [controls/menu.c]
8767         New ChangeMenu() function.
8768         Remove permanently old Xt menu code.
8769         Make common functions MenuButtonDown(), MenuButtonUp()
8770                 & MenuMouseMove() for both popups & menubar.
8771         
8772         * [controls/combo.c]
8773         Paint OBM_COMBO directly in combo client.
8774
8775         * [controls/listbox.c]
8776         Fix bug in multicolumns calculations.
8777
8778         * [controls/Makefile]
8779         Remove rules for old file 'caption.c'.
8780
8781         * [misc/kernel.c]
8782         Remove empty stub GetModuleFileName().
8783
8784         * [loader/library.c]
8785         New GetModuleHandle() function.
8786         New GetModuleUsage() function.
8787         New GetModuleFileName() function.
8788
8789         * [loader/resource.c]
8790         Try to find the bug a missing menu loading ... Not found yet !
8791
8792         * [windows/win.c]
8793         Remove old menubar creation.
8794
8795 Thu Feb  3 22:30:11 1994  Erik Bos (erik@trashcan.hacktic.nl)
8796
8797         * [misc/winsocket.c]
8798         More functions added.
8799
8800         * [if1632/winsock.spec] [misc/winsocket.c]
8801         Added John Brezak's winsock.dll stuff.
8802
8803 ----------------------------------------------------------------------
8804 Tue Feb  1 21:14:47 1994  Bob Amstadt  (bob@pooh)
8805
8806         * [loader/selector.c]
8807         Added function CreateNewSegments().  Modified IPCCopySelector
8808         to allow aliasing to any arbitrary memory space.
8809
8810         * [memory/global.c]
8811         Fixed potential bug in GlobalGetFreeSegments().
8812
8813         * [memory/linear.c]
8814         Created functions GlobalLinearLock() and GlobalLinearUnlock().
8815
8816 Tue Feb  1 05:51:43 1994  julliard@di.epfl.ch (Alexandre Julliard)
8817
8818         * [controls/widgets.c]
8819         Removed CAPTION window class.
8820
8821         * [loader/cursor.c]
8822         Bug fix in LoadCursor(): don't allocate memory every time for
8823         built-in cursors.
8824
8825         * [windows/clipping.c]
8826         Invalidate child windows in InvalidateRgn().
8827
8828         * [windows/defwnd.c]
8829         Added repaint of the caption when changing window text.
8830
8831         * [windows/event.c]
8832         Modified SetCapture() to allow keyboard events while capturing.
8833
8834         * [windows/message.c]
8835         New function MSG_GetHardwareMessage(), to do mouse tracking
8836         without returning control to the Windows program.
8837
8838         * [windows/nonclient.c]
8839         A couple of changes in frame drawing for DLGMODALFRAME windows.
8840         Rewritten window moving code, to use MSG_GetHardwareMessage()
8841         instead of non-client mouse events (this is the way Windows
8842         does it), and to send WM_ENTERSIZEMOVE messages.
8843         Removed WM_NCBUTTONUP and WM_NCMOUSEMOVE handlers.
8844
8845         * [windows/win.c]
8846         Allocate temporary structures on the USER heap instead of
8847         using GlobalAlloc().
8848
8849         * [windows/winpos.c]
8850         Added function WINPOS_GetMinMaxInfo() to get sizing informations.
8851
8852 Jan 31, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8853
8854         * [windows/nonclient.c]
8855         Call to StdDrawScrollBar() during NC's drawing.
8856         Call to NC_ScrollBarButtonDown() on NC mouse events WM_LBUTTONDOWN.
8857         Call to NC_ScrollBarButtonUp() on NC mouse events WM_LBUTTONUP.
8858         Call to NC_ScrollBarMouseMove() on NC mouse events WM_MOUSEMOVE.
8859
8860         * [controls/menu.c]
8861         New GetSubMenu() function.
8862         Move GetMenu() & SetMenu() functions from 'windows/win.c'.
8863
8864         * [controls/listbox.c]
8865         Start changes to satisfy recent changes in scrollbars/windows.
8866
8867         * [loader/resource.c]
8868         Put some code in LoadAccelerators() stub.
8869         New TranslateAccelerator() function.
8870
8871         * [windows/win.c]
8872         Remove GetMenu() & SetMenu() functions.
8873         Call to NC_CreateScrollBars() if required by CreateWindow().
8874
8875 ----------------------------------------------------------------------
8876 Mon Jan 24 10:40:10 EST 1994 John Richardson (jrichard@cs.uml.edu)
8877
8878         * [window/win.c]
8879         Added functions EnumWindows, EnumChildWindows, and helper
8880         WIN_EnumChildWin.  EnumWindows won't list all wine windows
8881         because GetDesktopWindow isn't complete.  However, the code
8882         is in place for it to work correctly and only needs 
8883         GetDesktopWindow to do so.  
8884
8885 Tue Jan 25 05:51:47 1994  julliard@di.epfl.ch (Alexandre Julliard)
8886
8887         * [windows/defwnd.c]
8888         Added handling of activation messages (WM_ACTIVATE,
8889         WM_NCACTIVATE, WM_MOUSEACTIVATE)
8890
8891         * [windows/event.c]
8892         De-activate the window when losing input focus.
8893
8894         * [windows/focus.c]
8895         Bug fix in SetFocus().
8896
8897         * [windows/message.c]
8898         Added activation of the window on mouse-clicks.
8899
8900         * [windows/nonclient.c]
8901         Changed non-client area painting to use the correct colors
8902         depending upon the activation state.
8903         Added WM_NCACTIVATE message handling.
8904         Fixed a couple of bugs in window moving and resizing.
8905
8906         * [windows/winpos.c]
8907         Implemented Get/SetActiveWindow().
8908         Implemented SWP_NOACTIVATE flag in SetWindowPos().
8909
8910 Jan 17, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8911
8912         * [misc/message.c]
8913         MessageBox has a CaptionBar for his title except for
8914                 MB_SYSTEMMODAL with MB_ICONHAND.
8915
8916         * [windows/nonclient.c]
8917         Call to NC_TrackSysMenu on SysMenu button mouse click.
8918
8919         * [windows/defwnd.c]
8920         Call to NC_TrackSysMenu on Alt key (VK_MENU).
8921
8922         * [controls/menu.c]
8923         New GetSystemMenu() function.
8924         New CopySystemMenu() internal function.
8925         New NC_TrackSysMenu() internal function.
8926
8927         * [include/windows.h]
8928         New WM_INITMENU, WM_INITMENUPOPUP, WM_MENUSELECT & WM_MENUCHAR defines.
8929
8930 ----------------------------------------------------------------------
8931 Thu Jan 13 11:45:13 1994  John Richardson <jrichard@cs.uml.edu>
8932
8933         * [window/win.c]
8934         Added functions EnableWindow, IsWindowEnabled, and helper 
8935         WIN_SetSensitive.
8936         
8937         * [window/event.c]
8938         Added checks for WS_DISABLED windows in EVENT_key, EVENT_MotionNotify,
8939         EVENT_ButtonPress, EVENT_ButtonRelease, EVENT_ConfigureNotify,
8940         EVENT_FocusIn, EVENT_FocusOut, and EVENT_EnterNotify.  Key and 
8941         button presses beep for a disabled window.  
8942         If anyone finds better places for these checks, please tell me.
8943
8944 Jan 17, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
8945
8946         * [misc/message.c]
8947         Cleanup on buttons answer value returned.
8948
8949         * [control/combo.c]
8950         Now use OBM_COMBO bitmap dropdown button.
8951
8952 Mon Jan 17 21:56:45 1994  Erik Bos (erik@trashcan.hacktic.nl)
8953
8954         * [misc/comm/c]
8955         A few bugfixes.
8956
8957 Tue Jan 18 06:36:48 1994  julliard@di.epfl.ch (Alexandre Julliard)
8958
8959         * [loader/cursor.c]
8960         Added X cursor for IDC_SIZENS and IDC_SIZEWE.
8961
8962         * [include/options.h] [misc/main.c]  (New files)
8963         Rewrote main() function to get rid of Xt application context,
8964         and added command-line option parsing.
8965
8966         * [objects/color.c]
8967         Use of a private map now configurable with command-line option.
8968
8969         * [windows/defwnd.c]
8970         Added WM_SYSCOMMAND handling, and better WM_SETCURSOR handling.
8971
8972         * [windows/event.c]
8973         Removed ConfigureNotify event handler (no longer needed).
8974
8975         * [windows/message.c]
8976         Send WM_SETCURSOR message on mouse events.
8977
8978         * [windows/nonclient.c]
8979         Use OEM bitmaps for the drawing of the non-client area.
8980         Added caption bar buttons handling, and moving and resizing of
8981         the window via the window frame (bypassing the window manager).
8982
8983         * [windows/painting.c]
8984         Bug fix in BeginPaint().
8985
8986         * [windows/win.c]
8987         Set the override_redirect flag for windows (to bypass window
8988         manager).
8989
8990         * [windows/winpos.c]
8991         Implemented WindowFromPoint(), ChildWindowFromPoint(),
8992         BringWindowToTop(), Get/SetInternalWindowPos(),
8993         Get/SetWindowPlacement().
8994
8995 Mon Jan 17 20:48:24 1994  Bob Amstadt  (bob@pooh)
8996
8997         * [memory/heap.c]
8998         Added support for multiple local heaps.
8999
9000 ----------------------------------------------------------------------
9001 Tue Jan  4 13:01:33 1994  David Metcalfe <david@prism.demon.co.uk>
9002
9003         * [window/caret.c]
9004         Modified code to use system timer.
9005
9006 Jan 9, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9007
9008         * [windows/win.c]
9009         Windows create if required new XLIB MenuBar & CaptionBar.
9010
9011         * [windows/defwnd.c]
9012         WM_CALCSIZE Move & Resize caption, menubar & scrollbars.
9013         (I'm not sure it's the good place for it, but it work...)
9014
9015         * [loader/resource.c]
9016         optimize in FindResourceByNumber, make lseek() if next type ...
9017
9018         * [controls/scroll.c]
9019         scrollbar buttons are now using system resources bitmaps.
9020
9021         * [controls/caption.c] - new file ...
9022         captionbar showing title, close button with SysMenu,
9023         and other buttons using system resources bitmaps.
9024
9025         * [controls/menu.c]
9026         New functions: SetMenuItemBitmaps() with 'glues',
9027         Make new version of LoadMenu() & ParseMenu(),
9028         ( put #define USE_POPUPMENU ).
9029         Implementation of MenuBar functions.
9030         
9031         * [sysres.dll]
9032         New bitmaps for system such OBM_CLOSE, OBM_MINIMIZE, OBM_UPARROWI.
9033         New SYSMENU menu, it don't work yet ! :-((
9034
9035 Tue Jan 11 05:27:45 1994  julliard@di.epfl.ch (Alexandre Julliard
9036
9037         * [memory/atom.c]
9038         Fixed a bug that could cause atoms to be case-sensitive.
9039
9040         * [misc/rect.c]
9041         Bug fix in SubtractRect().
9042
9043         * [objects/clipping.c]
9044         Bug fix when setting the clip mask to an empty region.
9045
9046         * [windows/dce.c]
9047         Bug fix in ReleaseDC().
9048
9049         * [windows/dialog.c]
9050         Call AdjustWindowRectEx() before creating the dialog window.
9051         Added support for DS_MODALFRAME style.
9052
9053         * [windows/event.c]
9054         Cleaned up event handling and removed old Xt stuff.
9055         Moved double-click handling to windows/message.c
9056
9057         * [windows/focus.c]
9058         Bug fix: only set the X focus when the window is viewable.
9059
9060         * [windows/graphics.c]
9061         Rewritten DrawReliefRect() to use brush instead of pen, and
9062         to use the system colors.
9063
9064         * [windows/message.c]
9065         Implemented WM_NCHITTEST message sending, and non-client
9066         mouse messages.
9067         Cleaned up double-click handling, and removed the Xt code.
9068
9069         * [windows/nonclient.c]  (New file)
9070         Implemented AdjustWindowRect().
9071         Implemented WM_NCCALCSIZE, WM_NCHITTEST and WM_NCPAINT handling.
9072
9073         * [windows/painting.c]
9074         Added sending of the WM_NCPAINT message in BeginPaint().
9075
9076         * [windows/sysmetrics.c] [include/sysmetrics.h]  (New files)
9077         Implemented system metrics.
9078
9079         * [windows/win.c]
9080         Bug fix in setting the parent and owner in CreateWindow().
9081         Removed the Xt code.
9082
9083         * [windows/winpos.c]
9084         Added sending of the WM_NCPAINT message in SetWindowPos().
9085         Removed the Xt code.
9086
9087 Sun Jan  2 12:38:53 1994  David Metcalfe <david@prism.demon.co.uk>
9088
9089         * [windows/class.c]
9090         Implemented GetClassName and GetClassInfo.
9091
9092         * [windows/caret.c]
9093         Various improvements to text caret code.
9094
9095 Fri Dec 31 15:22:22 1993  John Brezak <brezak@apollo.hp.com>
9096
9097         * [misc/comm.c]
9098         Patches to work with NetBSD.
9099
9100 Thu Dec 30 12:11:55 1993  John Richardson <jrichard@cs.uml.edu>
9101
9102         * [objects/bitblt.c] Added StretchBlt().
9103
9104 Tue Jan  4 05:22:07 1994  julliard@di.epfl.ch (Alexandre Julliard)
9105
9106         * [misc/user.c]
9107         Added creation of system message queue.
9108
9109         * [objects/bitmap.c] [objects/dcvalues.c] [windows/dc.c]
9110         Added DC size fields into DC structure.         
9111
9112         * [objects/clipping.c]
9113         Bug fix in CLIPPING_IntersectRect().
9114
9115         * [windows/class.c]
9116         Allocate a DCE instead of a DC for CS_CLASSDC classes.
9117
9118         * [windows/clipping.c]
9119         Fixed GetUpdateRect() and GetUpdateRgn() to clip to the client area.
9120
9121         * [windows/dce.c]
9122         Implemented GetDCEx() and GetWindowDC().
9123
9124         * [windows/defwnd.c]
9125         Implemented WM_WINDOWPOSCHANGED handling.
9126
9127         * [windows/event.c]
9128         Preliminary support for Xlib event handling instead of Xt callbacks.
9129         Changed MSG_AddMsg() calls to hardware_event() or PostMessage().
9130
9131         * [windows/message.c]
9132         Preliminary support for multiple message queues.
9133         Implemented hardware_event() to store messages into the system queue.
9134         Implemented Get/SetTaskQueue().
9135         Better WM_PAINT and WM_TIMER handling.
9136         Changes to use Xlib instead of Xt for events.
9137
9138         * [windows/painting.c]
9139         Use GetDCEx() to retrieve the DC, to get a correct visible region.
9140
9141         * [windows/timer.c]
9142         Moved the timer procedure callback into DispatchMessage().
9143         Changed implementation to get rid of Xt timeouts.  Timer checking
9144         is now done inside GetMessage().
9145
9146         * [windows/win.c]
9147         Allocate a DCE instead of a DC for CS_OWNDC windows.
9148         Replaced Xt calls with Xlib calls.
9149         Moved window positioning functions into windows/winpos.c
9150
9151         * [windows/winpos.c]  (New file)
9152         Rewritten most of the window positioning functions.
9153         Implemented SetWindowPos() and MapWindowPoints().
9154
9155 Jan 3, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9156
9157         * [if1632/user.spec]
9158         Bad arguments description for function SetDlgItemText.
9159
9160         * [objects/text.c]
9161         Function DrawText now handle DT_CALCRECT request.
9162
9163         * [misc/message.c]
9164         Message boxes now use DrawText with DT_CALCRECT.
9165
9166         * [windows/graphics.c]
9167         Bug fix in function FrameRect, (it was using PEN instead of BRUSH).
9168
9169         * [windows/win.c]
9170         Bug fix for flags in function ShowWindow.
9171         More accurate WM_SIZE generated by function ShowWindow.
9172
9173         * [controls/listbox.c]
9174         More code for LBS_MULTIPLESEL.
9175         More code for LBS_MULTICOLUMN.
9176
9177         * [include/windows.h]
9178         Bad define for MF_SEPARATOR.
9179
9180         * [controls/menu.c]
9181         New functions: PopMenuWndProc() with 'glues',
9182         CreatePopupMenu(), AppendMenu(), InsertMenu(), RemoveMenu(), 
9183         DeleteMenu(), ModifyMenu(), TrackPopupMenu().
9184         Code in stubs: CreateMenu(), DestroyMenu(). 
9185
9186 Sat Jan  1 10:22:43 1994  Bob Amstadt  (bob@pooh)
9187
9188         * loader/wine.c: Added support for relocation types 5 and 6.
9189
9190 Mon Dec 27 11:06:03 1993  Erik Bos (erik@trashcan.hacktic.nl)
9191
9192         * [misc/comm.c]
9193         new functions: BuildCommDCB(), OpenComm(), CloseComm(),
9194         SetCommBreak(), ClearCommBreak(), EscapeCommFunction(), FlushComm(),
9195         GetCommError(), SetCommEventMask(), GetCommEventMask(),
9196         SetCommState(), GetCommState(), TransmitCommChar(), ReadComm(), 
9197         WriteComm().
9198
9199 Wed Dec 22 13:00:15 1993  David Metcalfe <david@prism.demon.co.uk>
9200
9201         * [windows/caret.c]
9202         Implemented text caret functions.
9203
9204 Tue Dec 21 06:13:58 1993  julliard@di.epfl.ch (Alexandre Julliard)
9205
9206         * [loader/wine.c]
9207         Bug fix in LoadImage().
9208
9209         * [objects/bitblt.c] [objects/clipping.c] [objects/text.c]
9210           [windows/dc.c] [windows/dce.c] [windows/graphics.c]
9211         Modified graphics calls to take into account the DC origin.
9212
9213         * [windows/defwnd.c]
9214         Added preliminary WM_NCCALCSIZE handling.
9215
9216         * [windows/event.c]
9217         Send WM_NCCALCSIZE message on resize event.
9218
9219         * [windows/win.c]
9220         Send WM_NCCALCSIZE message in CreateWindow().
9221         Realize widgets at creation time (should prevent problems with
9222         unrealized widgets).
9223
9224 Dec 19, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9225
9226         * [controls/static.c]
9227         Send mouse & keyboard message received to its parent.
9228
9229         * [controls/scroll.c]
9230         Send keyboard message received to its parent.
9231
9232         * [controls/listbox.c]
9233         Add Navigation keys .
9234         ListBox now use VSCROLL & HSCROLL instead of children.
9235         Alpha version of LBS_MULTIPLESEL.
9236         Alpha version of LBS_MULTICOLUMN.
9237
9238         * [controls/combo.c]
9239         Add Navigation keys on closed ComboBox.
9240         Remove useless 'COMBOBOX_CreateComboBox' function.
9241
9242 Mon Dec 19 20:39:34 1993  Erik Bos (erik@trashcan.hacktic.nl)
9243
9244         * [loader/wine.
9245         LoadImage() modified to use FindFile().
9246
9247         * [misc/file.c]
9248         SetErrorMode added
9249
9250         * [misc/dos_fs.c]
9251         bug fixes.
9252
9253 Dec 13, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9254
9255         * [memory/global.c]
9256         bug fix in GlobalGetFreeSegment : good ptr in 'g_prev'.
9257
9258         * [sysres.dll]
9259         preliminary version of a 'glass of wine' bitmap
9260
9261         * [windows/event.c]
9262         New function 'GetCapture'.
9263
9264         * [controls/scroll.c]
9265         Remove useless 'SCROLLBAR_CreateScrollBar' function.
9266
9267         * [controls/listbox.c]
9268         Remove useless 'LISTBOX_CreateListBox' function.
9269
9270 Mon Dec 13 13:51:00 1993  David Metcalfe <david@prism.demon.co.uk>
9271
9272         * [objects/font.c]
9273         Corrected bugs in GetCharWidth().
9274
9275         * [windows/event.c]
9276         Modified EVENT_key to send Windows virtual key codes for
9277         WM_KEYDOWN and WM_KEYUP messages, and a WM_CHAR message
9278         for printable characters.
9279
9280 Wed Dec 08 19:20:00 1993  Karl Guenter Wuensch (hn324wu@unidui.uni-duisburg.de)
9281
9282         * [windows/graphics.c]
9283         Added Polyline and Polygon
9284
9285 Mon Dec 13 14:51:54 1993  Erik Bos (erik@trashcan.hacktic.nl)
9286
9287         * [controls/listbox.c]
9288         ListBoxDirectory() modified to use dos_fs.c's functions to
9289         access files&|drives.
9290
9291 Sat Dec 04 17:04:23 1993  Erik Bos (erik@trashcan.hacktic.nl)
9292
9293         * [misc/dos_fs.c]
9294         Added FindFile() to search a file in a dos/unix style path.
9295         
9296         * [misc/file.c]
9297         New Win31 functions: OpenFile, _lcreate, _llseek, GetTempDrive,
9298         GetTempFileName, GetWindowsDirectory, GetSystemDirectory,
9299         GetDriveType.                      
9300
9301         * [misc/int21.c]
9302         Modified.
9303
9304 Wed Dec  1 16:20:45 1993  Miguel de Icaza  (miguel@roxanne.nuclecu.unam.mx)
9305
9306         * [misc/profile.c]
9307         The Profile functions now return the correct values. They now
9308         implement all the features described in the SDK.
9309
9310 Tue Nov 30 13:55:27 1993  Bob Amstadt  (bob at amscons)
9311
9312         * [loader/selector.c]
9313         Rewrote selector aliasing routines to use System V IPC
9314         routine to alias memory segments.
9315
9316 Nov 28, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9317
9318         * [controls/listbox.c]
9319         More consistency in functions using wIndexes
9320
9321         * [controls/scroll.c]
9322         New function : ShowScrollBar().
9323
9324         * [loader/cursor.c] ... New file
9325         Move cursor functions from [loader/resource.c].
9326         New function : ClipCursor().
9327         New function : GetClipCursor().
9328         New function : CreateCursor().
9329         SetCursor() now working using gloabal variable 'winHasCursor'.
9330
9331         *[object/palette.c]
9332         New stub only : SelectPalette().
9333         New stub only : RealizePalette().
9334
9335         *[win/event.c]
9336         New function : EVENT_enter_notify(),
9337                 update 'winHasCursor' and send WM_SETCURSOR.
9338
9339         *[win/defwnd.c]
9340         Add processing of WM_SETCURSOR message.
9341
9342         *[win/win.c]
9343         New members in WND structure : hCursor, hWndVScroll & hWndHScroll. 
9344         CreateWindowEx() now create children for WM_HSCROLL & WM_VSCROLL.
9345         New function ClientToScreen().
9346         New function ScreenToClient().
9347
9348 Mon Nov 25 18:25:40 1993  Erik Bos (erik@trashcan.hacktic.nl)
9349
9350         * [files.h / regfunc.h / misc/dos.c]
9351         Removed.
9352
9353         * [misc/dos_fs.c]
9354         Added support for loading dosdrive cfg from wine.ini.
9355
9356         * [misc/int21.c]
9357         Modified.
9358
9359
9360 Wed Nov 24 11:37:33 1993  julliard@disuns2.epfl.ch (Alexandre Julliard)
9361
9362         * [include/atom.h] [memory/atom.c]
9363         Implemented atoms.
9364
9365         * [windows/class.c]
9366         Modified RegisterClass() to use atoms.
9367         Implemented CS_GLOBALCLASS style.
9368
9369         * [windows/message.c]
9370         Implemented RegisterWindowMessage().
9371
9372         * [loader/resource.c]
9373         Bug fix in LoadResource().
9374
9375         * [windows/dialog.c]
9376         Modified CreateDialogParam() to use Find/LoadResource().
9377
9378 Mon Nov 22 13:58:56 1993  David Metcalfe <david@prism.demon.co.uk>
9379
9380         * [windows/scroll.c]
9381         Preliminary implementations of ScrollWindow, ScrollDC and
9382         ScrollWindowEx.
9383
9384 Nov 21, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9385
9386         * [controls/listbox.c]
9387         Optimization of redraw during 'Add' or 'Insert'.
9388
9389         * [controls/scroll.c]
9390         Optimization of WM_PAINT during 'thumbtracking'.
9391
9392         * [controls/button.c]
9393         Add of beta implement of 'BS_OWNERDRAW'
9394
9395         * [controls/static.c]
9396         Style 'SS_ICON' new supported.
9397
9398         * [misc/message.c]
9399         Begin of implemantation of MB_XXX styles.
9400
9401         * [loader/resource.c]
9402         Function LoadIcon() : now prepare transparency Bitmap mask.
9403         Function LoadCursor() : now prepare a 'X pixmapcursor'.
9404         New function SetCursor() : not finished.
9405         New function ShowCursor() : not finished.
9406         New function AccessResource() : stub.
9407
9408         * [obj/dib.c]
9409         Function DrawIcon(): deugging phase of icon transparency mask.
9410
9411         * [loader/library.c]
9412         new file for news functions LoadLibrary() & FreeLibrary().
9413
9414         * [sysres.dll]
9415         Resources only 16bits DLL for System Resources, icons, etc...
9416
9417 Sun Nov 14 14:39:06 1993  julliard@di.epfl.ch (Alexandre Julliard)
9418
9419         * [include/dialog.h] [windows/dialog.c]
9420         Simplified dialog template parsing.
9421         Implemented DialogBoxIndirect().
9422
9423         * [windows/win.c]
9424         Fixed bug in CreateWindow() when aborting window creation.
9425         Modified UpdateWindow() to only update visible windows.
9426         Implemented IsWindow().
9427
9428 Nov 14, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9429
9430         * [controls/listbox.c]
9431         Listbox control window : new messages.
9432
9433         * [controls/combo.c]
9434         Combo box control window : new messages.
9435
9436         * [misc/message.c]
9437         Moved stub MessageBox() to this new file.
9438         Implemented of a callback, now MessageBox show a window.
9439
9440         * [loader/resource.c]
9441         New function DestroyIcon()
9442         New function DestroyCursor()
9443         Filled stub LoadIcon()
9444         Filled stub LoadCursor()
9445         Bug fixed in FindResourceByName() : missing lseek().
9446
9447         * [obj/dib.c]
9448         New function DrawIcon()
9449
9450         * [windows/win.c]
9451         New function CloseWindow()
9452         New function OpenIcon()
9453         New function IsIconic()
9454         New Function FindWindow()
9455
9456 Sun Nov 14 08:27:19 1993  Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de)
9457
9458         * [loader/selector.c]
9459         Wrote AllocCStoDSAlias() and AllocDStoCSAlias()
9460
9461 Sun Nov 14 08:27:19 1993  Bob Amstadt  (bob at amscons)
9462
9463         * [loader/selector.c]
9464         Wrote AllocSelector() and PrestoChangoSelector().  YUK!
9465
9466 Sat Nov 13 13:56:42 1993  Bob Amstadt  (bob at amscons)
9467
9468         * [loader/resource.c]
9469         Wrote FindResource(), LoadResource(), LockResource(),
9470         and FreeResource()
9471
9472         * [include/segmem.h] [loader/selector.c] [loader/signal.h]
9473         Changed selector allocation method.
9474
9475 Sun Nov 10 08:27:19 1993  Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de)
9476
9477         * [if1632/callback.c if1632/call.S if1632/user.spec] 
9478         added Catch (KERNEL.55) and Throw (KERNEL.56)
9479         
9480 Nov 7, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9481
9482         * [controls/scroll.c]
9483         Scroll bar control window
9484                 Bug resolved : Painting message before scroll visible.
9485
9486         * [controls/listbox.c]
9487         Listbox control window
9488                 Destroy cleanup.
9489
9490         * [controls/combo.c]
9491         Combo box control window
9492                 Destroy cleanup.
9493
9494         * [controls/button.c]
9495                 GetCheck Message now return is state.
9496
9497         * [windows/win.c]
9498         New function IsWindowVisible()
9499
9500 Mon Nov  1 14:40:21 1993  julliard@di.epfl.ch (Alexandre Julliard)
9501
9502         * [if1632/user.spec]
9503         Removed some duplicate entries.
9504
9505         * [include/dialog.h] [windows/dialog.c]
9506         Implemented dialog units and fonts.
9507         Added preliminary loading of dialog resources.
9508         Preliminary implementation of DialogBox().
9509         Implemented Get/SetDlgItem* functions.
9510
9511         * [windows/win.c]
9512         Implemented WM_PARENTNOTIFY message.
9513         Implemented CreateWindowEx() and GetWindow().
9514         Completed DestroyWindow().
9515
9516 Mon Nov  1 18:19:34 1993  Erik Bos
9517
9518         * [loader/signal.c]
9519         Added support for int 0x11 & 0x12.
9520
9521         * [loader/int21.c]
9522         Improved function handling.
9523
9524 Sun Oct 31 12:38:09 1993  David Metcalfe <david@prism.demon.co.uk>
9525
9526         * [objects/font.c]
9527         Implemented GetCharWidth().
9528
9529 Wed Oct 27 09:56:06 1993  John Brezak <brezak@ch.hp.com>
9530
9531         * [Makefile]
9532         Use GNU malloc.
9533
9534         * [include/int21.h include/wine.h]
9535         Change sc_eflags to sc_efl .
9536
9537         * [include/wine.h]
9538         Fix misplaced #endif
9539         Include <signal.h> for NetBSD
9540
9541         * [loader/int21.c]
9542         Don't include <sys/vfs.h> in NetBSD
9543         Do include <sys/mount.h> in NetBSD
9544         Cleanup some lint.
9545
9546 Mon Oct 26 17:59:01 1993  Erik Bos
9547
9548         * [include/int21.h]
9549         Added.
9550
9551         * [loader/int21.c]
9552         Added support for many dos ints.
9553
9554         * [misc/file.c] [include/files.h]
9555         Moved OPEN_MAX and DosDriveStruct to files.h.
9556
9557 Sun Oct 24 13:36:50 1993  David Metcalfe <david@prism.demon.co.uk>
9558
9559         * [controls/button.c]
9560         Implemented CHECKBOX, AUTOCHECKBOX, 3STATE, AUTO3STATE,
9561         RADIOBUTTON, AUTORADIOBUTTON, GROUPBOX controls, together with
9562         a preliminary USERBUTTON control.
9563
9564         * [objects/text.c]
9565         Corrected bugs in TEXT_NextLine() and added handling of prefix
9566         character.
9567
9568         * [controls/button.c]
9569         Disabled focus handling by commenting out SetFocus() calls until
9570         serious bug can be found.
9571
9572 Oct  20, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
9573
9574         * [controls/listbox.c]
9575         Listbox control window
9576                 Painting cleanup, new messages processed.
9577
9578         * [controls/scroll.c]
9579         Scroll bar control window
9580                 Painting cleanup.
9581
9582         * [controls/combo.c]
9583         Combo box control window
9584                 Painting cleanup.
9585
9586 Tue Oct 12 17:50:11 1993  julliard@di.epfl.ch (Alexandre Julliard)
9587
9588         * [objects/color.c] [objects/palette.c] [windows/syscolor.c]
9589         Better support for the private color map.
9590         Using a private map is now the default.
9591
9592         * [windows/win.c]
9593         Bug fix.
9594
9595         * [include/dialog.h] [windows/dialog.c]
9596         Implemented CreateDialog*() and IsDialogMessage().
9597
9598         * [misc/xt.c] [windows/defwnd.c]
9599         Moved DefWindowProc() to defwnd.c.
9600         Added WM_NCCREATE, WM_NCDESTROY and WM_CTLCOLOR handling.
9601
9602         * [windows/defdlg.c]
9603         Started the implementation of DefDlgProc().
9604
9605         * [windows/win.c]
9606         Added WM_NCCREATE and WM_NCDESTROY messages.
9607         Implemented IsChild().
9608
9609 Tue Oct 12 17:50:20 1993  David Metcalfe <david@prism.demon.co.uk>
9610
9611         * [windows/focus.c]
9612         Implemented GetFocus() and SetFocus().
9613
9614         * [windows/event.c]
9615         Added processing of FocusIn and FocusOut events.
9616
9617         * [windows/graphics.c]
9618         Added DrawFocusRect().
9619
9620 Sat Oct  9 14:36:57 1993  Erik Bos
9621
9622         * [loader/int1a.c]
9623         Added more function handling.
9624
9625 Wed Oct  6 12:21:22 1993  Erik Bos
9626
9627         * [loader/signal.c]
9628         Split signal.c into int1a.c, int21.c and signal.c.
9629
9630 Tue Oct  5 22:12:40 1993  David Metcalfe
9631
9632         * [controls/static.c] [control/widgets.c]
9633         Static control class.
9634
9635         * [objects/text.c]
9636         Added processing of additional DT_ flags to DrawText().
9637
9638         * [windows/win.c] [misc/xt.c]
9639         Added SetWindowText() and WM_SETTEXT processing.
9640
9641 Tue Oct  5 22:12:40 1993  Martin Ayotte
9642
9643         * [controls/listbox.c]
9644         Listbox control window
9645
9646         * [controls/scroll.c]
9647         Scroll bar control window
9648
9649         * [controls/combo.c]
9650         Combo box control window
9651
9652         * [include/combo.h]
9653         Combo box definitions
9654
9655         * [include/listbox.h]
9656         Listbox definitions
9657
9658         * [include/scroll.h]
9659         Scroll bar definitions
9660
9661 Sat Oct  2 09:35:54 1993  Bob Amstadt  (bob at pooh)
9662
9663         * [if1632/callback.c]
9664         Fixed bug in MakeProcInstance().
9665
9666         * [debugger/info.c]
9667         Changed x/w and x/b to display in hex.
9668
9669         * [debugger/i386-pinsn.c]
9670         Added code to properly unassemble 16-bit indexing.
9671
9672 Fri Oct  1 08:29:05 1993  Bob Amstadt  (bob at pooh)
9673
9674         * [loader/files.c] [misc/profile.c]
9675         System initialization file is now called "wine.ini" and can
9676         be located in the current directory, the user's home directory,
9677         or any directories specified in the WINEPATH environment variable.
9678
9679         * [tools/build.c] [if1632/call.S] [include/regfunc.h]
9680         Changed register function stack to match sigcontext structure.
9681
9682 Thu Sep 30 22:30:21 1993  Bob Amstadt  (bob at pooh)
9683
9684         * [loader/files.c]
9685         Created function to search a path for files to load.
9686
9687         * [loader/wine.c]
9688         Modified exe and dll file loading to search through path
9689         specified by the environment variable WINEPATH.
9690
9691 Thu Sep 30 22:30:21 1993  Eric Youngdale
9692
9693         * [loader/signal.c]
9694         Bug fix.
9695
9696 Thu Sep 30 22:30:21 1993  John Brezak
9697
9698         * [debugger/dbg.y] [debugger/debug.l] [debugger/dtest.c] 
9699           [debugger/obstack.h]
9700         Updates to allow debugger to function under NetBSD.
9701
9702 Tue Sep 28 19:59:21 1993  David Metcalfe
9703
9704         * [windows/win.c]
9705         Implemented support for windows with no borders.  Added
9706         GetParent(), GetDlgCtrlID(), GetWindowText() and
9707         GetWindowTextLength() functions.
9708
9709         * [misc/xt.c]
9710         Added processing of WM_GETTEXT and WM_GETTEXTLENGTH messages
9711         to DefWindowProc and Implemented MessageBeep().
9712
9713         * [windows/syscolor.c]
9714         Added preliminary system color support.
9715
9716         * [controls/button1.c]
9717         Mods to new button control and integration with Wine.
9718
9719 Tue Sep 28 19:59:21 1993  Johannes Ruscheinski
9720
9721         * [controls/button1.c]
9722         New button control using GDI functions.
9723         
9724 Tue Sep 28 19:59:21 1993  Eric Youngdale
9725
9726         * [debugger/*]
9727         Added debugging capabilities to Wine
9728
9729 Sat Sep 25 13:22:50 1993  Alexandre Julliard  (julliard@di.epfl.ch)
9730
9731         * [objects/region.c]
9732         Bug fix
9733
9734 Fri Sep 24 07:35:11 1993  Bob Amstadt  (bob at pooh)
9735
9736         * [tools/build.c]
9737         Changed the entry point code to reduce the standard entry
9738         point size from 22 bytes to 10 bytes.  This leaves about
9739         4000 free entry points instead of the 800 in version 0.4.2.
9740
9741         * [loader/resource.c]
9742         Rewrote functions to allow loading of resources from any
9743         DLL.
9744
9745         * [loader/wine.c] [include/wine.h]
9746         Added functions GetFilenameFromInstance() and GetFileInfo()
9747         to search for a loaded file based on its instance handle.
9748         Added a field in struct w_files to make searching by an instance
9749         handle faster.
9750
9751 Tue Sep 21 09:57:01 1993  miguel@roxanne.nuclecu.unam.mx (Miguel de Icaza)
9752
9753         * [misc/profile.c]
9754         Implementation of .INI file handling
9755
9756 Mon Sep 20 10:54:32 1993  David Metcalfe
9757
9758         * [misc/profile.c.old]
9759         Implementation of .INI file handling
9760
9761 Mon Sep 20 10:54:32 1993  John Brezak
9762
9763         * [controls/WinButton.c]
9764         Bug fix with call to XtVaSetValues.
9765
9766 Mon Sep 20 10:54:32 1993  Alexandre Julliard
9767
9768         * [windows/win.c]
9769         Quick patch to get colormaps to work with button widget.
9770
9771 Mon Sep 20 02:42:54 1993    (yngvi@hafro.is)
9772
9773         * misc/keyboard.c: 
9774         Ifdefed out some bogus Ansi<->Oem conversion functions
9775
9776         * misc/lstr.c: 
9777         New file with string functions like lstr* IsChar* *Ansi* 
9778
9779 Wed Sep 15 20:35:10 1993  John Brezak
9780
9781         * [loader/signal.c]
9782         Additional changes to support NetBSD.
9783
9784 Wed Sep 15 22:19:22 1993  Martin Ayotte
9785
9786         * [windows/graphics.c]
9787         Added FrameRect function
9788
9789 Tue Sep 14 13:54:45 1993  Alexandre Julliard
9790
9791         * [objects/color.c] [objects/palette.c]
9792         Preliminary support for private color map.
9793
9794         * [windows/class.c]
9795         Implemented CS_CLASSDC style.
9796
9797         * [windows/dce.c]
9798         Moved DCEs to USER heap.
9799         Implemented class and window DCs.
9800
9801         * [windows/event.c]
9802         Implemented CS_DBLCLKS style.
9803
9804         * [windows/graphics.c]
9805         Bug fix in SetPixel().
9806
9807         * [windows/win.c]       
9808         Implemented CS_OWNDC style.
9809         Implemented Get/SetWindowLong().
9810
9811         * [controls/menu.c] [windows/class.c] [windows/clipping.c] 
9812           [windows/dce.c] [windows/message.c] [windows/win.c]   
9813         Moved windows from global heap to USER heap.
9814
9815 Mon Sep 13 05:00:11 1993  Eric Youngdale
9816
9817         * [Makefile] [if1632/relay.c] [include/dlls.h] [selector.c]
9818           [loader/wine.c] [tools/build.c]
9819         Added ability to generate missing functions statistics.
9820
9821 Mon Sep 13 12:09:47 1993  Scott A. Laird  (scott@curly)
9822
9823         * [WIN31-APPLETS]
9824         Added new file.
9825
9826         * [if1632/kernel.spec]
9827         Added definitions for GetProfile{Int,String} and SetHandleCount.
9828
9829         * [if1632/keyboard.spec]
9830         Created interface specification for Keyboard driver DLL.
9831
9832         * [if1632/relay.c]
9833         Added keyboard.dll to list of included DLLs.
9834
9835         * [if1632/user.spec]
9836         Added LoadAccelerators definition.
9837
9838         * [loader/resource.c]
9839         Added LoadAccelerators stub.
9840
9841         * [misc/file.c]
9842         Changed OpenFile, and added SetHandleCount (for winfile.exe)
9843
9844         * [misc/keyboard.c]
9845         Added keyboard code.
9846
9847         * [misc/profile.c] [misc/xt.c]
9848         Moved GetPrivateProfile* commands here, and added GetProfile*
9849         commands.
9850
9851 Mon Sep 13 10:24:37 1993  Andrew Bulhak
9852
9853         * [windows/utility.c]
9854         Implemented MulDiv(), OutputDebugString() and wvsprintf()
9855
9856 Fri Sep 10 09:13:30 1993  John Brezak
9857
9858         * [*/Makefile]
9859         Created patch to allow BSD make to build wine.
9860
9861         * [windows/win.c]
9862         Fixed NULL pointer reference.
9863
9864         * [windows/message.c] [misc/xt.c]
9865         Defined HZ to handle system specific timing.
9866
9867         * [windows/graphics.c]
9868         Use M_PI is PI
9869
9870         * [objects/pallete.c]
9871         NetBSD does not have /usr/include/values.h and MAXINT is INT_MAX.
9872
9873         * [dump.c] [ldt.c] [wine.c]
9874         ifdef'ed linux headers for linux compile.
9875
9876         * [loader/ldtlib.c]
9877         Add NetBSD system calls when compiled on that system.
9878
9879         * [loader/selector.c]
9880         Use mmap(MAP_ANON, ...) for NetBSD.
9881
9882         * [if1632/call.S]
9883         Fixed selector assumptions.
9884
9885 Thu Sep 9 20:01:37 1993  David Metcalfe
9886
9887         * [controls/WinButton*] [controls/button.c] [controls/widget.c]
9888           [windows/win.c] [windows/class.c]
9889         Added 3D button control and tied into CreateWindow()
9890
9891 Thu Sep  9 07:35:24 1993  Scott Laird
9892
9893         * [if1632/sound.spec]
9894         Created interface specification for SOUND DLL.
9895
9896         * [if1632/win87em.spec]
9897         Added more functions to the WIN87EM DLL interface specification
9898
9899         * [misc/emulate.c]
9900         Created stubs for the new math emulation functions.
9901
9902         * [misc/sound.c]
9903         Created stubs for the SOUND DLL.
9904
9905 Sun Sep  5 21:02:10 1993  John Burton
9906
9907         * [if1632/kernel.spec]
9908         Added interface specifications for OpenFile, _lclose, _lread, _lopen,
9909         and _lwrite.
9910
9911         * [include/windows.h]
9912         Added OF_ macros
9913
9914         * [misc/file.c]
9915         Implemented OpenFile, _lclose, _lread, _lopen and _lwrite.
9916
9917 Fri Sep  3 18:47:03 1993  Alexandre Julliard
9918
9919         * [windows/dc.c]
9920         Bug fix
9921
9922         * [objects/text.c]
9923         Bug fix
9924
9925 Fri Sep  3 18:47:03 1993  Bob Amstadt
9926
9927         * [objects/linedda.c]
9928         Finished LineDDA().
9929
9930 Fri Sep  3 11:52:18 1993  Bob Amstadt
9931
9932         * [windows/timer.c]
9933         Changed to use CallWindowProc() rather directly calling callback.
9934
9935         * [windows/event.c]
9936         Implemented SetCapture() and ReleaseCapture()
9937
9938         * [windows/keyboard.c]
9939         Created stub for GetKeyState()
9940
9941         * [objects/linedda.c]
9942         Created stub for LineDDA()
9943
9944         * [if1632/callback.c]
9945         Created callback handler for LineDDA callback procedure.
9946
9947         * [if1632/callback.c]
9948         Created FreeProcInstance()
9949
9950 Fri Sep  3 08:36:52 1993  David Metcalfe
9951
9952         * [loader/signal.c]
9953         Patch to and code for INT 1A
9954
9955 Thu Sep  2 00:31:54 1993  Alexandre Julliard
9956
9957         * [objects/font.c] [objects/text.c]
9958         More text support: implemented justification and underlining.
9959
9960         * [windows/clipping.c] [objects/clipping.c]
9961         Moved low-level clipping functions to objects/clipping.c.
9962
9963         * [windows/clipping.c] [windows/event.c] [windows/message.c]
9964         Implemented window update regions.
9965
9966         * [windows/dc.c] [objects/dcvalues.c]
9967         Moved some device-independent DC functions to objects/dcvalues.c.
9968
9969         * [windows/graphics.c]
9970         Implemented InvertRect() and GetPixel().
9971
9972 Sat Aug 28 08:40:23 1993  Eric Youngdale
9973
9974         * [include/neexe.h] [loader/wine.c]
9975         Added code to handle relocation type 4.
9976
9977         * [loader/signal.h] [loader/wine.c] [loader/selector.c]
9978         Added support for dos interrupts.
9979
9980 Thu 26 Aug 19:15:00 1993  Eric Youngdale
9981
9982         * [loader/selector.c]
9983         Fixed bug dealing with loading DLLs.
9984
9985 Thu Aug 26 19:22:40 1993  Alexandre Julliard
9986
9987         * [include/gdi.h] [objects/font.c] [windows/dc.c]
9988         Beginning of real font support.
9989
9990         * [windows/graphics.c]
9991         Implemented PatBlt().
9992
9993         * [memory/global.c]
9994         Corrected a bug with linked list handling in GlobalAlloc().
9995
9996         * [objects/bitmap.c]
9997         Corrected a bug in BITMAP_SelectObject().
9998
9999 Tue Aug 24 19:22:40 1993  David Metcalfe
10000
10001         * [controls/Command*] [controls/Label*] [controls[MenuButto*]
10002           [controls/SmeMenuButt*]
10003         Change code to support & as a special character in menu item text.
10004
10005 Tue Aug 24 19:22:40 1993  Alexandre Julliard
10006
10007         * [include/gdi.h] [windows/dc.c]
10008         Heavily modified the DC structure for better device-independence.
10009
10010         * [objects/bitmap.c]
10011         Implemented bitmap dimensions.
10012
10013         * [windows/dc.c] [windows/dce.c]
10014         Implemented DC state saving and restoring.
10015
10016         * [windows/dc.c]
10017         Implemented ROP mode.
10018
10019         * [windows/graphics.c]
10020         Implemented FillRect().
10021
10022 Mon Aug 23 22:08:34 1993  Bob Amstadt  (bob at pooh)
10023
10024         * [misc/xt.c]
10025         Fixed bug in InvalidateRect().  Solitaire attempted to
10026         clear window before it was realized.
10027
10028         * [loader/resource.c]
10029         Began rewrite of LoadBitmap().
10030
10031         * [loader/wine.c]
10032         Fixed code which set Argv and Argc global variables.
10033
10034         * [loader/selector.c]
10035         Added code to set up command line arguments.
10036
10037         * [include/neexe.h]
10038         Fixed error in PSP structure.
10039
10040 Tue Aug 17 20:41:12 1993  Alexandre Julliard
10041
10042         * [include/gdi.h] [windows/dc.c]
10043         Implemented device capabilities.
10044
10045         * [objects/region.c]
10046         Implemented EqualRgn() and CombineRgn().
10047
10048         * [windows/clipping.c]
10049         Implemented Save/RestoreVisRgn().
10050
10051         * [windows/graphics.c]
10052         Implemented PaintRgn() and FillRgn().
10053
10054         * [windows/mapping.c]
10055         Implemented mapping modes.
10056
10057 Tue Aug 10 14:07:38 1993  Alexandre Julliard
10058
10059         * [if1632/user.spec] [misc/rect.c]
10060         Implemented rectangle API functions.
10061
10062         * [if1632/gdi.spec] [include/gdi.h] [objects/region.c]
10063         Implemented regions.
10064
10065         * [windows/class.c]
10066         Corrected a typo in UnregisterClass().
10067
10068         * [windows/clipping.c] [windows/dc.c]
10069         Implemented DC clipping and visible region.
10070
10071 Tue Aug 10 20:57:56 1993  Bob Amstadt  (bob at pooh)
10072
10073         * [controls/menu.c] [windows/win.c]
10074         SetMenu(), GetMenu(), CheckMenuItem() implemented
10075
10076 Thu Aug  5 22:33:22 1993  Bob Amstadt  (bob at pooh)
10077
10078         * [controls/menu.c] [windows/win.c]
10079         Many improvements menus.  LoadMenu() should work.
10080
10081 Wed Aug  4 14:55:36 1993  Alexandre Julliard
10082
10083         * [objects/dib.c]
10084         Started the implementation of device-independent bitmaps.
10085
10086         * [objects/bitmap.c]
10087         Added support for multiple bitmap depths.
10088
10089         * [objects/brush.c]
10090         Implemented pattern brushes.
10091
10092         * [windows/dc.c] [windows/graphics.c]
10093         Implemented some GDI graphics primitives.
10094
10095 Tue Aug  3 21:16:47 1993  Bob Amstadt  (bob at pooh)
10096
10097         * [controls/menu.c] [windows/win.c] [include/menu.h]
10098         Code to load class menus from executable file.
10099
10100         * [if1632/user.spec]
10101         Fixed specification of SendMessage() and PostMessage.
10102
10103 Mon Jul 26 21:53:24 1993  Alexandre Julliard
10104
10105         * [if1632/call.S]
10106         Corrected a bug in KERNEL_InitTask().
10107
10108         * [include/windows.h]
10109         Added a lot of constants.
10110
10111         * [loader/selector.c]
10112         Corrected a bug in segment allocation in CreateSelectors().
10113
10114         * [objects/bitmap.c]
10115         Implemented SelectObject() for bitmaps.
10116
10117         * [objects/brush.c]
10118         Implemented hatched brushes and SelectObject().
10119
10120         * [objects/gdiobj.c]
10121         Removed linked list (not needed).
10122
10123         * [objects/palette.c]
10124         Implemented system palette creation and misc. palette API functions.
10125
10126         * [windows/timer.c]
10127         Implemented timers.
10128
10129         * [windows/dc.c]
10130         Implemented memory device contexts.
10131
10132 Tue Jul 20 10:38:59 1993  Bob Amstadt  (bob at pooh)
10133
10134         * [dos.c]
10135         Split DOS3Call() out of kernel.c.  Added support for get date
10136         and time functions.
10137
10138         * [call.S]
10139         Added function ReturnFromRegisterFunc() to allow DOS calls
10140         to return values in registers.
10141
10142         * [regfunc.h]
10143         Macros to access registers saved on stack.
10144
10145 Tue Jul 20 10:38:59 1993  Alexandre Julliard
10146
10147         * [win.c]
10148         Corrected allocation of the WM_CREATE data structure.
10149
10150         * [dce.c] [dce.h]
10151         Implemented DCE handling.
10152
10153         * [bitmap.c] [brush.c] [dc.c] [font.c] [gdi.h] [gdi.spec] 
10154           [gdiobj.c] [palette.c] [pen.c]
10155         Implemented the GDI objects data structures and allocation.
10156
10157         * [windows.h]
10158         Added several structures and constants for GDI objects.
10159
10160 Mon Jul 19 12:51:10 1993  Bob Amstadt  (bob at pooh)
10161
10162         * [ldtlib.c]
10163         Modified system calls to match Linus' new interface for
10164         the LDT modification.
10165
10166         * [win.c]
10167         Fixed bug with WM_CREATE message.
10168
10169         * [heap.c] [kernel.spec]
10170         Completed local heap allocation functions.
10171
10172         * [global.c]
10173         Created function GlobalQuickAlloc() for easy allocation from DLLs
10174
10175 Tue Jul 13 20:31:31 1993  Bob Amstadt  (bob at pooh)
10176
10177         * [global.c]
10178         Completed global memory pool API
10179
10180 Sun Jul 11 16:59:52 1993  Alexandre Julliard
10181
10182         * [message.c] [user.c] [user.spec] [windows.h]
10183         Added emulation of Windows message queue.
10184
10185 Thu Jul  8 19:29:27 1993  Bob Amstadt  (bob at pooh)
10186
10187         * [build.c] Original by Bob Amstadt
10188         * [callback.c] Original by Bob Amstadt, updates by 
10189         Alexandre Julliard
10190         * [dump.c] Original by Bob Amstadt
10191         * [global.c] Original by Bob Amstadt
10192         * [heap.c] Original by Bob Amstadt
10193         * [kernel.c] Original by Bob Amstadt
10194         * [ldt.c] Original by Bob Amstadt
10195         * [ldtlib.c] Original by Bob Amstadt
10196         * [relay.c] Original by Bob Amstadt
10197         * [resource.c] Original by Bob Amstadt, updates by 
10198         Alexandre Juliard
10199         * [selector.c] Original by Bob Amstadt, updates by Eric Youngdale
10200         * [user.c] Original by Bob Amstadt
10201         * [wine.c] Original by Bob Amstadt, updates by Eric Youngdale and
10202         Alexandre Julliard
10203         * [wintcl.c] Original by Regents of the University of California,
10204         updates by Peter MacDonald and Alexandre Julliard
10205         * [callback.h] Original by Bob Amstadt
10206         * [dlls.h] Original by Bob Amstadt
10207         * [heap.h] Original by Bob Amstadt
10208         * [neexe.h] Original by Bob Amstadt
10209         * [prototypes.h] Original by Bob Amstadt, updates by 
10210         Eric Youngdale
10211         * [segmem.h] Original by Bob Amstadt
10212         * [tkInt.h] Original by Regents of the University of California
10213         * [windows.h] Original by Peter MacDonald, updates by 
10214         Alexandre Julliard and Bob Amstadt
10215         * [wine.h] Original by Eric Youngdale
10216         * [kernel.spec] Original by Bob Amstadt, updates by 
10217         Alexandre Julliard
10218         * [gdi.spec] Original by Bob Amstadt, updates by 
10219         Alexandre Julliard
10220         * [shell.spec] Original by Bob Amstadt
10221         * [unixlib.spec] Original by Bob Amstadt
10222         * [user.spec] Original by Bob Amstadt, updates by Alexandre Julliard
10223         * [win87em.spec] Original by Bob Amstadt
10224         * [Windows.tcl] Original by Peter MacDonald, updates by 
10225         Alexandre Julliard
10226         * [build-spec.txt] Original by Bob Amstadt
10227         * [if1632.S] Original by Bob Amstadt, updates by Eric Youngdale