1 ----------------------------------------------------------------------
2 Sun Jan 14 13:45:22 1996 Alexandre Julliard <julliard@sunsite.unc.edu>
5 Added check for gcc strength-reduce bug.
8 Changed ListBoxDirectory() to use the new DOS file functions.
11 Fixed parameters for DeleteMenu() call in ChangeMenu().
14 Also display current frame in back-trace.
16 * [files/directory.c] [files/dos_fs.c] [files/drive.c] [files/file.c]
17 Complete rewrite of the DOS file handling.
18 Implemented per-task file handles.
19 Removed default Z: drive; needs to be put explicitely in wine.ini
23 Fixed file descriptor leak in LoadModule().
26 Initialise PDB file handle table in TASK_CreateTask().
27 Close file handles on task termination.
28 Implemented SetErrorMode().
31 Fixed WNetGetConnection() to use GetDriveType().
34 Added function xstrdup().
37 Many changes for new DOS file functions.
39 * [miscemu/interrupts.c]
40 Moved DOS_GetEquipment() function into INT_Int11Handler().
43 Bug fix: create system menu before sending WM_NCCREATE.
46 Replaced strcasecmp and strncasecmp by lstrcmpi and lstrncmpi for
49 Sat Jan 13 16:13:02 1996 Jim Peterson <jspeter@birch.ee.vt.edu>
51 * [include/wintypes.h]
52 Added 'typedef HGLOBAL GOBALHANDLE;'. This is not precisely in line
53 with the true windows 'typedef HANDLE GLOBALHANDLE;', but I believe
57 Added '#include <arpa/inet.h>' for various declarations. '#ifdef'-ed
58 out some old style internet address #define's.
61 Made MakeProcInstance() return first parameter #ifdef WINELIB32.
62 Made FreeProcInstance() do nothing #ifdef WINELIB32.
63 '#ifdef'-ed out TASK_AllocThunk(), as it was unused in WINELIB32.
65 * [library/miscstubs.c]
66 Made GetWndProcEntry16() return ACTIVATEAPP_callback() when called
67 with name="ActivateAppProc". This hardly seems correct, but it's my
68 best guess as to how the emulator responds.
70 Sat Jan 6 17:57:45 1996 Martin von Loewis <loewis@informatik.hu-berlin.de>
72 * [if1632/kernel32.spec][win32/process.c]
73 WIN32_GetProcAddress, LoadLibraryA: new functions
76 RELAY32_GetEntryPoint: Removed code to load PE DLLs
78 * [include/pe_image.h][include/pe_exe.h]
79 struct pe_data: new fields base_addr,load_addr,vma_size,pe_reloc
80 struct PE_Reloc_Block: new structure
83 MODULE_RegisterModule: new function
86 PE_FindExportedFunction,PE_GetProcAddress: new functions
87 fixup_imports: expect struct w_files* now, fill dlls_to_init,
89 do_relocations: new functions
90 calc_vma_size: renamed from dump_table
91 PE_LoadImage: use malloc to allocate memory for image
92 PE_InitDLL: expect HMODULE
93 PE_InitializeDLLs: new function
96 NE_InitializeDLLs: branch to PE_InitializeDLLs for PE modules
97 GetExePtr: Accept PE modules
100 FILEDLG_WMCommand: unpack WIN32 WM_COMMAND appropriately for WineLib
102 Thu Jan 4 11:36:21 1996 Manfred Weichel <Manfred.Weichel@mch.sni.de>
105 New file with usleep() function for SVR4.
108 Check for usleep() function.
110 Tue Jan 02 14:00:00 1996 Anand Kumria <akumria@ozemail.com.au>
112 * [if1632/toolhelp.spec] [include/toolhelp.h]
113 [misc/user.c] [windows/message.c]
114 Implement TOOLHELP.80 TimerCount. Fix GetTickCount.
117 Implement DPMI Get Page Size (AX=0604, INT 31)
120 Implement TOOLHELP.72 GetMemManInfo.
122 Mon Jan 2 10:33:00 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk>
124 * [if1632/callback.c]
125 CallWindowProc() - When calling RELAY32_CallWindowProc, check
126 whether lParam should be a SEGPTR, and if so convert it to one.
128 * [if1632/gdi.spec] [if1632/kernel32.spec] [if1632/user32.spec]
129 Numerous functions added, mostly calls to original (win16)
130 functions. Note that some (many) of these are probably not
131 strictly correct, but with these additions freecell will at least
132 display its main window though it is garbled.
134 * [if1632/winprocs.spec]
135 Completely rewritten - all WndProcs now have win32 versions to
136 help with the lparam SEGPTR fix in callback.c
138 * [include/kernel32.h]
142 Definition of PE_Export_Directory amended.
144 * [include/resource32.h]
147 * [include/stackframe.h]
148 Definition of MAKE_SEGPTR macro #ifdef'd out and replaced with
149 prototype for replacement function in memory/selector.c which
150 can operate on any given memory address. This is currently
151 required for win32 support. It is a dreadful cludge, and will
152 certainly slow down other programs. If you are not interested
153 in win32 development you may wish to reverse this patch.
155 * [include/windows.h]
156 Definition of SW_SHOWDEFAULT added.
158 * [loader/pe_image.c]
159 Extensive rewrites of xmmap() fixup_imports().
160 PE_LoadImage() - initialisation of bss added, extraction of
161 module name fixed, initialisation of DLL added.
162 PE_InitDLL() - now does something.
163 PE_Win32CallToStart() - initialisation of TEB pointed to by
165 PE_InitTEB() created to perform TEB initialisation.
167 * [memory/selector.c]
168 New function MAKE_SEGPTR() - see include/stackframe.h above.
171 USER32_RegisterClassA(), CreateWindowExA() memory allocation
172 method changed. This is probably now unnecessary with the
173 new MAKE_SEGPTR handling code.
174 USER32_DefWndProcA() removed to win32/winprocs.c
175 USER32_TranslateMessage added.
178 handling of win32 spec files changed to support gcc2.6.X
179 this requires optimisations to be disabled.
181 * [win32/resource.c] [win32/newfns.c] [win32/heap.c] [win32/winprocs.c]
184 * [win32/Makefile.in]
185 New files heap.c, newfns.c, resource.c and winprocs.c added to build.
188 New function W32_SetHandleCount.
191 WIN32_GetModuleHandle() - now returns handle of running process
193 GetStartupInfoA() - set cbReserved2 to 0.
196 VirtualAlloc() - set mmap() file parameter to -1 instead of 0 to make
197 it work with FreeBSD. Also check for return value. Removed extra
201 ShowWindow() - SW_SHOWDEFAULT handling kludged in.
203 ----------------------------------------------------------------------
204 Sat Dec 23 18:15:59 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
206 * [configure.in] [Makefile.in] [tools/install-sh]
207 New 'install' target installs Wine binary, library and man page.
208 Library is now more logically named libwine.a.
209 Split toolkit/ directory into library (for library code) and
210 libtest (for test programs).
213 Quick hack to partially support EM_PASSWORD style (avoids
214 displaying your passwords on the screen when testing programs...)
216 * [configure.in] [controls/menu.c] [include/resource.h]
217 [misc/commdlg.c] [misc/ole2nls.c] [misc/shell.c] [windows/msgbox.c]
218 Language is now a run-time option (wine -language xx).
221 Dump some more debugging info on crash.
224 Only consider ';' as a comment if it's the first non-blank
225 character on the line.
228 More debugging info for real-mode callback.
231 Rewrote EnumObjects() to do the Right Thing.
233 * [resources/sysres*]
234 New directory containing system resources.
236 Fri Dec 22 11:24:39 GMT 1995 John Harvey <john@division.co.uk>
238 * [win32/file.c] [win32/memory.c]
239 Unixware doesn't have MAP_ANON ifdefed out for now.
242 DOS_GetDosFileName didn't truncate paths starting ./ properly.
245 Produces assembly code that works with the unixware assembler.
247 Wed Dec 20 22:22:29 +0100 1995 Morten Welinder <terra@diku.dk>
250 INSTR_GetOperandAddr: 16-bit addresses should be masked to 16 bits.
253 DOS_readdir should always return directories, even if they don't
254 match the file name mask.
256 Tue Dec 19 18:00:00 1995 Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
259 Give arguments to winhelp.
262 Implemented Interrupt 21 AX=6C00 EXTENDED OPEN/CREATE.
263 Created function ExtendedOpenCreateFile.
264 Give for some Windows95 interrupts the return value 'not
267 Sun Dec 17 16:51:56 EST 1995 Jim Peterson <jspeter@birch.ee.vt.edu>
269 * [include/kernel32.h] [include/windows.h]
270 Moved the typedefs for SYSTEMTIME and LPSYSTEMTIME from
271 include/kernel32.h to include/windows.h and declared the new Win32
272 API functions Sleep(), GetLocalTime(), and GetSystemTime().
273 Redefined INFINITE as 0xFFFFFFFF if WINELIB32.
276 Created the shell script 'rc', which should simplify resource
279 * [win32/environment.c]
280 Kludged around an undefined reference to wine_files. This change
281 should be fixed some time.
283 * [win32/time.c] [if1632/kernel32.spec]
284 Added the functions GetSystemTime(), and Sleep().
287 Renamed static function GetSystemTime to INT21_GetSystemTime to
288 avoid conflicts with the API function of the same name.
290 * [include/wintypes.h]
291 Added the SPFMT definition for printf statements.
293 * [misc/shell.c] [include/shell.h]
294 Changed ERROR_* defines to SHELL_ERROR_*, as they were conflicting
295 with the ones in include/winerror.h. They should probably use the
296 versions in winerror.h, but I'm not certain, and that can be done
300 Translated WM_MDIACTIVATE(?,(LOhwnd,HIhwnd)) messages to
301 WM_MDIACTIVATE(HIhwnd,LOhwnd) for WINELIB32. The ? parameter
302 (boolean) was discarded with this translation. Translated handler
303 of WM_MDISETMENU(ref,(loHMENU,hiHMENU)) to handle
304 WM_MDISETMENU(loHMENU, hiHMENU) messages in WINELIB32 (ref assumed
305 false, call DrawMenuBar() if desired).
308 General explicit casts and more rigid typing to remove warnings.
310 * [include/winpos.h] [windows/winpos.c]
311 Changed return type of WINPOS_ChangeActiveWindow to BOOL.
313 * [include/commdlg.h] [misc/commdlg.c]
314 Added prototypes for ChooseColor(), CommDlgExtendedError(),
315 FindText() GetFileTitle(), GetOpenFileName(), GetSaveFileName(),
316 PrintDlg, and ReplaceText().
317 Renamed the CommDlgExtendError() function to CommDlgExtendedError().
318 Made GetFileTitle return a short, as per the API definition.
321 Added line to clean and distclean that removes temporaries from
322 the include directory.
324 Sat Dec 16 19:39:14 MET 1995 Steffen Moeller <smoe0024@rz.uni-hildesheim.de>
327 Almost rewrote EDIT_GetLineMsg.
329 Sat Dec 16 13:51:48 MST 1995 Andrew Taylor <andrew@riscan.com>
332 Fixed MDITile() bug that occurs when 0 windows are present or all
333 windows are minimized.
335 Wed Dec 12 23:30:00 1995 Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de>
338 Try harder to find files, especially in the working directory.
339 Look in $HOME/.wine too and create it there if it isn't found.
341 ----------------------------------------------------------------------
342 Mon Dec 11 19:08:55 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
345 Replaced wine_strncpy() by a 32-bit version of lstrcpyn(), since
346 they do the same job.
349 Fixed __attribute__((stdcall)) to make it compile with gcc
350 versions under 2.7. Doesn't mean it will run OK though...
352 Sat Dec 09 13:22:58 1995 Cameron Heide <heide@ee.ualberta.ca>
354 * [include/kernel32.h] [include/winerror.h]
355 Added file attribute definitions and more error codes.
358 Added some rudimentary errno-to-Win32 error conversion
362 Added to GetFileInformationByHandle, filled in some known
363 error codes, and switched to dprintf_win32.
368 Fri Dec 8 14:37:39 1995 Jim Peterson <jspeter@birch.ee.vt.edu>
371 Converted functions of the type LONG _(HWND,WORD,LONG) to the type
372 LRESULT _(HWND,WPARAM,LPARAM) where needed.
375 Restructured libres prototypes to closer match the windows API.
377 * [include/windows.h]
378 Changed several API prototypes' parameter types from 'short' to INT,
379 which is #defined as short in the emulator, but is a normal int in
380 WINELIB32. Also changed SEGPTR from DWORD to void* when WINELIB32.
381 (This creates a lot of warnings at library-compile time, but less
382 warnings at app-compile time. I'll remove the warnings soon.)
384 * [loader/resource.c]
385 Fixed parameter mismatch in call to LIBRES_FindResource(). Changed
386 various implementations of the LIBRES_* API functions.
389 Deleted local 'i' from win_fault(), since it was unused.
392 Mirrored changes to include/windows.h mentioned above.
395 Changed LoadMenuIndirect() call to LoadMenu() to test the new
396 resource registration technique.
399 Removed definition of 'struct resource' and fixed bugs in the resource
400 implementation. Implemented LIBRES_FindResource.
402 * [windows/graphics.c]
403 Mirrored changes to include/windows.h mentioned above.
405 Thu Dec 7 23:15:56 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
408 LOCAL_HeapExists: Changed parameter to HANDLE. For WineLib, return true
410 * [controls/listbox.c]
411 CreateListBoxStruct: Initialize HeapSel to 0 for WineLib
413 * [include/listbox.h]
414 change HeapSel from WORD to HANDLE
416 * [include/resource.h][rc/winerc.c]
417 struct ResourceTable: removed
418 struct resource: moved to header file
419 autoregister resources if supported by compiler
422 LOCAL_GetHeap: expect HANDLE rather than WORD
424 * [toolkit/Makefile.in]
425 Add ALLCFLAGS to make hello3
428 LocalFree, HEAP_Free: handle 0 parameter gracefully
430 Wed Dec 06 15:34:23 1995 Greg Cooper <cooper@ima-inc.com>
433 Fixed the msgsnd and msgrcv errors that winsock programs get.
435 Wed Dec 06 12:47:23 MET 1995 Sven Verdoolaege <skimo@dns.ufsia.ac.be>
437 * [if1632/kernel.spec]
438 Fixed _hread and _hwrite return type
440 * [if1632/relay32.c] [loader/pe_image.c]
441 Hacked loading of PE-dll's in
444 Added stubs for RegCreateKeyEx, RegSetValueEx, RegQueryValueEx
447 Added stubs for OpenFileMapping, CreateFileMapping, MapViewOfFileEx
450 Added stubs for CreateMutexA, ReleaseMutex, CreateEventA,
451 WaitForSingleObject, DuplicateHandle, GetCurrentProcess
453 Mon Dec 04 13:06:37 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
455 * [include/wine.h] [misc/lstr.c]
456 Define wine_strncpy(). This function does not pad the buffer with
457 zeroes like GNU strncpy(), which might break some Windows programs
458 that pass bogus size arguments.
460 * [loader/module.c]: GetModuleFileName(),
461 [misc/commdlg.c]: GetFileTitle(),
462 [misc/keyboard.c], [misc/lstr.c]: lstrcpyn(),
463 [misc/ole2nls.c], [misc/profile.c], [multimedia/mcistring.c],
464 [multimedia/mmsystem.c], [objects/font.c]:
465 Use wine_strncpy() where strings are returned to Windows programs.
467 * [objects/metafile.c]
468 PlayMetafile(): Clear the handle table before using it.
470 * [misc/shell.c] [misc/main.c]
471 Rename SHELL_RegCheckForRoot() to SHELL_Init() and call it from main().
474 load(): Need to handle comments.
479 * [windows/nonclient.c]
480 Use MAKE_SEGPTR macro in two places where a user heap block used
481 to be allocated instead.
483 Sat Dec 02 16:43:43 1995 Ramon Garcia <ramon@ie3.clubs.etsit.upm.es>
486 In function SetWindowPos: do not redraw the parent of
487 a window if the specified window is placed on the top.
488 This avoids that ShowWindow(hwnd,1) hides hwnd instead
491 Sat Dec 02 11:00:00 1995 Alex Korobka <alex@phm30.pharm.sunysb.edu>
494 Now it can scroll children along with the client region of parent
495 window. Tried to optimize update region calculation.
498 ScrollChildren function, more other features added. Basically
501 * [windows/winpos.c] [windows/focus.c]
502 Reimplemented window activation and focus handling.
504 * [windows/nonclient.c]
505 Added new flag WIN_NCACTIVATED.
507 * [windows/message.c] [loader/task.c]
508 Small changes (to maintain linked list of message queues).
510 Wed Nov 29 15:51:48 1995 Daniel Schepler <daniel@shep13.wustl.edu>
512 * [include/options.h] [misc/main.c] [windows/defwnd.c]
513 [windows/event.c] [windows/nonclient.c] [windows/win.c] [Wine.man]
514 Implemented a -managed option to replace the standard Windows
515 frame of top-level windows with the window manager's decorations.
516 If a top-level window makes its own frame, this will still show
517 up, inside the window manager decorations (I believe ctl3dv2.dll
518 would do this, although I can't test this).
520 ----------------------------------------------------------------------
521 Tue Nov 21 18:49:10 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
523 * [configure.in] [Makefile] [misc/dos_fs.c]
524 Got rid of autoconf.h file.
527 More logical behavior upon syntax errors.
529 * [include/hook.h] [windows/hook.c]
530 Changed hook structure and rewrote most of the hook functions for
531 better compatibility, based on investigations by Alex Korobka.
533 * [include/message.h] [windows/message.c]
534 Added hooks to message queue structure and made the structure
535 layout Windows-compatible.
536 Added support for WH_MOUSE, WH_KEYBOARD, WH_HARDWARE and
537 WH_JOURNALRECORD hooks.
540 Added command-line option for changing the language at run-time
541 (not implemented yet), based on a suggestion from Michael Patra.
543 * [objects/cursoricon.c]
544 Fixed silly SEGPTR bug in DumpIcon().
546 Mon Nov 20 22:22:22 1995 Alex Korobka <alex@phm30.pharm.sunysb.edu>
548 * [controls/listbox.c] [controls/combo.c] [include/listbox.h]
549 Partial implementaion of LBS_EXTENDEDSEL style,
550 yet more updates for drag & drop support. Now works.
553 More message handlers.
556 DragObject, DragDetect, AnyPopup functions.
558 * [controls/listbox.c]
559 More kludgy fixes (WM_...TOITEM, etc.).
561 * [objects/cursoricon.c] [objects/oembitmap.c]
562 IconToCursor skeleton, patch for OBM_LoadCursorIcon to handle new
565 * [include/bitmaps/ocr*]
568 Mon Nov 20 11:05:20 EST 1995 Jim Peterson <jspeter@birch.ee.vt.edu>
571 Swapped flags and size arguments to LocalRealloc as per changes in
572 memory/local.c by William Magro in previous release.
574 * [include/wintypes.h]
575 Reinstated the #define's for 'min' and 'max', since they're part of
576 the Windows API. I really don't think it's a wise idea, so I put
577 a '#ifndef DONT_DEFINE_min_AND_max' around them. I think the actual
578 WINE code should never use these (it should use 'MIN' and 'MAX'
582 Put '#ifndef WINELIB' around many things that WINElib should not need.
585 Took out many '#if defined(WINELIB)' sections with the associated
586 comment 'temporary fix, until Local memory is correctly implemented in
587 WINELIB', since the effective translations are now in
589 Took out the #ifndef's I put in EDIT_ClearText. Whoever modified this
590 file fixed (or at least postponed) the bug I had encountered.
593 Put an #ifdef in TASK_CreateTask() that hardwires the current drive to
594 C: This will probably cause a lot of trouble if this change is
595 forgotten in the future, but it will let things like the OpenFileName
598 * [toolkit/libres.c] [toolkit/Makefile.in] [toolkit/Makefile]
600 Made new libres.c file, which will contain functions for supporting
601 accessing resources by name in WINElib. 'winerc' will need to be
605 Refined memory routines to allow for differences between LocalAlloc
606 and GlobalAlloc and between LocalSize and GlobalSize.
608 * [windows/message.c] [include/windows.h]
609 Defined the GetCurrentTime routine in windows/message.c, and removed
610 the #define in windows.h.
612 Mon Nov 20 00:36:42 MET 1995 Sven Verdoolaege <skimo@dns.ufsia.ac.be>
615 Added new debugging type DEBUG_WIN32 and DEBUG_ENV.
618 Added undocumented GetExpWinVer.
621 Previous code didn't pop possibly changed %esi, %edi and %edx
627 * [win32/code_page.c]
628 Added stub for MultiByteToWideChar.
631 Added SetConsoleCtrlHandler stub.
634 Added ReadFile CreateFileA GetFileInformationByHandle stubs.
638 Changed VirtualAlloc and VirtualFree.
643 Sun Nov 19 17:54:42 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
645 * [include/windows.h]
646 Fixed a few broken structure definitions.
648 * [loader/resource.c]
649 FindResource(): Need to check for '#xxx' strings here.
652 FindNext(): Return MS-DOS filenames uppercase.
654 * [objects/cursoricon.c]
655 CreateIcon(), CreateCursor(): Added missing element to CURSORICONINFO
659 _lopen(): Files opened in OF_WRITE mode are truncated.
660 OpenFile(): Ignore OF_READ/OF_WRITE/OF_READWRITE when files are
661 created; use read/write mode.
667 Fixed bad call to strncpy() that smashed the stack.
669 * [controls/combo.c] [windows/winpos.c] [memory/selector.c]
670 Operator precedence fixes. People who use gcc 2.7.1 don't need a
673 * [if1632/gdi.spec] [objects/palette.c]
674 Add ResizePalette() and AnimatePalette() stubs. They don't do anything,
675 but sometimes that's good enough.
677 Fri Nov 17 09:10:35 GMT 1995 John Harvey <john@division.co.uk>
679 * [include/wine.h] [include/registers.h] [include/winsock.h]
680 Added definitions for Unixware.
682 * [loader/signal.c] [misc/comm.c] [misc/winsocket.c]
683 Misc. fixes for Unixware.
686 Made assignemts to context in InitTask for registers use the macros
687 from registers.h to make them more portable. (Needed for Unixware)
690 Fixed register acces routines to work on Unixware. Bit grubby but
694 EDIT_WM_NCCreate allocates local heap if hasn't been previously
698 mkdir now creates directory with permission to access it.
701 mkdir now creates directory with permission to access it.
702 DOS_opendir now uses linked list of dirents to avoid problems with
703 realloc changing address of malloced memory.
705 Thu Nov 16 12:47:13 1995 Michael Patra <patra@itp1.Physik.TU-Berlin.DE>
708 MENU_CalcItemSize(): Fixed handling of empty menu items.
710 Sat Nov 11 21:46:54 1995 Hans de Graaff <graaff@twi72.twi.tudelft.nl>
713 In OpenFile, unlink should be done on the unix filename.
715 Sat Nov 11 16:43:29 1995 Cameron Heide (heide@ee.ualberta.ca)
717 * [include/handle32.h]
718 New header file containing internal Win32 kernel handle
722 Added ReadFile, CreateFile, and CloseFileHandle, and did
723 some reorganizing to match the new handle allocation scheme.
726 Added CloseHandle and the creation of standard I/O handles.
728 * [win32/object_mgt.c]
729 New module for allocating and freeing Win32 kernel handles.
731 ----------------------------------------------------------------------
732 Fri Nov 3 20:08:17 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
735 Attempt to check for -li386 on NetBSD. Please test this.
737 Mon Oct 30 12:40:32 EST 1995 Jim Peterson <jspeter@birch.ee.vt.edu>
740 Eliminated various warnings with either explicit casts or more
741 accurate variable/parameter declarations (e.g. INT instead of short
743 Changed macros 'min' and 'max' to 'MIN' and 'MAX', since they're
746 * [controls/edit.c] [windows/defdlg.c]
747 Added '#ifdef SUPERFLUOUS_FUNCTIONS' wrappers around function
748 definition of EDIT_KeyVScrollDoc, EDIT_TextLineNumber, and
749 DEFDLG_FindDefButton to avoid warnings.
751 * [controls/button.c] [controls/scroll.c] [windows/defwnd.c]
752 [windows/message.c] [windows/nonclient.c]
753 Converted MAKEPOINT macro call to manual conversion.
755 * [include/windows.h]
756 For WINELIB32, structures POINT, SIZE, and RECT have LONG members
757 instead of INT. This also invalidates the macro MAKEPOINT(), which
758 is not supported in Win32. Also defined the POINTS structure (SHORT
759 members) and the MAKEPOINTS macro.
762 Changed a lot of 'strcpy' calls to 'strncpy' calls. I'm desperate to
763 find this memory bug, and this should be done anyway.
766 Well, the alteration mentioned above didn't do it, but #ifdef'ing out
767 a few lines in EDIT_ClearText did. This leads to bugs, but for now,
768 it's better than bizzare memory troubles.
770 * [toolkit/miscstubs.c]
771 Removed warning messages in GLOBAL_CreateBlock(), GLOBAL_FreeBlock(),
772 and RELAY32_GetEntryPoint(). These are the most popular warnings, and
773 their current implementation seems fine.
775 Sat Oct 28 09:39:18 1995 Jochen Karrer <cip307@wpax01.Physik.Uni-Wuerzburg.DE>
777 * [objects/cursoricon.c]
778 Fix for "broken" X servers that invert masked cursor colors.
780 Fri Oct 27 19:27:21 1995 Alex Korobka <alex@phm6.pharm.sunysb.edu>
782 * [windows/dialog.c] [windows/nonclient.c]
783 Remove unnecessary items from the system menu.
785 Thu Oct 26 05:03:03 MET 1995 Philippe De Muyter <phdm@info.ucl.ac.be>
787 * [objects/color.c] [objects/palette.c]
788 Make GetNearestColor return a RGB value instead of a pixel value.
790 Wed Oct 25 23:33:39 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
792 * [controls/desktop.c][controls/menu.c][include/menu.h]
793 Changed WORD parameters to UINT parameters.
795 * [include/wintypes.h]
796 Made UINT 32bit for WINELIB.
799 Disabled RELAY32_Init and MODULE_Init for WINELIB.
802 Assume CPU386 for WINELIB.
805 add_popup: set MF_POPUP flag on menu item.
807 * [toolkit/Makefile.in][toolkit/hello3.c][toolkit/hello3res.c]
808 Add resource demo hello3 for WINELIB.
809 New file README.resources.
811 * [toolkit/miscstubs.c]
814 Tue Oct 17 15:13:10 IST 1995 Itai Nahshon <nahshon@vnet.ibm.com>
817 Do not append .exe if the file name already has an extension.
820 Avoid creating a file with a junk name if a .ini file does not
823 * [if1632/gdi.spec] [if1632/user.spec] [if1632/dummy.c]
824 Added a lot of dummy stubs for Windows Hebrew version.
826 Tue Oct 17 01:03:24 1995 William Magro <wmagro@tc.cornell.edu>
828 * [controls/button.c]
829 Fix for buttons with no label.
831 * [controls/combo.c][controls/listbox.c]
832 Fixes for scrollbar positioning. Now disappears correctly
836 Handle memory allocation differently when building as library.
839 Don't destroy old icon before drawing new icon. (Fixes landscape/
840 portrait toggle icon in print dialog.)
843 New functions SetMetaFileBits and GetMetaFileBits
845 * [include/sysmetrics.h] [windows/sysmetrics.c]
846 Add support for GetSystemMetrics(SM_CMETRICS) == SM_CMETRICS
848 * [include/windows.h]
849 META_EXTTEXTOUT, not META_SETTEXTOUT
850 define GetCurrentTime as GetTickCount (for wine library)
853 Don't initialize built-in modules in wine library
856 LocalReAlloc was defined incorrectly. Swap flags and size arguments.
859 Always report CPUTYPE=4 to wine library.
862 RLE8 images were missing top line when decompressed.
864 * [objects/metafile.c]
865 SetMetaFileBits and GetMetaFileBits implemented. Works when called
866 from winhelp. More testing needed. Various memory leaks plugged.
867 Various other bug fixes. New metafile operations added in
868 PlayMetaFileRecord: CreatePalette, SetTextAlign, SelectPalette,
869 SetMapperFlags, RealizePalette, ExtTextOut, Escape. Testing needed.
872 LocalUnLock changed to LocalUnlock
874 Sun Oct 15 21:55:33 1995 Anand Kumria <akumria@ozemail.com.au>
877 Return the correct error number, for host lookup operations.
878 Also, correct the problem with send_message.
880 Fri Oct 13 19:04:35 1995 Morten Welinder <terra@diku.dk>
883 Using nm's built-in sorting.
886 Use xmalloc for malloc and xrealloc for realloc in all ungarded
890 Handle C-like expressions. Clean-up.
893 Lots of new tokens for expressions.
896 Implement "list" command for disassembling.
899 Implement more Danish stuff.
901 Fri Oct 6 10:39:39 1995 Ram'on Garc'ia <ramon@ie3.clubs.etsit.upm.es>
904 Updated self-loading modules to support for new 32 bit
907 ----------------------------------------------------------------------
908 Sun Oct 1 15:48:34 1995 Alexandre Julliard <julliard@sunsite.unc>
911 Fixed GetMenuString() for non-string items.
914 First attempt to check validity of pointers before memory
915 accesses. For now only segmented pointers are checked.
917 * [debugger/dbg.y] [memory/ldt.c]
918 Added possibility to dump only one segment with 'info segment'.
920 * [include/bitmaps/ocr_*]
921 Added all OEM cursors as XPM bitmaps.
923 * [include/cursoricon.h] [objects/cursoricon.c]
924 Rewrote all cursor and icon management to use the same memory
925 layout as Windows, and to factor common code between icons and
926 cursors. Implemented icon directory lookup to find the best
927 matching icon (i.e. the color one).
928 Implemented CopyCursor() and DumpIcon().
931 For disabled built-in modules, we now try to load the Windows DLL
932 first, and if this fails we fall back to using the built-in module
936 Fixed GlobalHandle() to return the correct selector in the high
937 word even if we are passed a handle in the first place.
940 Take into account the size of the operand and of the stack segment
941 when incrementing the stack pointer.
942 Avoid referencing FS_reg and GS_reg on *BSD.
945 All DIB functions now accept a BITMAPCOREHEADER format bitmap.
946 Monochrome DIBs are created as monochrome bitmap iff they are
949 * [objects/oembitmap.c]
950 Added support for OEM cursors, changed OBM_LoadIcon to use the new
954 Added French [Fr] language support.
956 * [win32/environment.c]
957 Fixed GetCommandLineA() to use current PDB.
959 * [windows/event.c] [windows/winpos.c]
960 Simulate a mouse motion event upon SetWindowPos() to force the
961 cursor to be set correctly.
963 Sat Sep 30 17:49:32 Cameron Heide (heide@ee.ualberta.ca)
966 New Win32 kernel functions: GetACP, GetCPInfo,
967 GetEnvironmentVariableA, GetFileType, GetLastError, GetOEMCP,
968 GetStartupInfoA, GetTimeZoneInformation, SetEnvironmentVariable,
969 SetFilePointer, SetLastError, VirtualAlloc, VirtualFree,
970 WriteFile. Completed implementations of GetCommandLineA.
972 * [include/kernel32.h]
976 Call initialization function for Win32 data (doesn't currently do
980 Implemented GetEnvironmentVariableA, SetEnvironmentVariableA.
982 Sat Sep 30 00:26:56 1995 Niels de Carpentier <niels@cindy.et.tudelft.nl>
984 * [windows/winpos.c][miscemu/emulate.c][loader/module.c]
988 Fri Sep 29 16:16:13 1995 Jim Peterson <jspeter@birch.ee.vt.edu>
991 For Winelib, explicit casts have been placed where warnings were
993 printf formats which give the format for printing a handle as
994 "%04x" or something similar have been changed to use the NPFMT
995 macro defined in include/wintypes.h. Some times, explicit casts
997 Parameter, field, and variable declarations have been made more
998 exact, such as converting 'WORD wParam' to 'WPARAM wParam' or
999 'WORD hFont' to 'HFONT hFont'.
1000 Any call of the form GetWindowWord(hwnd,GWW_HINSTANCE) has been
1001 replaced with a call to WIN_GetWindowInstance(hwnd).
1003 * [controls/combo.c]
1004 Added WINELIB32 support in CLBoxGetCombo().
1006 * [include/dialog.h]
1007 Commented out the '#ifndef WINELIB' around the '#pragma pack(1)'.
1008 winelib needs the packing as well (e.g. when accessing resources
1009 like sysres_DIALOG_SHELL_ABOUT_MSGBOX).
1011 * [include/windows.h]
1012 Got rid of the F[a-k] macros, which were cluttering up the global
1015 * [include/windows.h] [windows/defwnd.c]
1016 Added Win32 messages WM_CTLCOLOR*.
1018 * [include/wintypes.h]
1019 Put in preprocessor '#define WINELIB32' if appropriate and changed
1020 the types of some typedefs (WPARAM, HANDLE) based on this.
1022 * [loader/module.c] [toolkit/miscstubs.c]
1023 Added #ifdef'd portion in LoadModule to handle loading a WINElib
1024 module (already loaded, just init values). '#ifdef'ed out the
1025 definition for GetWndProcEntry16 and added a new version to
1026 toolkit/miscstubs.c.
1029 Adjusted the lengths of AppName and AppMisc from 512,512 to 128,906.
1030 Same amount of total storage, but much more reasonable. Also, changed
1031 calls to strcpy() in ShellAbout() to calls to strncpy() instead.
1032 This was a difficult bug to track down, but the AppMisc field was
1033 being initialized with the contributers text, which was much larger
1034 than 512 characters.
1037 New file for atom-handling functions. Copied from memory/atom.c and
1038 then heavily modified. Right now, it's just a linked list of atoms.
1039 Consider it as a hash table with just one entry. It's easily changed
1043 Commented out the heap functions with a "#ifdef WINELIB16" and put in
1044 a Win32 version (which is basically a modified copy).
1046 * [toolkit/sup.c] [toolkit/miscstubs.c]
1047 Moved the stuff I put in toolkit/sup.c into toolkit/miscstubs.c and
1048 added quite a few more stubs.
1050 * [toolkit/winmain.c]
1051 Rearranged startup code in _WinMain. I think this will work.
1053 * [toolkit/Makefile.in]
1054 Added targets for 'hello' and 'hello2' in case anyone cares to try
1055 out the sample programs.
1057 Wed Sep 27 23:13:43 1995 Anand Kumria <akumria@ozemail.com.au>
1059 * [miscemu/int2f.c] [miscemu/vxd.c] [if1632/winprocs.spec]
1060 First attempt at support for some VxDs. Comm, Shell and Pagefile.
1062 Tue Sep 26 21:34:45 1995 Hans de Graaff <graaff@twi72.twi.tudelft.nl>
1065 DOS_SimplifyPath: Also remove "/./" from path. (Happens when
1066 starting applications like 'wine ./excel.exe')
1068 Sat Sep 23 23:32:40 1995 Morten Welinder <terra@diku.dk>
1071 Avoid relative path for wine.ini.
1074 Support for Danish [Da] language.
1076 * [misc/main.c] [miscemu/cpu.c]
1077 Return the processor we're running on correctly.
1080 Minor stuff in int 0x2f, function 0x16.
1082 Sat Sep 23 1995 17:58:04 Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de>
1084 * [misc/shell.c] [misc/main.c]
1085 Implement saving and loading of the registry database (needed for
1086 OLE). Very experimental. Fixed ShellExecute().
1089 EEXIST is not a critical error condition for mkdir().
1091 Fri Sep 22 01:33:34 1995 Alex Korobka <alex@phm6.pharm.sunysb.edu>
1093 * [include/shell.h] [misc/shell.c]
1094 Implemented 4 drag/drop functions with documented functionality.
1096 * [multimedia/time.c]
1097 "Fixed" MMSysTimeCallback kludge so Excel5 loads up without crashing.
1100 Added new files, more message definitions, structures, debug info,
1101 etc. Rewrote message logging functions to produce output similar
1102 to WinSight. Check out -debugmsg +message option.
1105 Fixed GetDriveType return value.
1107 * [windows/message.c]
1108 Hooks are invoked in normal order.
1111 Added some functions and interrupts.
1114 Implemented Drag... functions.
1116 Thu Sep 21 23:50:12 1995 Jukka Iivonen <iivonen@cc.helsinki.fi>
1118 * [rc/sysres_Fi.rc] [rc/sysres.rc]
1119 First attempt at Finnish [Fi] language support.
1121 ----------------------------------------------------------------------------
1122 Sun Sep 17 16:47:49 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
1124 * [configure.in] [*/Makefile.in] [Make.rules.in]
1125 Cleaned up makefiles, added configuration option for Winelib,
1126 grouped common make rules in Make.rules.in.
1129 Renamed to 'Configure.old'; please use 'configure' instead.
1132 Fixed DestroyMenu() to avoid deleting the same menu twice.
1133 More fixes to WM_MENUSELECT, and added WM_INITMENU.
1136 Fixed wrong register values displayed by RELAY_DebugCall32().
1139 Fixed LocalLock() and LocalUnlock() to increment/decrement the
1140 lock count for moveable blocks.
1142 * [misc/commdlg.c] [misc/shell.c] [rc/winerc.c]
1143 Modified the generated C file so that the resource information
1144 (size, etc.) is also exported.
1145 Modified common dialogs to use the new informations.
1147 * [misc/main.c] [ANNOUNCE]
1148 Update the list of contributors. Please let me know if I forgot
1151 * [rc/sysres.rc] [rc/sysres_En.rc]
1152 Moved English resources to sysres_En.rc.
1153 Changed ids from numeric to symbolic for dialogs.
1155 * [windows/dialog.c]
1156 Modified template parsing to be able to pass segmented pointers to
1160 CreateWindow() now takes segmented pointers for class and window
1162 Maxmimize or minimize the window upon creation if the WS_MAXIMIZE
1163 or WS_MINIMIZE bits are set.
1165 Thu Sep 14 17:19:57 1995 Paul Wilhelm <paul@paul.accessone.com>
1167 * [controls/scroll.c]
1168 Fixed scroll-bar bugs for non-client windows.
1170 Thu Sep 14 14:04:14 MET DST 1995 Jochen Hoenicke <Jochen.Hoenicke@arbi.Informatik.Uni-Oldenburg.de>
1172 * [include/cursor.h] [windows/cursor.c]
1173 Cursor is not mirrored any more and the hotspot is set right.
1175 Wed Sep 13 14:22:31 1995 Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de>
1180 Mon Sep 4 00:01:23 1995 Jon Tombs <jon@gte.esi.us.es>
1183 First attempt at Spanish [Es] language support.
1185 Sun Sep 3 13:22:33 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
1187 * [include/alias.h][windows/alias.c][include/relay32.h]
1190 * [controls/widgets.c]
1191 WIDGETS_Init: register alias window procedures
1193 * [if1632/callback.c]
1194 CallWndProc: Call alias functions if necessary
1196 * [if1632/gdi32.spec]
1197 GetStockObject, TextOutA: new relays
1199 * [misc/user32.c][if1632/user32.spec][misc/Makefile.in][misc/Imakefile]
1201 BeginPaint,CreateWindowExA,DefWindowProcA,DispatchMessage,EndPaint,
1202 GetMessageA,RegisterClassA,ShowWindow,UpdateWindow: new relays
1204 * [if1632/winprocs32.spec][loader/pe_image.c][loader/module.c]
1205 PE_Win32CallToStart: new function
1206 MODULE_CreateInstance: removed static attribute
1207 LoadModule: Try loading PE image on error 21
1208 PE_LoadModule: new function
1209 PE_LoadImage: initialize pe_data with 0
1211 * [include/dlls.h][include/peexe.h]
1212 moved pe_data and w_files to peexe.h
1215 ShellAbout: Register AboutWndProc aliases
1218 handle 0x440A and 0xDC
1224 CreateDIBitmap: complain if BITMAPINFOHEADER is of wrong size
1227 include windows.h and relay32.h into generated Win32 relays,
1228 don't declare the implementation as int (*)();
1229 limit in WIN32_builtin was off by one
1232 CARET_Initialize: new function, call on strategic places
1234 * [windows/messagebox.c]
1235 MessageBox: register message box proc aliases
1237 * [if1632/advapi32.spec][if1632/comdlg32.spec]
1240 * [if1632/Makefile.in][if1632/Imakefile][if1632/relay32.c]
1241 added new spec files
1242 RELAY32_GetBuiltinDLL: perform lookup case insensitive
1243 RELAY32_GetEntryPoint: start name search at 0
1245 * [if1632/user.spec][if1632/kernel.spec][if1632/gdi.spec]
1246 Added stubs for new Win95 API
1248 Sat Sep 2 1995 Martin Roy
1251 In WM_INITDIALOG, current filter must reflect lpofn->nFilterIndex.
1252 When process IDOK button in FILEDLG_WMCommand(),
1253 lpofn->nFilterIndex should be updated to current selection.
1255 Thu Aug 31 15:00:00 1995 Ram'on Garc'ia <ramon@ie3.clubs.etsit.upm.es>
1257 * [loader/module.c] [loader/ne_image.c]
1258 Added support of self-loading modules.
1260 ---------------------------------------------------------------------
1261 Thu Aug 31 17:19:57 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
1264 Added compile-time option for IPC.
1267 Added command-line options for language, IPC and malloc
1271 WM_MENUSELECT was sometimes sent to the wrong window.
1273 * [debugger/break.c]
1274 For the 'next' command, only step over instruction that require
1275 it. This allows 'next' to do the right thing with jmp and ret
1278 * [ipc/*.c] [memory/atom.c] [memory/global.c]
1279 IPC can now be configured out at compile-time.
1282 Bug fix in TASK_Reschedule() that could cause a task to be deleted
1285 * [miscemu/dosmem.c] (New file)
1286 Partial emulation of the BIOS data segment.
1289 Trap attempts to access selector 0x40 and remap the access to
1293 Fixed bug in CallTo32_LargeStack() that caused problems when
1294 compiling Wine with the -fomit-frame-pointer option.
1296 * [windows/message.c]
1297 Fixed bug in hardware event handling that could cause some events
1300 Sat Aug 26 13:12:59 IST 1995 Michael Veksler <mveksler@vnet.ibm.com>
1302 * [ipc/README] [ipc/dde.tex]
1303 LaTeX documentation for the ipc and DDE stuff.
1305 Wed Aug 23 22:01:23 GMT 1995 Michael Veksler <mveksler@vnet.ibm.com>
1307 * [ipc/Imakefile] [ipc/wine_test_stub.c]
1308 Fixed IPC testing. Now it can be compiled with "make tests"
1310 Wed Aug 23 21:04:14 1995 Fons Botman <botman@wab-tis.rabobank.nl>
1312 * [if1632/kernel.spec] [include/windows.h] [misc/main.c]
1313 Added GetWinDebugInfo/SetWinDebugInfo stub for player.exe
1315 Sun Aug 20 13:49:42 1995 Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de>
1318 Misc fix to int21,ah=40 (write) to match _lwrite().
1319 AX=0x440A (check if handle is remote) added.
1321 * [multimedia/mmsystem.c]
1322 Moved mciSendString to mcistring.c.
1324 * [multimedia/mcistring.c]
1325 New file, string interface for MCI (not complete, not thoroughly
1328 * [multimedia/audio.c]
1329 IOCTL prints errors; one paranoid check disabled.
1332 Misc operator precedence fixes.
1334 * [if1632/gdi.spec] [objects/bitblt.c]
1335 Stub for FastWindowFrame (parameters not correct).
1337 Sat Aug 19 01:31:23 1995 Graham Menhennitt <gfm@werple.mira.net.au>
1339 * [loader/ne_image.c]
1340 Preliminary support for iterated segments.
1342 Sat Aug 19 00:43:04 1995 Andrew Taylor (andrew@riscan.com)
1344 * [windows/mapping.c]
1345 In function MAPPING_FixIsotropic(), VportExt[XY] is multiplied by
1346 the absolute value of (ydim / xdim) or (xdim / ydim).
1348 Thu Aug 15 23:00:16 Gregory Trubetskoy <grisha@mira.com>
1350 * [objects/oembitmap.c]
1351 Added some includes for Windows 95.
1353 * [include/sysmetrics.h]
1354 Added some sysmetrics for Windows 95.
1356 * [include/bitmaps/*95]
1357 New files: obm_close_95, obm_closed_95, obm_reduce_95, obm_reduced_95
1358 obm_zoom_95, obm_zoomd_95 - these are some pixmaps for Windows 95.
1360 Thu Aug 10 12:00:00 1995 Jan Willamowius (jan@janhh.shnet.org)
1362 * [misc/shell.c] [rc/sysres*.rc]
1363 The caption of the ShellAbout dialog box is language specific and
1364 should be defined in the resources.
1366 ----------------------------------------------------------------------
1367 Thu Aug 17 19:30:14 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
1370 Removed winelibclean target, as it doesn't work anyway.
1372 * [controls/button.c]
1373 Avoid drawing the focus rectangle outside of the button.
1375 * [controls/widgets.c]
1376 Fixed bug with the size of the reserved bytes for the Edit
1377 control (caused Eudora to crash).
1379 * [debugger/*] [include/debugger.h]
1380 Unified debugger address handling. Segmented and linear addresses
1381 are no grouped in a single type DBG_ADDR.
1382 All commands now accept seg:off addresses.
1383 Module entry points are now loaded upon first entry to the
1384 debugger, so that entry points of the loaded executable also
1385 appear in the symbol table.
1387 * [include/registers.h] [miscemu/*.c]
1388 Register macros are now of the form 'AX_reg(context)' instead of 'AX'.
1389 This makes code less readable, but will prevent a lot of name
1390 clashes with other definitions. It also avoids a hidden reference
1391 to the 'context' variable.
1393 * [ipc/dde_atom.c] [misc/atom.c]
1394 All *AddAtom and *FindAtom functions now take a SEGPTR parameter,
1395 to allow supporting integer atoms.
1396 Moved atom.c to memory/ directory.
1399 Fixed environment allocation to compute the size dynamically.
1400 Added 'windir' environment variable.
1401 Fixed GetDOSEnvironment() to return the current task environment.
1403 * [windows/message.c]
1404 Fixed bug in MSG_GetWindowForEvent().
1406 Wed Aug 9 11:40:43 1995 Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de>
1409 Added a lot of structures from my Borland Manual. Neither complete,
1410 nor 100% right (check please)
1413 Fixed some of the Reg* functions.
1414 Enhanced ShellExecute.
1415 Please test: wine "regedit.exe /v" mplayer.exe soundrec.exe
1416 Do YOU know the format of \WINDOWS\REG.DAT? Mail me please :)
1419 Make umsdos mounted windows dirs work again.
1421 * [miscemu/emulate.c]
1422 Added some comments, preimplementation of subfunction 7.
1424 * [multimedia/mmsystem.c]
1425 Implemented mciSendString. not complete, not clean, not
1426 necessarily working (only checked with a program which uses
1427 'cdaudio' (one working program is cool.exe, a shareware waveditor
1428 with cdaudio play facilities.)
1430 * [multimedia/mcicda.c]
1431 Segptr fixes in DriverProc
1432 Default cdrom drive in Linux is /dev/cdrom ... usually a symbolic
1433 link to your real cdrom device.
1435 Tue Aug 8 19:41:50 CDT 1995 Daniel Schepler <dks2@cec.wustl.edu>
1437 * [loader/resource.c]
1438 Don't crash in a LoadString to NULL
1440 * [loader/resource.c]
1441 Fixed accelerators to work with modifiers. (ALT-x modifiers still
1442 won't work unless the ALT keypress exited the menu.)
1445 Expand a file to the current offset with an _lwrite of size zero.
1448 Set a newly created file to read-write instead of write-only.
1450 Sun Aug 6 20:28:35 1995 Anand Kumria <akumria@ozemail.com.au>
1452 * [misc/main.c] [include/msdos.h]
1453 Fixed to return DOS version 6.22, and the correct byte order
1454 for Windows programs.
1456 Wed Aug 2 12:36:33 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1458 * [include/options.h] [memory/global.c] [misc/main.c]
1459 Make the new IPC run-time selectible, disabling it by default.
1460 (I think it's only useful for libwine, anyway.)
1462 * [loader/task.c] [memory/selector.c]
1463 In FreeSelector(), walk up the stack and fix the frames.
1466 Missing break statement in DIB_SetImageBits_RLE8().
1467 In GetDIBits(), set the compression flag in the bitmap info to zero.
1469 * [windows/dialog.c]
1470 GetNextDlgGroupItem() needs to treat the first child as if it had
1471 an implicit WS_GROUP bit set.
1473 Mon Jul 31 15:44:47 EDT 1995 Louis-D. Dubeau <ldd@step.polymtl.ca>
1476 Quick'n dirty fix for the initialisation of the Z: information
1479 ----------------------------------------------------------------------
1480 Sat Jul 22 22:39:09 IDT 1995 Michael Veksler <e1678223@tochnapc2.technion.ac.il>
1483 New directory. This directory contains the new inter-wine
1484 communications support. It enables DDE protocols between two wine
1485 instances. Currently it is limited to DDE, but can be enhanced to
1486 support OLE between 2 different wine instances. This is very
1487 important for libwine.a DDE/OLE support.
1490 A script to delete garbage IPC handles (shared memory, semaphores
1491 and message queues). The current inter-wine communication is not
1492 perfect, and sometimes leaves garbage behind.
1494 * [if1632/relay.c] [include/atom.h] [include/global.h]
1495 [loader/selector.c] [loader/task.c] [loader/module.c]
1496 [loader/signal.c] [memory/global.c] [misc/atom.c]
1497 [windows/class.c] [windows/message.c] [windows/win.c]
1499 Hooks for inter-wine DDE support, current Global.*Atom functions
1500 renamed to Local.*Atom since Global.*Atom are used for Inter-Wine
1501 DDE communication. (The first call to these functions sets up the
1502 IPC structures - which otherwise cause unneeded overhead.
1504 Mon Jul 17 19:55:21 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
1507 Don't crash if a NULL string is passed to menu functions.
1509 * [memory/selector.c]
1510 We now use a bit in ldt_flags_copy to indicate free LDT entries.
1511 Fixed a bug in SELECTOR_ReallocBlock that could cause it to
1512 overwrite valid LDT entries when growing a block.
1515 Emulate int xx instruction by storing the interrupt vector in
1516 CS:IP and returning directly. This allows a program to install an
1520 Added function WIN_GetTopParent to get the top-level parent of a
1523 Sun Jul 16 18:17:17 1995 Gregory Trubetskoy <grisha@mira.com>
1525 * [loader/resource.c]
1526 Added LoadIconHandler. It doesn't do anything yet, but now you
1527 can use borland help files with winhelp.exe.
1529 Sun Jul 16 11:58:45 1995 Anand Kumria <akumria@ozemail.com.au>
1532 Fixed to return 386 Enhanced mode correctly. Also return the same
1533 type of CPU, for both Enhanced and Standard mode, namely a 386.
1535 Sun Jul 16 00:02:04 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
1537 * [Configure] [include/options.h] [include/wineopts.h]
1538 [misc/main.c][misc/spy.c]
1539 Removed support of spy file. Redirected spy messages to stddeb.
1540 Removed -spy option. Added -debugmsg +spy option.
1542 * [debugger/dbg.y][debugger/debug.l]
1543 Enabled segmented addresses (seg:offs) for break and x commands.
1545 * [if1632/gdi.spec] [objects/region.c] [windows/graphics.c]
1547 FrameRgn, REGION_FrameRgn: New functions
1549 * [if1632/kernel.spec]
1550 IsWinOldApTask: Return false
1552 * [if1632/mouse.spec]
1555 * [if1632/user.spec] [windows/win.c]
1556 ShowOwnedPopups: New function
1558 * [if1632/winsock.spec] [misc/winsocket.c]
1559 inet_addr, select: New prototypes in relay code
1560 Fixed memory layout for netdb functions (getXbyY).
1561 WINSOCK_ioctlsocket: Translated FIONREAD, FIONBIO, and FIOASYNC
1563 * [objects/clipping.c]
1564 RectVisible: Fixed call to LPToDP
1567 main: Removed extra argument to getopt for Linux.
1569 Tue Jul 11 00:14:41 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1571 * [controls/listbox.c]
1572 Yet another fix for ListBoxDirectory().
1574 * [loader/module.c] [if1632/kernel.spec]
1575 Make GetModuleHandle() accept instance handles as parameter.
1577 * [if1632/relay.c] [loader/task.c]
1578 Put a magic cookie at the bottom of the 32 bit stack, and check on
1579 each return from a 32 bit function whether it's still there. Complain
1582 * [if1632/user.spec]
1583 Wrong entry for CloseDriver().
1585 * [misc/dos_fs.c] [loader/task.c] [include/dos_fs.h] [misc/file.c]
1587 Large parts of dos_fs.c simplified. Changed it to use one
1588 current drive/directory per task, which is set to the module path on
1590 Prevent CorelPaint from closing stdin.
1591 open() with O_CREAT set must be passed three parameters.
1592 DOS FindFirst()/FindNext() could crash when FA_LABEL was set. Fixed,
1593 it's in DOS_readdir() now.
1596 Some badly written software (Lotus Freelance Graphics) passes a bogus
1597 size parameter that caused Wine to write off the end of a segment.
1598 Fixed. (It's probably too paranoid now.)
1600 * [multimedia/mmsystem.c] [multimedia/time.c] [multimedia/joystick.c]
1601 [multimedia/Imakefile] [if1632/winprocs.spec]
1602 16 bit entry point for MMSysTimeCallback.
1603 Split off time.c and joystick.c from mmsystem.c.
1606 GetDIBits(): call XGetImage() via CallTo32_LargeStack.
1608 * [windows/cursor.c]
1609 DestroyCursor(): do nothing for builtin cursors.
1612 Half of WM_MDISETMENU implemented.
1615 EnumWindows() and EnumTaskWindows() never enumerated any windows.
1619 Fixed GetParent() to return correct values for owned windows.
1621 * [windows/message.c]
1622 Don't try to activate disabled top-level windows.
1624 * [windows/nonclient.c]
1625 Work around a bug in gcc-2.7.0.
1627 * [tools/build.c] [include/stackframe.h] [memory/global.c]
1628 [loader/task.c] [memory/selector.c]
1629 Some Visual Basic programs (and possibly others, too) expect ES to be
1630 preserved by a call to an API function, so we have to save it.
1631 In GlobalFree() and FreeSelector(), we must clear CURRENT_STACK16->es
1632 to prevent segfaults if ES contained the selector to be freed.
1634 Sun Jul 9 20:21:20 1995 Jon Tombs <jon@gtex02.us.es>
1637 Added missing prototypes to header files and relevant includes
1638 to reduce compile time warnings.
1640 Sun Jul 9 18:32:56 1995 Michael Patra <micky@marie.physik.tu-berlin.de>
1642 * [configure.in] [include/config.h] [*/Makefile.in]
1643 New configuration scheme based on autoconf.
1645 Sat Jul 8 14:12:45 1995 Morten Welinder <terra+@cs.cmu.edu>
1647 * [miscemu/ioports.c]
1648 Revamp to have only one in- and one out- variant, both really
1652 INSTR_EmulateInstruction: Use new ioport interface. Implement
1653 string io. Correct instruction pointer for 32-bit code.
1655 * [include/miscemu.h]
1656 Update port function prototypes.
1658 * [include/registers.h]
1661 Sat Jul 8 13:38:54 1995 Hans de Graaff <graaff@twi72.twi.tudelft.nl>
1664 ChopOffSlash(): A path consisting off a single slash is left
1665 intact, and multiple slashes are all removed.
1667 ----------------------------------------------------------------------
1668 Wed Jul 5 19:06:35 1995 Alexandre Julliard <julliard@sunsite.unc.edu>
1670 * [controls/scroll.c]
1671 Fixed drawing bug that caused part of a non-client scroll bar
1672 to be painted even when the scroll-bar was hidden.
1674 * [debugger/break.c] [debugger/dbg.y]
1675 Rewrote breakpoint handling to work in 16-bit mode.
1676 Implemented single-stepping ('step' and 'next' instructions).
1678 * [debugger/debug.l]
1679 Format specifier is now a separate token.
1680 Entering an empty line at the debugger prompt causes the previous
1681 command to be repeated, like under gdb.
1683 * [debugger/debug.l] [debugger/registers.c]
1684 Differentiate 16-bit and 32-bit registers without taking current
1685 mode into account ($eax is always 32-bit, $ax always 16-bit).
1687 * [debugger/stack.c]
1688 Fixed stack information routines to differentiate between 16-bit
1692 Option -debug now sets a breakpoint at the first instruction of
1696 Added handling of lock, repe and repne prefixes.
1699 Changed StretchDIBits() to do the correct thing, even if it's still
1702 * [windows/graphics.c]
1703 Fixes in RoundRect(), thanks to Babak Masalehdan.
1705 * [windows/message.c]
1706 Tried to fix mouse event handling with respect to disabled
1709 * [windows/painting.c]
1710 Clear WIN_NEEDS_NCPAINT flag before sending WM_NCPAINT to avoid
1714 Fixed IsWindowVisible() to return FALSE when one of the parent
1717 Sat Jul 1 22:08:21 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
1719 * [if1632/compobj.spec][misc/compobj.c]
1720 CoGetMalloc: New function
1721 Added relay entries for COMPOBJ ordinals above 100
1722 CoInitialize: Changed parameter to DWORD
1724 * [if1632/ole2.spec]
1725 Exported implementation of OleBuildVersion
1727 * [if1632/ole2disp.spec][misc/ole2disp.c][misc/Imakefile]
1728 ole2disp.c: New file
1729 SysAllocString, SysReallocString, SysAllocStringLen,
1730 SysReAllocStringLen, SysFreeString, SysStringLen: new functions
1732 * [if1632/ole2nls.spec][include/winnls.h][misc/ole2nls.c]
1733 CompareStringA: New function
1735 Thu Jun 29 19:42:02 1995 Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de>
1736 * [objects/font.c] [if1632/gdi.spec]
1737 New stubs for CreateScalableFontResource, GetGlyphOutline.
1739 Thu Jun 29 13:47:08 GMT 1995 Göran Thyni (goran@norrsken.bildbasen.se)
1742 Extensive changes and bug fixes to FileDialog handling,
1743 behaves more like native Windows.
1745 Wed Jun 28 13:04:44 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1747 * [controls/listbox.c] [controls/combo.c]
1748 Some minor optimizations.
1751 LOCAL_FindFreeBlock(): Never use the last one.
1754 GlobalReAlloc(): GMEM_MODIFY must not be ignored when size==0.
1757 read() returns an error when length==0. This is not what Windows
1758 programs expect, so pay attention to this in _lread(). Changed this
1759 in _lwrite(), _hread(), _hwrite(), too.
1761 * [loader/resource.c]
1762 LoadIcon(): Ignore bih->biSizeImage, some icons have wrong values in
1765 * [if1632/shell.spec] [misc/shell.c]
1766 Wrong spec file entries caused havoc: HKEY has 32 bit, not 16.
1767 Accept some more combinations of parameters in the Reg..() functions.
1769 * [if1632/toolhelp.spec]
1770 Make InterruptRegister() and InterruptUnregister() return false.
1773 CallNextHookEx() used to crash when called with a null hhook. Fixed.
1775 Wed Jun 28 10:14:34 1995 Martin von Loewis <martin@informatik.hu-berlin.de>
1777 * [include/neexe.h][loader/ne_image.c]
1778 NE_LoadSegment: Detect iterated segments
1781 LOCALE_SLONGDATE: fixed typo
1784 Reordered include files to avoid conflicts with Linux libc.5.1
1787 Added -b option to process binary resource files into C arrays
1789 * [include/callback.h]
1790 CallWndProc: Added dummy ds parameter for libwine
1792 * [include/gdi.h][include/user.h]
1793 USER_HEAP_ALLOC, GDI_HEAP_ALLOC: dropped flags parameter
1795 * [include/ldt.h][include/stackframe.h]
1796 defined segment conversion macros for libwine
1799 Defined USER_HeapSel for libwine
1802 Disable -dll option for libwine
1805 removed GetFreeSystemResources, SystemHeapInfo from libwine for now
1808 fixed LocalLock prototype
1811 sync'ed load_mz_header, load_ne_header with structures
1813 * [toolkit/winmain.c]
1814 Disabled resource DLLs for libwine for now
1816 Mon Jun 26 19:30:24 1995 Hans de Graaff (graaff@twi72.twi.tudelft.nl)
1819 Fixed -enhanced option to report a 386 CPU instead of a 286.
1821 Fri Jun 23 23:18:25 1995 Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de>
1824 Remove maximum open dosdirent limit (fixing the winfile.exe
1825 problem) by using telldir()/seekdir().
1827 Fri Jun 23 13:42:25 1995 Hans de Graaff (graaff@twi72.twi.tudelft.nl)
1830 Fixed problem parsing empty lines within sections in .ini files.
1832 ----------------------------------------------------------------------
1833 Mon Jun 19 20:29:50 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
1836 Modified debugger to use segmented pointers everywhere.
1838 * [if1632/shell.spec] [if1632/sound.spec] [if1632/user.spec]
1839 Declared all functions that return only 16-bit as 'pascal16'.
1841 * [include/ldt.h] [memory/ldt.c]
1842 Export LDT_EntryToBytes (new) and LDT_BytesToEntry for DPMI.
1843 Maintain a copy of the selector flags, removing the need to make a
1844 system call to retrieve an LDT entry.
1847 Fixed bug with module file handle cache.
1849 * [loader/ne_resource.c]
1850 Fixed file name bug in NE_AccessResource().
1852 * [loader/resource.c]
1853 Fixed bug in LoadIcon() that caused wrong colors to be used for
1857 Moved instruction emulation to miscemu/instr.c.
1859 * [misc/dos_fs.c] [miscemu/int21.c]
1860 Lots of small fixes, thanks to Morten Welinder.
1863 More complete DPMI emulation.
1866 Added support for prefixes in instructions to emulate.
1869 Use register macros instead of destroying the high part of 32-bit
1873 Fixed bug in GetDCState() that failed to clear the new DC.
1876 Removed dialogs 11 and 12 that were never used.
1879 'pascal16' generated functions did not save %dx.
1880 Removed use of %fs to access the stack.
1881 %ds is no longer initialized before calling a 16-bit routine.
1883 * [windows/defwnd.c]
1884 Accept a NULL pointer as window title.
1887 MDICascade: skip iconic windows.
1888 Implemented CalcChildScroll().
1890 * [windows/utility.c]
1891 Fixed MulDiv() for illegal values.
1894 Fixed X error in CreateWindowEx() when WM_NCCALCSIZE returned
1895 a zero width or height.
1897 Sun Jun 18 22:22:30 MET DST 1995 Fons Botman (botman@inter.nl.net)
1900 Fixed "uninitalized" message which -Wall couldnt see to be ok
1904 Added define for extra checks in API definitions during debugging.
1906 * [loader/ne_image.c]
1907 Added newline in NE_FixupPrologs to avoid long lines.
1910 Added extra safety check in DOS_ValidDrive.
1913 Fixed definition of ExitWindows.
1915 Sun Jun 18 21:16:08 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
1918 Some fixes, mostly for memory management, but also for text selection
1919 and tab postitions. General cleanup. Notepad.exe now works.
1921 * [controls/combo.c]
1922 Fix: the hwnd field of the DRAWITEMSTRUCT should always be that of
1923 the combo box, not the ComboLBox that belongs to it.
1925 * [controls/listbox.c]
1926 Handle itemID field correctly throughout.
1929 Implemented flag LMEM_ZEROINIT.
1930 LocalReAlloc() could trash the heap. Fixed.
1933 FONT_MatchFont(): don't get confused by negative widths.
1934 Fixed a segfault in EnumFonts().
1937 DrawText(): DT_CALCRECT implies DT_NOCLIP.
1939 * [objects/dcvalues.c]
1940 MAKELONG was used with bad parameters in DC_GET_X_Y.
1942 * [windows/dialog.c]
1943 Don't show the dialog if WS_VISIBLE isn't set in the template.
1945 * [windows/utility.c]
1946 UTILITY_convertArgs(): Never pass an expression containing ++ into a
1950 SetParent() should unlink the window before changing the parent.
1952 * [windows/message.c]
1953 Don't call timer functions via CallWindowProc(), since it checks
1954 whether hwnd==0 and does not call the function in that case.
1957 Ignore interrupt 0x3D, for VBRUN300.DLL.
1960 Don't rely on the itemData field of the DRAWITEMSTRUCT to contain a
1961 pointer to the item text.
1964 Disable OLE and DDEML DLLs by default, since they contain nothing but
1965 stubs anyway. SHELL, COMMDLG and WIN87EM are left enabled, although
1966 some programs may work better without them.
1968 * [multimedia/*.c] [include/multimedia.h] [include/driver.h]
1969 Begun cleaning things up a little. Replaced printfs with dprintf_
1970 macros, made functions static where possible, and some other minor
1973 Sun Jun 11 23:19:10 1995 Martin von Loewis <martin@informatik.hu-berlin.de>
1975 * [debugger/dbg.y][debugger/dbg.l]
1976 Removed special handling for FILE_IDENTIFER, because it caused
1977 problems with x/<format> statements.
1980 Use SC_ESP instead of SC_EIP for stack dump.
1982 * [misc/compobj.c][if1632/compobj.spec]
1983 CoBuildVersion, CoInitialize, CoUninitialize: new functions
1985 * [misc/ole2.c][if1632/ole2.spec][misc/Imakefile][include/ole2.h]
1986 New files ole2.c, ole2.h
1987 OleBuildVersion, OleInitialize, OleUninitialize: new functions
1989 * [if1632/ole2disp.spec]
1990 Added missing ordinals above 109
1992 * [misc/ole2nls.c][if1632/ole2nls.spec][include/winnls.h]
1994 GetLocaleInfoA: new function
1996 * [if1632/shell.spec]
1997 Added FindEnvironmentString as stub
1999 * [misc/olecli.c][if1632/olecli.spec]
2000 OleIsDcMeta: New function
2002 * [objects/font][misc/gdi.spec]
2003 GetKerningPairs: new function
2006 ShellExecute: Implemented support for starting programs
2008 * [if1632/user.spec]
2009 Inserted missing relay to GetClipCursor
2011 Sun Jun 11 20:34:47 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2014 Fix a problem with the local heap.
2016 * [include/wintypes.h]
2017 Fixed wrong declarations of CATCHBUF and LPCATCHBUF.
2019 * [include/mdi.h] [windows/mdi.c]
2020 This code still assumed segmented address==linear address. Fixed.
2022 * [include/msdos.h] [misc/dos_fs.c]
2023 The filemask field of the dosdirent structure could be overrun. Fixed.
2024 If you had a file called foobar and a file called foo, trying to
2025 FindFile(foo) could accidentally find file foobar instead. Fixed.
2028 OpenFile(): Always return the full pathname in ofs->szPathName. This
2029 also fixes GetModuleFilename().
2030 Prevent _lclose() from closing stderr or stdout.
2033 Search for .ini files in the path of the current module as well.
2034 (Needed by Lotus Organizer.)
2036 * [loader/task.c] [loader/ne_image.c] [loader/module.c]
2038 Local heaps are now initialized by InitTask() for executables. DLLs
2039 have to call LocalInit() themselves, LocalInit() has to put the
2040 heap at the end of the segment when called with start==0. We no longer
2041 allocate the DGROUP with 64k on startup, but grow the local heap
2042 in LOCAL_GetBlock() when necessary.
2045 LoadLibrary() should call LoadModule() in all cases, even if the
2046 DLL is already loaded, to ensure that the reference count is correct.
2048 * [loader/ne_image.c]
2049 Some changes to function prolog fixup. Does anyone know exactly how
2050 this is supposed to work? I am only guessing here.
2051 In NE_InitializeDLLs(), initialize the DLLs a module refers to before
2055 Initialize instance data at the beginning of the DGROUP in InitTask().
2058 Some fixes for moveable blocks.
2060 * [memory/selector.c]
2061 All the IsBad*Pointer() functions returned exactly the wrong boolean
2064 * [objects/bitblt.c]
2065 Fixed another null pointer dereference in debugging output.
2068 Some more recovery possibilities for FONT_MatchFont() if a specified
2069 font does not exist.
2072 The dialog code may call CreateWindowEx with an integer in windowName.
2073 This happens for static icon controls that expect a resource ID as
2074 the window name. CreateWindowEx() used to crash. Fixed.
2076 * [windows/class.c] [windows/win.c]
2077 Window classes are owned by modules, not instances. Changed
2078 RegisterClass(), UnregisterClass(), GetClassInfo() and CreateWindowEx()
2081 Sat Jun 10 16:10:53 1995 Olaf Flebbe <o.flebbe@science-computing.uni-tuebingen.de>
2084 clock.exe was displaying incorrect year.
2086 Fri Jun 9 20:36:56 1995 Victor Schneider <tailor@crl.com>
2088 * [include/cursor.h] [windows/cursor.c]
2089 Implemented CreateCursorIconIndirect().
2091 ----------------------------------------------------------------------
2092 Tue Jun 6 12:11:41 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
2095 Fixed bug with drawing multi-column menus with vertical separator.
2097 * [debugger/debug.l]
2098 Fixed NULL-pointer reference after readline().
2100 * [if1632/winprocs.spec] [miscemu/int21.c] [miscemu/interrupts.c]
2101 Added interrupt vector emulation. Allows to retrieve an interrupt
2102 vector and jump to it without crashing.
2105 Moved ldt.c to memory directory.
2108 Implemented LockCurrentTask() and GetInstanceData().
2110 * [objects/bitblt.c]
2111 Fixed a bug that caused StretchBlt() to use wrong colors when
2112 stretching a monochrome bitmap to a color display.
2114 * [objects/bitmap.c]
2115 Fixed a segmented pointer bug in CreateBitmapIndirect().
2118 Added possibility to have arguments for register functions; used
2119 by interrupt vectors to remove the flags from the stack.
2120 Generate a new function CallTo32_LargeStack(), that allows calling
2121 a 32-bit function using the original 32-bit stack, for functions
2122 that need more that 64k of stack.
2124 Tue May 30 10:29:56 1995 Martin von Loewis <martin@informatik.hu-berlin.de>
2126 * [if1632/shell.spec] [misc/shell.c]
2127 DoEnvironmentSubst: fixed prototype
2129 * [if1632/gdi.spec] [objects/palette.c]
2130 SetSystemPaletteUse: new function
2132 * [if1632/kernel.spec] [loader/resource.c]
2133 DirectResAlloc: new function
2135 * [if1632/user.spec] [windows/keyboard.c]
2136 SetKeyboardState: new function
2138 Mon May 29 12:58:28 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2141 Prevent interrupts from destroying the args for a 32 bit function
2142 by loading the correct value into %esp directly after %ss.
2144 * [loader/ne_image.c] [loader/module.c]
2145 The new instance must be created earlier in LoadModule(), so that
2146 fixups referencing it will be handled correctly.
2147 Initialize the local heap for a DGROUP in NE_LoadSegment().
2150 Like RLE8 bitmaps, RLE4 bitmaps don't always end with a proper code.
2151 This used to crash Wine. Fixed.
2154 Fix possible null pointer dereference in debugging output.
2157 Handle user input in the edit control better. Some bugs fixed.
2160 Started implementing moveable blocks. This is unfinished (!), but
2161 at least it does not seem to break things.
2163 Wed May 24 13:26:36 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2166 LoadModule(): DLLs occasionally have a data segment, and they work
2167 much better if it is loaded :-)
2168 LoadLibrary(): pass HMODULE instead of HINSTANCE to NE_InitializeDLLs.
2169 FindModule(): also strip off the last backslash of the pathnames
2170 (Winhelp tried to load C:\WINDOWS\SYSTEM\COMMDLG.DLL).
2171 GetModuleHandle(): just call MODULE_FindModule, it does the same job,
2174 * [loader/ne_image.c]
2175 LocalInit() the heap of a DLL in NE_InitDLL. (This is probably
2176 not really correct, it seems that all programs and DLLs try to do
2177 this themselves. But they pass weird parameters.)
2178 NE_InitializeDLLs should also call NE_InitDLL for the passed hModule.
2180 * [loader/task.c] [misc/user.c]
2181 Finish global initializations in InitTask instead of InitApp, or
2182 all the DLLs will be initialized in InitTask without any available
2185 ----------------------------------------------------------------------
2186 Sun May 21 12:30:30 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
2188 * [debugger/hash.c] [debugger/info.c]
2189 Added support for symbolic segmented addresses. Add symbols for all
2190 built-in API entry points.
2192 * [if1632/relay.c] [include/dlls.h]
2193 Removed dll_table structure, as we now use the built-in module
2196 * [if1632/relay.c] [loader/main.c]
2197 Removed winestat option, as it was no longer very meaningful.
2199 * [include/stackframe.h]
2200 New macro MAKE_SEGPTR that creates a segmented pointer to a local
2201 variable on the 32-bit stack.
2204 Added support for multiple instances of an application.
2205 Implemented LoadModule() and FreeModule().
2207 * [loader/ne_image.c] [loader/task.c]
2208 Moved initialisation of built-in DLLs to InitTask().
2211 Implemented discardable blocks.
2214 Search path of current executable in OpenFile().
2215 Fixed bug with searching in Windows path.
2218 Hard-coded translation tables for Ansi<->Oem.
2221 Moved some global initializations to InitApp(), because they need
2222 a task context to be performed.
2225 Handle R2_BLACK and R2_WHITE specially so that they work correctly
2226 with palette displays.
2229 Suppressed generation of the C file for DLL specs, because it's no
2230 longer needed. Output all the assembly code directly to stdout.
2231 Some changes to integrate Win32 support from Martin von Loewis.
2233 * [windows/msgbox.c]
2234 Moved message box code from misc/ to windows/.
2236 Mon May 15 23:40:04 1995 Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
2238 * [misc/audio.c] [misc/mcicda.c] [misc/mcianim.c] [misc/midi.c]
2239 [misc/mmaux.c] [misc/mmsystem.c]
2240 Modify code & use pointers conversion macros.
2241 Make cdaudio & wave devices work again (only using some applets).
2244 Change getc() to fgetc() where needed.
2246 Mon May 15 22:10:56 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
2248 * [if1632/Imakefile]
2249 added entries for the new files gdi32.spec, kernel32.spec,
2250 user32.spec, shell32.spec and winprocs32.spec.
2252 * [if1632/commdlg.spec][if1632/kernel.spec][if1632/shell.spec]
2253 [if1632/storage.spec][if1632/system.spec][if1632/user.spec]
2254 ChooseFont, RESERVED5, InternalExtractIcon: Marked as stubs
2255 ExtractAssociatedIcon, DoEnvironmentSubst, DumpIcon:
2256 stub implementations provided
2257 marked storage.dll,storege.sys functions as stubs
2259 * [include/pe_image.h]
2260 Added structures WIN32_builtin and WIN32_function
2263 PE_Import_Directory: renamed reserved fields to
2264 TimeDate, Forwarder, Thunk_List
2266 * [include/winerror.h]
2272 * [loader/pe_image.c]
2273 xmmap: map BSS anonymous
2274 dump_imports: renamed to fixup_imports, do the fixup of imported
2276 PE_LoadImage: pass raw data size to xmmap
2278 * [loader/resource.c]
2279 DumpIcon: new function
2285 make stdout and stderr unbuffered
2288 DoEnvironmentSubst: new function
2291 FONT_MatchFont: try oblique if there is no italic
2293 * [rc/Imakefile][rc/parser.l]
2294 yywrap: new function
2295 Don't link with libfl.a on Linux
2298 Added keywords stdcall, subsystem, base
2299 GenerateForWin32: new function
2300 BuildSpecFiles: call GenerateForWin32 if subsystem is win32
2302 Mon May 15 10:38:14 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2304 * [controls/listbox.c] [controls/combo.c] [windows/defwnd.c]
2307 * [misc/message.c] [misc/main.c] [rc/sysres*.rc] [include/texts.h]
2308 Rewrote message box handling.
2310 * [windows/dialog.c]
2311 Dialogs should be invisible until after WM_INITDIALOG is seent.
2312 Don't switch to invisible dialog items on a TAB keypress.
2315 Send WM_NCPAINT message in MDIRestoreChild().
2317 * [windows/painting.c]
2318 Fixed typo (&& -> &).
2320 * [windows/message.c] [if1632/user.spec]
2321 Implemented PostAppMessage().
2324 SetCapture(0) should act like ReleaseCapture().
2326 Tue May 9 11:55:52 1995 Eddie C. Dost (ecd@dressler.de)
2329 Changed CDEBUGFLAGS for systems running __ELF__ (temporarily)
2330 Added ASFLAGS to exported variables.
2332 * [debugger/readline/Imakefile]
2333 Moved defines for libreadline from DEFINES to EXTRA_DEFINES
2335 * [memory/local.c] [miscemu/int21.c]
2336 Added some more debugging outputs.
2338 Mon May 8 00:55:27 MET DST 1995 Dag Asheim (dash@ifi.uio.no)
2341 Fixed a "FIXME" concerning norwegian translation.
2343 Sun May 7 23:25:23 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2346 Removed warnings in a couple of files and deleted some obsolete code.
2348 * [controls/listbox.c]
2349 Cleanup, speed improvements & lots of bug fixes.
2351 * [controls/combo.c]
2352 Mostly rewritten. This is still very buggy, but not quite as bad as
2355 * [include/commdlg.h] [misc/commdlg.c]
2356 Removed the need for sysres.dll. Small bug fixes.
2358 * [objects/oembitmap.c] [include/bitmaps/<many>] [include/windows.h]
2359 [loader/library.c] [loader/main.c] [rc/sysres*.rc]
2360 Removed sysres.dll and replaced the remaining bitmaps/icons with
2363 * [misc/message.c] [windows/nonclient.c] [misc/main.c]
2364 [if1632/winprocs.spec]
2365 "About Wine..." now brings up a standard ShellAbout() window with
2366 the Wine icon and the list of contributors.
2369 Fixed ShellAbout()/AboutDialogProc() to show the right icon.
2372 Small hack for non-alphanumeric keys: Dont't send the ascii value in
2373 the WM_KEYDOWN message, but some unused code instead. Should be done
2374 properly by sending different codes for each key. The edit control
2375 used to get a VK_DELETE message each time the user typed '.'.
2378 Removed a check for CS_GLOBALCLASS in CLASS_FindClassByName().
2379 This used to be no problem, but breaks Resource Workshop in 950403.
2382 New diagnostic for a bug I've been encountering. If it shows up,
2385 Sun May 7 23:11:18 EDT 1995 William Magro (wmagro@tc.cornell.edu)
2388 Handle situation when 'dc' exists, but palette mapping
2389 does not. (Fixes kidpix2 demo.)
2391 Sun May 7 03:32:00 1995 Charles M. Hannum (mycroft@mit.edu)
2394 LDT_Print: Only show the number of entries that the kernel
2395 returned. Make this work for NetBSD.
2397 Fri May 5 02:53:26 1995 Charles M. Hannum (mycroft@mit.edu)
2399 * [debugger/dbg.y] [include/wine.h] [loader/signal.c]
2400 Modify cs and ds selector values for NetBSD-current.
2402 * [debugger/debug.l]
2403 $sp, $esp: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
2405 * [debugger/regpos.h]
2406 Modify sigcontext format for NetBSD-current.
2407 SC_ESP: Use RN_ESP_AT_SIGNAL rather than RN_ESP.
2410 SELECTOR_TO_ENTRY: Explicitly clear the top half of the selector
2411 value, since only 16 bits of it may have been saved.
2413 * [misc/winsocket.c]
2414 Set structure packing with `#pragma pack' to accomodate
2415 other/older compilers.
2417 Tue May 2 18:15:01 1995 Paal Beyer (beyer@idt.unit.no)
2420 Fixed path-names so when changing directory the listboxes
2423 * [debugger/dbg.y debugger/debug.l wine.ini]
2424 Added SymbolTableFile to wine.ini so symbols can be read
2425 without standing in the directory containing wine.sym.
2426 Added the possibility to specify full name of wine.sym from
2427 the debugger prompt.
2429 ----------------------------------------------------------------------
2430 Sat Apr 29 20:42:01 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
2432 * [controls/static.c]
2433 Fixed painting of SS_*FRAME controls.
2435 * [if1632/callback.c]
2436 Pass the window instance as DS to the 16-bit window procedure.
2437 Rewrote Catch() and Throw() to make them work with multiple tasks.
2440 New function MAIN_Init() to perform initializations before the
2441 first task is started instead of doing them in InitApp().
2442 Temporary hack to command-line parsing to load one program per
2443 command-line argument, to make testing task-switching easier.
2446 Reimplemented modules to use a Windows-compatible layout and to
2447 allow multiple tasks and multiple module instances. Not really
2450 * [loader/task.c] [misc/exec.c]
2451 Reimplemented tasks to use a common address space, and implemented
2452 preliminary task-switching capabilities.
2455 Fixed bug in GlobalNext().
2458 Updated the list of contributors. Let me know if I forgot someone.
2461 Use one DTA per task instead of a global one.
2463 * [objects/bitblt.c]
2464 Fixed bug in BitBlt() that could cause BadMatch errors.
2467 Added new function type 'stub', that makes possible to export an
2468 unimplemented function by name as well as by ordinal. This will
2469 avoid loading errors for unimplemented functions.
2470 Generate an in-memory module layout for built-in DLLs so that the
2471 same code can be used for built-in and loaded modules.
2472 Changed relay code to make it unnecessary to save the value of the
2475 * [windows/message.c]
2476 Implemented multiple message queues and preliminary task-switching
2477 capabilities. Inter-task SendMessage() calls are not implemented
2478 yet and will probably cause crashes if used.
2480 * [windows/property.c]
2481 Reimplemented properties and allocate them on the USER heap.
2484 Fixed bug in SetWindowWord().
2485 Reimplemented EnumWindows() and EnumTaskWindows().
2487 Tue Apr 18 09:48:38 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2490 GetSystemParametersInfo(): Additional action SPI_GETICONTITLEFONT.
2492 * [loader/resource.c]
2493 Removed the check for NE_SEGFLAGS_EXECUTEONLY, since it broke
2497 * [objects/font.c] [include/windows.h]
2498 Fixed a bug in InitFontsList() and worked on the EnumFonts()
2499 functions to make them comprehensible.
2501 * [controls/button.c]
2502 Fixed my previous patch to handle LBUTTONUP messages.
2504 Fri Apr 14 11:41:28 1995 Cameron Heide (heide@ee.ualberta.ca)
2506 * [misc/network.c, misc/dos_fs.c]
2507 Implemented WNetGetConnection. All that is currently
2508 supported are drives, for which the remote name is simply
2509 the redirected UNIX directory name.
2512 More drive number validity checking.
2514 Wed Apr 12 11:28:37 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2516 * [controls/listbox.c]
2517 Oops, my previous change to ListBoxDirectory broke the Borland
2518 file open dialog. Fixed.
2520 Mon Apr 10 23:17:12 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
2522 * [if1632/ole2nls.spec] [misc/ole2nls.c] [misc/Imakefile]
2523 New file ole2nls.c. Added stubs for GetUserDefaultLCID,
2524 GetSystemDefaultLCID, GetUserDefaultLangID, GetSystemDefaultLangID.
2526 Mon Apr 10 10:05:18 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2528 * [memory/global.c] [memory/local.c] [include/windows.h]
2529 GlobalReAlloc(): If GMEM_MODIFY is set, don't resize the block.
2530 LocalReAlloc(): Same for LMEM_MODIFY.
2532 * [controls/listbox.c]
2533 Fixed a bug in ListBoxDirectory that prevented commdlg from working.
2534 Check for errors in some more places.
2536 * [if1632/gdi.spec] [if1632/user.spec]
2537 16 bit callback functions should be passed as segptrs.
2539 * [include/dlls.h] [loader/ne_image.c] [loader/selector.c]
2541 Prevent a DLL from being initialized twice (Borlands Resource
2542 Workshop used to do this).
2543 Provide an additional flag for each w_file that indicates whether
2544 it's an EXE or a DLL, for combinations like pbrush.exe/.dll.
2546 * [controls/button.c]
2547 Handle LBUTTONUP messages even if the button no longer has the
2548 capture (for WinHelp).
2550 * [include/wintypes.h]
2551 FARPROC is now a segptr for the emulator and a function
2552 pointer for the library.
2554 * [misc/commdlg.c] [misc/commdlg.h]
2555 Cleaned the file dialogs up a little. They now work reasonably well,
2556 although there are still some problems (e.g. files are initially
2559 * [windows/class.c] [if1632/user.spec] [include/windows.h]
2560 GetClassInfo() must take a segptr, as it checks whether the
2562 GetClassName() called the wrong atom function. No surprise it didn't
2566 AnsiToOem() and OemToAnsi() didn't terminate the strings. Fixed.
2567 Removed some warnings.
2569 * [if1632/relay.c] [if1632/ddeml.spec] [include/dlls.h]
2570 New spec file for the 3.1 DDEML DDL.
2573 Small fix to ChangeMenu - mask out the obsolete flags
2574 (MF_APPEND == MF_OWNERDRAW, this led to problems). It also had
2575 problems with the MF_BYPOSITION flag.
2577 * [windows/message.c]
2578 SendMessage(): call the WH_CALLWNDPROC hook function. This is rather
2579 ugly, I'm afraid. Windows probably passes a pointer to the 16 bit
2580 stack for speed reasons.
2582 * [windows/hook.c] [include/windows.h]
2583 Set/HookWindowsHook() shouldn't just call their *Ex counterparts, as
2584 they have slightly different semantics.
2585 MS Hearts now works somewhat, if you disable the new builtin DDEML.
2586 The graphics are completely messed up, though.
2588 ----------------------------------------------------------------------
2589 Sun Apr 2 18:31:12 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
2591 * [Configure] [if1632/Imakefile]
2592 Removed new build and short names options.
2594 * [if1632/*.c] [tools/build.c]
2595 Implemented compiled call-back functions for better performance;
2596 all the relay code is now done in assembly code generated by the
2598 Relay code is no longer dependent on being loaded below 64K.
2600 * [loader/resource.c]
2601 Fixed memory leak in LoadString(). A fix will also be needed for
2605 Implemented global heap arenas, so we can store informations about
2606 global blocks, like lock counts or owner handle.
2607 Implemented FarGetOwner() and FarSetOwner().
2608 Implemented global heap TOOLHELP functions.
2610 * [memory/selector.c]
2611 Bug fix: it was not possible to re-use a free selector.
2613 Sun Apr 2 01:34:52 1995 Constantine Sapuntzakis (csapuntz@mit.edu)
2615 * [controls/listbox.c]
2616 Major work on listbox code
2617 - Many bugs fixed (still many bugs)
2618 - More messages supported
2621 Fri Mar 31 03:27:16 EST 1995 William Magro (wmagro@tc.cornell.edu)
2624 Lots of bug fixes related to diappearing text, lost carets,
2625 highlighting, segmentation faults, occurance of random
2626 characters, insertion of characters over selection, misplaced
2627 caret location, display corruption, end of line behavior, etc.
2629 * [controls/widgets.c]
2630 EDIT class doesn't want to use CS_PARENTDC flag.
2632 Thu Mar 30 20:58:25 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2634 * [loader/selector.c]
2635 FixupFunctionPrologs() should also handle multiple data modules.
2636 (this bug only became visible because MakeProcInstance() was fixed
2640 Simplified DOS_SimplifyPath.
2641 Small fix to DOS_opendir to reuse an entry if an open directory
2642 is opened again, to prevent "too many open directories" messages.
2644 Thu Mar 30 12:05:05 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
2646 * [if1632/compobj.spec][include/compobj.h][misc/compobj.c]
2647 CoDisconnectObject: new stub function
2652 * [loader/ne_image.c]
2653 NE_FixupSegment: Be more generous on additive fixups
2655 * [if1632/user.spec][misc/network.c]
2656 Add more WNet* stubs
2658 Wed Mar 29 11:47:22 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2660 * [controls/listbox.c]
2661 DlgDirList(): send segptr instead of linear pointer
2662 in message to static control
2664 Tried to implement ownerdrawn menuitems. Doesn't work.
2665 * [if1632/gdi.spec] [include/windows.h] [objects/font.c]
2666 Provide a stub for GetRasterizerCaps()
2667 * [loader/selector.c]
2668 Pass end address instead of length to LocalInit() in
2671 LocalInit(): If there's already a local heap in the segment, do
2672 nothing and return TRUE
2673 * [objects/linedda.c]
2674 Replaced buggy LineDDA() with a Bresenham algorithm. Should work
2676 * [windows/cursor.c]
2677 LoadCursor()/CreateCursor(): Cleaned up the mess. Needs some
2680 Tue Mar 21 17:54:43 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2682 * [if1632/relay.c] [if1632/callback.c] [include/dlls.h]
2683 [if1632/winprocs.spec] [if1632/winprocs.c] [include/winprocs.h]
2684 [controls/widgets.c] [misc/shell.c] [misc/commdlg.c]
2685 [windows/nonclient.c] [misc/message.c]
2686 Added a new builtin DLL that provides 16 bit entry points for all
2687 the Def*Procs (DefDlgProc, ButtonProc etc.). OWL programs work
2690 RegOpenKey()/RegCreateKey() bugs fixed.
2691 * [loader/ne_image.c]
2692 Skipping the initialization of a DLL when CS == 0 was broken.
2694 ----------------------------------------------------------------------
2695 Sun Mar 19 16:30:20 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
2698 Implemented a new memory mapping scheme. There's no longer a
2699 one-to-one mapping between 16-bit and 32-bit pointers. Please see
2700 file DEVELOPERS-HINTS for technical details.
2702 * [controls/scroll.c]
2703 Fixed bug when dragging mouse in horizontal scrollbars.
2705 * [tools/build.c] [if1632/*.spec]
2706 Removed support for C callback functions and for re-ordering
2707 of the 32-bit arguments, as these were never used. This should
2708 allow a more efficient callback scheme to be implemented.
2710 * [if1632/olecli.spec]
2711 Reduced the number of entries to make the 16-bit code fit in 64k.
2712 This limitation will soon be removed.
2715 Rewrote LDT manipulation functions and implemented LDT_GetEntry().
2718 Rewrote Global*() routines to use the new selector allocation
2722 Rewrote local heap handling to use a Windows-compatible layout
2723 (not really finished yet).
2724 Implemented TOOLHELP heap-walking routines.
2726 * [memory/selector.c]
2727 Implemented LDT manipulation API functions.
2729 Tue Mar 14 19:50:28 EST 1995 William Magro (wmagro@tc.cornell.edu)
2731 * [windows/defdlg.c]
2732 Fixed problem where dialogs closed using the System menu
2733 ('Close' item or double click on close box) would
2736 Sun Mar 12 14:28:13 1995 Michael Patra <micky@marie.physik.TU-Berlin.DE>
2738 * [controls/listbox.c]
2739 Removed most of the statements for sending a notification message
2740 ListBoxDirectory(), DlgDirSelect(), DlgDirList(): Improved the
2741 code; Borland's standard file open dialog will work now.
2743 * [misc/main.c], [misc/file.c], [miscemu/int21.c]
2744 Added support for new command line option "-allowreadonly". If set
2745 an attempt to open a read only file in write mode will be converted
2746 to opening it read only (many programs try to open all files in
2747 read/write mode even if they only intend to read it - this might
2748 cause a few under problems under an unix-like environment where most
2749 files are read only for a "normal" user)
2751 * [loader/selector.c]
2752 GetMemoryReference(): Added support for __AHIncr and __AHShift
2755 DOS_SimplifyPath(): This routine simplifies path names ( e.g., it
2756 will change "/usr///local/bin/../lib//a" to "/usr/local/lib/a" )
2760 TEXT_NextLine(): Removed a bug in the handling of LF's
2763 GetFileDateTime(): Fixed. SetFileDateTime() is still broken.
2765 Sat Mar 11 19:46:19 1995 Martin von Loewis <loewis@informatik.hu-berlin.de>
2768 ChangeMenu: defaults to MF_INSERT
2769 InsertMenu: allow insertion even if position is one after last item
2771 * [if1632/Imakefile] [if1632/compobj.spec] [if1632/relay.c]
2772 [if1632/storage.spec] [include/dlls.h]
2773 Added stubs for STORAGE.DLL and COMPOBJ.DLL
2775 * [if1632/user.spec] [windows/message.c]
2776 InSendMessage: new function
2778 * [include/neexe.h][include/ne_image.c]
2779 NE_FixupSegment: fixed handling of additive records
2781 * [loader/selector.c]
2782 GetEntryDLLName: return NULL instead of pointer to DLL.0 if not found
2785 win_fault: Enter debugger on SIGFPE, too
2787 Wed Mar 1 21:47:42 1995 Cameron Heide (heide@ee.ualberta.ca)
2790 Various minor modifications to the clock tick counter,
2791 FindFirst/FindNext funcs, and DPB handling.
2793 ----------------------------------------------------------------------
2794 Thu Mar 2 17:44:32 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
2796 * [loader/resource.c] [objects/oembitmap.c]
2797 Removed sysres bitmap code; you need libXpm to compile now.
2798 Implemented LoadIcon() for OEM icons.
2800 * [include/bitmaps/oic_*]
2801 Added OEM icons in XPM format.
2804 Bug fix in DrawIcon().
2807 Removed; all bitmaps are stored in XPM format now.
2809 Tue Feb 28 18:54:28 1995 Tomi Leppikangas (tomilepp@paju.oulu.fi)
2812 Small patch to fix edit-control when it's created with text.
2814 Sun Feb 26 20:22:15 1995 Michael Veksler (e1678223@tochnapc2.technion.ac.il)
2816 * [tools/make_debug]
2817 The created macros won't have side effects anymore when used in
2818 an "if-else" structure. No more warnings from the compiler when
2819 compiled without defining DEBUG_RUNTIME.
2821 Sun Feb 26 20:20:49 1995 Michael Patra <micky@marie.physik.TU-Berlin.DE>
2823 * [controls/listbox.c]
2824 ListBoxDeleteString(): Fixed
2826 * [loader/selector.c]
2827 GetMemoryReference(): When special segments are referenced by
2828 pseudo-functions like __0040H, a reference to a "normal" segment
2829 will be returned preventing the program from crashing as soon
2830 as the referenced segment is actually accessed.
2832 Sun Feb 26 15:55:14 MET 1995 Martin von Loewis (loewis@informatik.hu-berlin.de)
2835 Ask for OLE stubs and malloc debugging
2838 link with libmcheck.a if necessary
2840 * [if1632/relay.c][include/dll.h][if1632/Imakefile]
2841 Add OLE stubs, increase number of builtins
2842 dll_name_table_entry_s: new field dll_is_used
2844 * [loader/library.c]
2845 GetModuleHandle,ModuleNext: Check dll_is_used
2847 * [loader/ne_image.c]
2848 Bark on unsupported NE_RADDR_LOWBYTE flag (what is it supposed
2851 * [misc/olecli.c][misc/olesvr.c]
2852 New files. Add to misc/Imakefile
2855 DOS_GetUnixFileName: make a copy of the input parameter to
2859 MAIN_ParseDLLOptions: new function
2860 MAIN_ParseOptions: treat -dll command line flag
2861 main: add support for malloc debugging
2863 Fri Feb 24 12:43:27 1995 Erik Svendsen <z3esv@kmd-ac.dk>
2866 Small patch for people using FreeBSD-2.1.0.
2868 Fri Feb 17 22:49:18 1995 Miguel de Icaza (miguel@roxanne.nuclecu.unam.mx)
2871 Added return values to the Call* routines
2873 * [toolkit/winmain.c]
2874 Load the resource file properly for WineLib applications.
2876 ----------------------------------------------------------------------
2877 Thu Feb 16 18:57:31 1995 Alexandre Julliard (julliard@sunsite.unc.edu)
2880 Only save the lower 16-bits of SP and BP.
2882 * [if1632/callback.c]
2883 When calling to 16-bit code, restore DS from its previous value on
2884 entry to the 32-bit code, instead of from the code segment owner.
2886 * [if1632/relay.c] [include/stackframe.h]
2887 Use a structure to represent the 16-bit stack frame layout
2888 instead of hard-coded offsets.
2891 Use y.tab.c for bison output file for compatibility with yacc.
2894 Small optimization for calls to 32-bit code.
2896 Sun Feb 12 03:19:47 1995 Michael Veksler (s1678223@t2.technion.ac.il)
2899 Fixed bug (inflicted by previous change) - SEGV on ZMAGIC file format.
2901 Sun Feb 11 20:00:00 1995 Göran Thyni (goran@norrsken.bildbasen.se)
2904 Remove unnecessary sym-table loading when stopped in 16-bit mode.
2906 * [include/segmem.h] [loader/selector.c]
2907 Added dynamic alloction of selectors.
2908 Fixed some problems with large programs SIGSEGV-ing while
2909 running out of selectors.
2911 * [include/segmem.h] [loader/selector.c] [if1632/callback.c]
2912 [memory/global.c] [memory/heap.c] [memory/linear.c]
2913 Use __AHSHIFT and __AHINCR instead of 3 and 8.
2915 Mon Feb 6 18:07:38 1995 Cameron Heide (heide@ee.ualberta.ca)
2918 Better relative path handling when converting filenames between
2919 dos and unix, allowing '.' to be used in the Windows path.
2920 Startup working dir is now based on current working dir.
2922 Sat Feb 4 21:21:13 1995 Michael Veksler (s1678223@t2.technion.ac.il)
2924 * [if1632/relay.c] [include/dlls.h] [tools/build.c]
2925 Squeezed data structure that references internal dll's (mostly
2926 "struct dll_table_entry_s"). Caused 20% reduction in executable
2929 Fri Feb 3 18:53:15 1995 Martin v. Loewis (loewis@marie)
2932 make wine.sym only when making emulator
2935 OpenFile(): report as not implemented for WINELIB
2938 Fix CONVERT_HOSTENT and friends for use with WINELIB
2940 * [rc/Imakefile][rc/rc.y][rc/parser.c]
2941 Rename rc.y to parser.y
2942 Use flex and bison on Sun
2945 CallWindowProc: fix parameter type
2948 Commented #ifdef sparc
2950 ----------------------------------------------------------------------
2951 Wed Feb 1 19:27:55 1995 Alexandre Julliard (julliard@lamisun.epfl.ch)
2953 * [windows/nonclient.c] [windows/winpos.c]
2954 Implemented maximized windows.
2955 Implemented icon positioning and ArrangeIconicWindows().
2956 Bug fixes in SetWindowPos().
2958 * [windows/painting.c]
2959 Implemented GetControlBrush().
2960 Window frame is no longer contained in the update region.
2963 Destroy owned windows upon DestroyWindow().
2965 Sun Jan 29 16:17:22 1995 David Metcalfe <david@prism.demon.co.uk>
2968 Changed line terminator to \r\n to be compatible with
2969 Windows. Fixed bug in text selection.
2971 Sun Jan 29 14:10:22 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
2974 Rewrote RegCreateKey and RegOpenKey, since they were completely broken.
2975 Fixed a bug in RegQueryKeyValue. Implemented RegEnumKey
2976 These functions now work somewhat more the way Windows programs expect
2979 ----------------------------------------------------------------------
2980 Sun Jan 22 18:55:33 1995 Alexandre Julliard (julliard@lamisun.epfl.ch)
2982 * [loader/resource.c] [objects/dib.c]
2983 Fixed icon loading and drawing, now that BitBlt() works correctly.
2985 * [objects/clipping.c] [objects/region.c]
2986 Implemented elliptic regions with a set of rectangle. This greatly
2987 simplifies the region code and should boost clipping performance.
2990 Fixed bug that caused seg-fault on 24bpp displays.
2992 * [objects/bitblt.c]
2993 Fixed bug when shrinking a bitmap to more than half its size.
2995 * [windows/graphics.c]
2996 Fixed bugs in PaintRgn() and Polyline().
2998 * [windows/nonclient.c] [windows/painting.c] [windows/winpos.c]
2999 Fixed some problems with window background painting.
3001 Thu Jan 12 12:20:25 PST 1995 Ross Biro (biro@yggdrasil.com)
3004 * [tools/newbuild.c]
3008 * [loader/selector.c]
3009 * [include/segmem.h]
3011 Changed selector code and 16/32 bit xfer code so that wine
3012 no longer has to be loaded low in memory. Changed wine
3013 to work with ELF binary formats under Linux.
3015 Sat Sep 17 11:08:49 1994 Eric Youngdale (eric@esp22)
3017 * [debugger/db_disasm.c]
3018 New instruction disassembler - borrowed from Mach kernel. Has a
3019 BSD style of license as opposed to the gdb code we were previously
3020 using which was under the GPL.
3022 ----------------------------------------------------------------------
3023 Mon Jan 9 18:27:11 1995 Alexandre Julliard (julliard@lamisun.epfl.ch)
3026 Compiling with -Wall flag.
3029 Fixes to minimize the number of compilation warnings.
3031 * [objects/bitblt.c]
3032 Fixed BitBlt() and used the same code to rewrite PatBlt() and
3033 StretchBlt(). The three *Blt() functions should now be correct in
3034 every case (famous last words).
3036 * [objects/brush.c] [objects/dither.c]
3037 Merged the two files into brush.c
3040 Fixed bug when the Windows programs forget to re-select the
3041 original bitmap in a memory DC.
3044 Tty to use 'fixed' font when the system font can't be found.
3046 * [windows/dialog.c]
3047 Tentative fix to make dialogs look better when using fixed-width
3050 * [windows/graphics.c]
3051 Partially implemented the PS_INSIDEFRAME pen style.
3053 * [windows/nonclient.c]
3054 Fix for windows that have the WS_EX_DLGMODALFRAME style bit
3055 without the WS_DLGFRAME style.
3057 Thu Jan 5 13:37:42 1995 Cameron Heide (heide@ee.ualberta.ca)
3060 GlobalCompact should now return the correct value when the
3061 largest run of free blocks includes the last block.
3064 Tiling and cascading windows without any MDI children should
3065 no longer crash (assuming no-op is the correct thing to do).
3067 Sun Jan 1 23:30:25 1995 Fons Botman <botman@rabo.nl>
3070 GetTextExtentPoint: fixed debug output, str is counted string, not
3074 DLLRelay: when debugging_stack got segv, added upper bound for
3077 ----------------------------------------------------------------------
3078 Tue Dec 27 13:35:16 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
3081 All objects files are now kept in their respective directory.
3086 * [objects/bitblt.c]
3087 Rewrote BitBlt() to look right in every case, while minimizing
3088 the impact on performance. Not really finished yet.
3090 * [objects/bitmap.c] [objects/dc.c]
3091 Fixed bug with pattern brushes.
3093 * [objects/clipping.c] [windows/painting.c]
3094 Fixes for logical coordinates.
3096 * [objects/color.c] [windows/graphics.c]
3097 Fixed GetPixel() to return the correct color, and made it faster.
3099 * [objects/region.c]
3100 Fixed bug in CombineRgn() when one of the region is empty.
3102 Fri Dec 22 01:42:57 MET 1994 Dag Asheim (dash@ifi.uio.no)
3105 Don't assume that expr handles '==', use '=' instead.
3106 Give a (hopefully informative) message if imake fails.
3108 ----------------------------------------------------------------------
3109 Wed Dec 7 14:52:25 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
3111 * [controls/listbox.c]
3112 Fixed problems due to new scroll-bar code.
3114 * [loader/signal.c] [miscemu/ioports.c]
3115 Handle I/O opcodes that use an absolute address.
3118 Implemented TabbedTextOut().
3120 Sat Dec 3 18:53:08 1994 Kenneth MacDonald <K.MacDonald@ed.ac.uk>
3122 * [objects/metafile.c]
3123 Implemented GetMetafile().
3124 Fixed bug in PlayMetaFile() when reading disc based metafile records.
3125 Added META_POLYPOLYGON, META_DELETEOBJECT and META_EOF to
3126 PlayMetaFileRecord().
3128 Wed Nov 30 06:32:25 1994 Martin von Loewis (martin@cs.csufresno.edu)
3131 wine.sym: Remove gcc2_compiled and friends
3133 * [controls/listbox.c][if1632/relay.c][if1632/relay.c]
3134 [loader/resource.c][memory/heap.c][objects/dib.c][windows/dialog.c]
3135 Replace #ifdef DEBUG_XXX with if(debugging_xxx){
3138 CallToLibMain: New function
3140 * [if1632/relay.c][include/options.h][misc/main.c]
3141 [miscemu/int1a.c][miscemu/int21.c][miscemu/kernel.c]
3142 removed Options.relay_debug
3145 HEAP_OWNER: Use ds instead of cs:ip
3147 * [loader/ne_image.c]
3148 LoadNEImage: Remember current exe, handle nodata dlls
3149 InitNEDLL: handle nodata dlls, call CallToLibMain
3151 * [loader/selector.c]
3152 CreateSelectors: Initialize auto_data_sel with 0
3155 HEAP_CheckHeap: Check prev
3156 HEAP_CheckLocalHeaps: new function
3159 Remember and dump only changed profiles
3162 Introduce debugging_xxx flags
3164 Sun Nov 27 23:13:22 MET 1994 <erik@xs4all.nl>
3166 * [clipboard.h color.h dc.h dos_fs.h event.h font.h graphics.h
3167 if1632.h kernel.h library.h miscemu.h ne_image.h nonclient.h
3168 pe_image.h selectors.h wintypes.h]
3172 - Commented all 'static char copyright statements', see misc/main.c
3173 - moved prototypes to headers files, fixed wrong prototypes.
3174 - *please* add a header file for each .c if you need to export
3178 Added one static string which list the names of the contributors.
3180 Fri Nov 25 16:24:27 MET 1994 Dag Asheim (dash@ifi.uio.no)
3183 Made the support for multiple languages more automatic. Added
3184 a [fonts] section to the wine.conf file. Made the defaults
3185 better. Generally cleaned it up.
3187 * [rc/sysres_No.rc] [rc/sysres_De.rc] [rc/sysres.c]
3188 Norwegian resources and small fixes to the german resources.
3190 Wed Nov 23 20:28:59 1994 Martin von Loewis (martin@cs.csufresno.edu)
3192 * [debugger/break.c]
3193 bark(), toggle_next(), should_continue(): New functions
3194 insert_break(): Fixed, adds write access to page before writing
3195 wine_bp.next_addr: new structure field
3198 Changed symbol's value to be it's value instead of the value
3199 pointed to by the symbol.
3200 Changed SIGTRAP handling to allow continuation after break point
3203 ShellAbout(): Load resource from memory
3205 ----------------------------------------------------------------------
3206 Sun Nov 20 18:30:06 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
3208 * [controls/scroll.c] [include/scroll.h]
3209 Rewritten most of scroll-bar code for better Windows look & feel.
3210 Implemented EnableScrollBar().
3211 Preliminary keyboard support.
3213 * [objects/bitblt.c]
3214 Fixed BadMatch error for BitBlt() and StretchBlt() when reading
3215 bits from outside the visible region.
3217 * [objects/oembitmap.c] [include/bitmaps/obm_*]
3218 Use XPM symbolic colors to load bitmaps. This allows the colors
3219 of the bitmaps to depend on the system colors.
3221 * [tools/make_debug]
3222 Made the make_debug script more robust.
3224 * [windows/dialog.c]
3225 Fixed CheckRadioButton().
3227 * [windows/nonclient.c]
3228 A few changes to scroll-bar drawing and tracking.
3230 * [windows/winpos.c]
3231 Renamed NextWindowFromPoint() to WINPOS_NextWindowFromPoint() to
3232 avoid confusion, and optimized it somewhat.
3234 Nov 19, 94 Martin Ayotte (wine@trgcorp.mksinfo.qc.ca)
3238 more coding but nothing spectacular.
3241 some coding to access '/dev/mixer'.
3244 some coding to read .MID files, but it's not playing yet.
3246 Sun Nov 13 19:31:03 1994 James Youngman (mbcstjy@afs.man.ac.uk)
3249 Reimplemented DIB_SetImageBits_RLE8() so that it would cope with
3250 bitmaps which don't end 0x00, 0x02 (previously it blew up). This
3251 includes some bitmaps output by Paint Shop Pro. Implementation is
3252 possibly now too lax. Please see the notes on the function about
3255 * [controls/desktop.c]
3256 The desktop pattern should be painted if the wallpaper doesn't
3257 cover the whole screen width OR the whole screen height.
3259 Sun Nov 13 00:07:11 MET 1994 Erik Bos <erik@xs4all.nl>
3262 Small bug in DIB_SetImageBits() fixed, bitmaps in 16,24 bpp
3265 * [loader/ne_resource.c] [include/resource.h]
3268 Thu Nov 10 20:44:58 1994 Martin von Loewis (martin@cs.csufresno.edu)
3272 Primitive compile-time support for multiple languages
3277 * [loader/resource.c]
3278 LoadBitmap: Recognize end of sysresbm properly
3281 Rules to compile resources simplified, dependencies changed
3284 Don't use sysresbm if using XPM
3286 * [windows/dialog.c]
3287 CreateDialogIndirectParam: Reverse Z-order of controls
3289 * [windows/message.c]
3290 MSG_TranslateMouseMsg: Fix HTTRANSPARENT handling
3292 * [windows/winpos.c]
3293 NextWindowFromPoint: New function
3295 * [controls/button.c]
3296 WM_NCHITTEST: Group Box is HTTRANSPARENT
3297 BUTTON_CheckAutoRadioButton: New function
3298 BM_SETCHECK: Added call to BUTTON_CheckAutoRadioButton
3300 Mon Nov 7 11:20:26 1994 Paul Falstad (pf@zoof.cts.com)
3303 Fix hang when using DrawText(..., DT_WORDBREAK) with a word that
3304 is too long to break.
3307 Don't assume helvetica if there is no font family; let the other
3308 font attributes decide what font to use.
3310 * [controls/widgets.c]
3311 Listboxes and combo boxes need to be notified of double-clicks.
3313 * [controls/listbox.c]
3316 scrolling to bottom of list box should display last item at the
3317 bottom, not at the top.
3319 list boxes need to allocate a separate heap for their item data,
3320 rather than using the user heap. Otherwise, it's very easy to run
3321 out of memory for list box items.
3323 removed redundant code in ListBoxAddString(). Implemented simple
3324 version of LBS_SORT.
3326 Don't put [.] in the list box when using DDL_DIRECTORY.
3328 * [controls/combo.c]
3329 Combos should pass CBS_SORT onto their list box.
3332 If window creation is aborted, remove the window from the
3335 * [controls/static.c]
3336 static controls with SS_ICON were always returning 0 from
3339 Make sure static controls have text to draw before drawing it.
3341 ----------------------------------------------------------------------
3342 Sun Nov 6 18:52:04 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
3344 * [objects/oembitmap.c] (New file)
3345 Added possibility to use .xpm files for OEM bitmaps.
3347 * [include/bitmaps/obm*] (New files)
3348 Redrawn all OEM bitmaps in xpm format.
3351 Add space for internal leading when using a negative font height.
3352 Stubs for AddFontResource() and RemoveFontResource().
3353 Fix in FONT_Init() for uninitialised default font.
3355 * [windows/dialog.c]
3356 Make font height negative as it is really a point size and not a
3357 pixel size; dialogs using 8-point fonts look better now.
3359 * [windows/graphics.c]
3360 Fixed the fix :-) for Pie() to make it work for Arc() and Chord() also.
3362 * [windows/nonclient.c]
3363 A few changes for new OEM bitmaps.
3365 Sun Nov 6 18:22:18 1994 Michael Patra <micky@marie.physik.tu-berlin.de>
3368 The names of local classes have to be stored using GlobalAtom*.
3369 Otherwise they couldn't be accessed from other modules (e.g. BWCC)
3372 CallTo16(cx): It's possible to set the contents of the cx-register.
3374 * [loader/ne_image.c]
3375 InitNEDLL(): The size of the local heap is now passed in the cx-
3376 register when initializing a DLL.
3379 LocalInit(): The case start==0 is now handled in the way it should.
3382 GetWindowLong(): If the adress of the windows function is requested
3383 it's no longer returned if it's within the Wine code (and therefore
3384 unreachable by a windows program). This makes Borland's OWL happy.
3387 EDIT_GetStr(): Added handling for off<0.
3389 Sun Nov 6 17:37:14 1994 Chris Jones <chrisj@ichips.intel.com>
3391 * [loader/library.c]
3392 Fixed infinite loop bug when two DLLs refer to each other (fixes
3393 hangup of Quicken during loading).
3395 Thu Nov 04 12:00:00 1994 Jan Willamowius (jan@janhh.sh.sub.de)
3398 Bug fix: The size of a disk an the available space
3399 is now returned in bytes instead of (incorrectly)
3402 Thu Nov 03 12:00:00 1994 Jan Willamowius (jan@janhh.sh.sub.de)
3404 * [windows/graphics.c]
3405 Bug fix: Pie segments are now filled with correct brush.
3407 Thu Nov 3 10:40:09 1994 Martin von Loewis (martin@cs.csufresno.edu)
3410 generate rc.o before loader.o
3413 CopySysMenu: generate SYSMENU on the fly, eliminate hSysMenu
3415 * [include/resource.h]
3416 Add struct ResourceTable
3419 Load system bitmaps from sysresbmTable
3421 * [misc/clipboard.c]
3423 IsClipboardFormatAvailable,EVENT_SelectionRequest: bug fixes
3426 generate rc.o from sysres.o and sysresbm.o. Added -lfl
3429 change style handling to allow ( S1 | S2 ) | S3
3433 Put bitmaps and icons to sysresbm, everything else to sysres
3437 Added -o, -c flags. New function set_out_file. Output to files.
3439 * [windows/dialog.c]
3440 DialogBoxIndirectPtr, DialogBoxIndirectParamPtr: New functions
3442 * [windows/nonclient.c]
3443 Create AboutWine dialog from template pointer
3445 ----------------------------------------------------------------------
3446 Sun Oct 30 13:01:18 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
3448 * [controls/static.c]
3449 Bug fix for SS_ICON controls.
3451 * [if1632/Imakefile]
3452 Fixed call.o dependencies.
3454 * [objects/clipping.c] [objects/dc.c]
3455 Fixed visible region handling. hVisRgn is always non-null now.
3458 Bug fix in GetDCEx for CS_OWNDC windows.
3460 * [windows/nonclient.c] [windows/painting.c]
3461 Fixes to icon window drawing.
3463 * [windows/winpos.c]
3464 A few fixes in SetWindowPos().
3466 Sun Oct 30 12:50:24 1994 Michael Patra <micky@marie.physik.tu-berlin.de>
3468 * [objects/bitblt.c]
3469 BitBlt(): BitBlt is now able to handle any raster operation. If
3470 the request can't be passed to XWindows directly, it's quite
3475 Improvements of the system for handling debug messages. Options are
3476 now also loaded from /usr/lib/X11/app-defaults/Wine (insert
3477 *debugoptions: +xxx there if you want to have turn messages xxx on).
3480 DestroyMenu(): The whole window won't be destroyed as a sideeffect
3484 OpenFile(): Fixed bug in searching in system/window-directory.
3486 Sun Oct 30 12:25:53 1994 Jimmy Tirtawangsa <j0t2527@tam2000.tamu.edu>
3488 * [include/windows.h]
3489 Bug fix for window related structures.
3490 DCB and COMSTAT are affected. They must be packed.
3493 Bug fix for COM ports:
3494 Dial and dialog window in terminal.exe now works.
3495 Non sequential COM assignments in wine.conf should not break now.
3496 Baudrate can be specified in wine.conf to overcome baudrate limitation
3497 in mswindow. See sample wine.ini
3500 add baudrate field to DosDeviceStructre
3503 Bug fix for font assignment.
3504 Use pairs of foundry and family fontnames in X11 to correspond with
3506 Put font assignment ini wine.ini.
3509 Adding optional baudrate after port name in "serialports" section
3510 Add new section, "fonts".
3511 "default" is special key in "fonts" to match any unmatch window font.
3513 Oct 29, 94 (new address) wine@trgcorp.mksinfo.qc.ca (Martin Ayotte)
3516 * [if1632/commdlg.spec] New file.
3517 * [misc/commdlg.c] New file.
3518 * [include/commdlg.h] New file.
3519 Begin of an emulated COMMDLG DLL, built-in for now.
3520 (BTW, if you want to switch between built-in & 16bits CommDlg, only
3521 thing you need to do is to put the real/dummy name in file relay.c)
3523 * [controls/scroll.c]
3524 * [controls/combo.c]
3525 * [controls/listbox.c]
3526 Few bug fixes and/or cosmetic.
3530 bug fixes and flags returned to emulate SB16.
3532 * [misc/midi.c] New file.
3533 skeleton for 'Midi' MMSYSTEM & MCI driver.
3535 * [misc/mcianim.c] New file.
3536 skeleton for 'Animation1' MCI driver.
3539 Add new stub for GetLastActiveWindow().
3541 Tue Oct 25 09:17:25 1994 Olaf Flebbe (flebbe@tat.physik.uni-tuebingen.de)
3543 * [if1632/call.S] [tools/build.c]
3544 Support for ELF format. (Not complete)
3546 Sun Oct 23 00:51:50 1994 Paul Falstad (pf@zoof)
3548 * [if1632/user.spec]
3549 Add stubs for ArrangeIconicWindows(), etc.
3551 * [if1632/kernel.spec]
3552 Add IsBad*Ptr() functions.
3555 Add test_memory(), for use with IsBad*Ptr().
3557 * [windows/winpos.c]
3558 Add stubs for TileChildWindows(), etc.
3561 IsWindow() shouldn't crash if it's given a bad handle.
3562 Add stub for GetLastActivePopup().
3565 Implement the IsBad*Ptr() functions.
3567 * [controls/listbox.c]
3568 Return the full longword of the item data in LB_GETITEMDATA.
3571 Don't let the user select an area past the end of the text.
3574 In DrawText(), the code to delete crlfs also removed multiple
3575 consecutive newlines. Also, using DT_CALCRECT didn't return
3576 the right height, and the width wasn't returned at all.
3577 This caused MessageBoxes to be missing much of their text.
3579 * [windows/scroll.c]
3580 ScrollWindow[Ex] didn't work right with null LPRECT arguments.
3582 Fri Oct 21 21:47:19 1994 Paul Falstad (pf@zoof.cts.com)
3585 Fixed int21 0x42 handler to properly assemble 32-bit seek ptr.
3588 Fixed inverted logic in EnumProps(), and changed CallBack16()
3589 call to use new arg format.
3592 Fixed CallBack16() call in Enum[Child]Windows to use new arg
3593 format; this fixes crashes in enum procedures.
3595 Wed Oct 19 21:30:00 PDT 1994 martin@cs.csufresno.edu
3597 * [misc/clipboard.c]
3600 Added cut and paste between Wine and other X clients via
3601 the PRIMARY selection. Text only this time.
3604 EDIT_LineLength, EDIT_TextLine return 0 for lines after last one.
3606 * [windows/defwnd.c]
3607 Send WM_SYSCOMMAND to overlapped ancestor window,
3608 not the receiver of WM_SYSKEYDOWN
3610 Sat Oct 22 15:01:02 1994 Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
3613 ClientWidth()/ClientHeight() macros: return 0 if size would
3615 EDIT_StrLength(): takes unsigned char* instead of char*
3617 * [controls/listbox.c]
3618 ListBoxWndProc(): in "case WM_MOUSEMOVE" - set lphl at start of
3619 case instead of in each place required (it was omitted in
3620 some places causing problems!)
3623 MENU_CalcItemSize(): don't try to find size of a text item
3624 if the pointer is NULL
3627 added definition of HEAP_LocalInit()
3630 removed buggy pointer() macro (use SAFEMAKEPTR() from segmem.h
3633 * [loader/selector.c]
3634 IPCCopySelector(): added missing flags to shmget() call
3635 ? does this break linux - I added these flags in a previous
3636 patch but they were missing in the corresponding release ?
3639 win_fault(): added missing definitions of i, dump for those
3640 not running NetBSD or linux
3643 DOS_GetCurrentDir(): made temp[] static so it can be safely
3646 * [miscemu/int21.c,int25.c,int26.c]
3647 Changed all invocations of pointer() to SAFEMAKEPTR(). Included
3648 segmem.h where necessary.
3650 * [windows/dialog.c]
3651 CreateDialogIndirectParam(): Changed HEAP_Init() call to
3652 HEAP_LocalInit(), removed redundant variables
3654 Sat Oct 22 00:29:41 MET 1994 Dag Asheim (dash@ifi.uio.no)
3656 * [loader/library.c] [loader/main.c] [loader/ne_image.c]
3657 [misc/exec.c] [miscemu/int10.c] [miscemu/int21.c]
3658 [objects/bitblt.c] [objects/metafile.c]
3659 Rewritten more printf's to use the new debugging system, and
3660 made wine less verbose per default. Use "-debugmsg +module"
3661 to get (almost) the same behavior as before.
3663 ----------------------------------------------------------------------
3664 Sun Oct 16 13:29:07 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
3666 * [controls/button.c]
3667 Implemented WM_GETDLGCODE, WM_SETFONT, BM_SETSTYLE, BM_SETCHECK,
3669 Implemented default button painting.
3670 Optimised redrawing.
3671 Fixed owner-draw buttons.
3673 * [controls/static.c]
3674 Implemented WM_SETFONT.
3675 A few optimisations in painting code.
3676 Bug fix for SS_SIMPLE controls.
3678 * [if1632/callback.c]
3679 Preliminary GetCodeHandle().
3682 Changed 'pascal' to 'pascal16' everywhere it's needed.
3684 * [include/windows.h]
3685 Fixed a few data structures.
3688 Bug fix in HEAP_ReAlloc().
3693 * [objects/bitblt.c]
3694 Fixed PatBlt() when using BLACKNESS or WHITENESS codes.
3697 Better font mapping code.
3698 Implemented GetTextFace().
3700 * [objects/region.c]
3701 Bug fix in REGION_MakePixmap().
3702 Faster region copying.
3705 Implemented ExtTextOut().
3706 Implemented DT_NOCLIP style for DrawText().
3709 Free the bitmap when deleting a memory DC.
3712 Added support for windows that have no associated X window.
3713 Implemented DCX_CLIPSIBLINGS and DCX_PARENTCLIP in GetDCEx().
3715 * [windows/defdlg.c]
3716 Implemented default push button handling and DM_SETDEFID.
3717 Implemented WM_NEXTDLGCTL.
3719 * [windows/dialog.c]
3720 Implemented default push button handling.
3721 Beginning of a keyboard interface in dialogs
3722 (does not really work yet).
3723 Fixed dialogs that use a special font.
3725 * [windows/event.c] [windows/focus.c]
3726 Added support for non-X windows.
3728 * [windows/graphics.c]
3729 Rewritten FloodFill() and implemented ExtFloodFill().
3731 * [windows/message.c]
3732 Cleaner hardware messages and X events handling.
3734 * [windows/defwnd.c] [windows/painting.c]
3735 Implemented WM_SETREDRAW.
3738 Only create an X window for top-level windows, or for the desktop.
3739 Child windows now use their parent's drawable.
3741 * [windows/winpos.c]
3742 Beginning of support for non-X windows (still somewhat broken).
3743 Implemented *DeferWindowPos().
3746 Cleaned up some Imakefiles.
3747 Moved dc.c from windows/ to objects/.
3748 Moved cursor.c from misc/ to windows/.
3750 Sun Oct 16 12:21:52 1994 Michael Patra <micky@marie.physik.tu-berlin.d400.de>
3753 [include/stddebug.h]
3755 Rewritten all the calls to printf for displaying debug-information
3756 (messages like "LoadImage: loading SOL (SOL.EXE)" etc.)
3757 Added option "-debugmsg" to Wine. Example: "-debugmsg +all" will turn
3758 all these messages on, "-debugmsg -dll" will turn all messages
3759 concerning DLLs off.
3761 * [controls/combo.c]
3762 Added some handling for combo controls with ownerdraw-styles
3763 (just creating and passing the necessary messages to the
3764 corresponding listbox control; the edit-control needs to be
3765 replaced with something else).
3769 Added support for use of global heap memory in dialogs with
3772 * [controls/listbox.c]
3773 Added support for item data.
3774 ListBoxInsertString(): Fixed bug for elements which are not inserted
3775 after the currently last element.
3779 DOS_ValidDirectory(): Checks whether a given string is in fact the
3780 valid name of a directory.
3782 Sat Oct 15 17:35:00 PDT 1994 <martin@cs.csufresno.edu>
3785 generate wine.sym after creating wine
3788 load "wine.sym" when entering debugger
3791 symbolic backtrace for 32-bit stack. Breaks 16-bit bt.
3793 Sun Sep 25 12:00:00 PDT 1994 <martin@osiris.cs.csufresno.edu>
3795 * [rc/rc.y] [rc/rc.h] [rc/rc.l] [rc/winerc.c]
3798 Sun Sep 18 11:04:45 MET DST 1994 Dag Asheim (dash@ifi.uio.no)
3801 Exclude and Include no longer requires a terminating ';' to
3802 register the last component.
3804 Thu Sep 15 23:10:09 MET DST 1994 Dag Asheim (dash@ifi.uio.no)
3807 Rewrote much of it. Added capability to generate a wine.ini
3808 file. Commented out the processor emulator options until that
3809 becomes interesting. Gives a warning if it sees any *.rej
3810 files. I hope I haven't assumed to much about the shell/OS so
3811 that it breaks under *BSD.
3814 Removed/changed calls to ToUnix() (which calls tolower()) so
3815 that the part of the pathname which correspond with the drive
3816 letter on DOS no longer will be mapped to lowercase. This
3817 means that it should be possible to have uppercase letters in
3818 the [drives] section of wine.ini.
3821 Cosmetic changes so that it displays better in the window you
3822 get from pressing "Credit_License" in the "About WINE" window.
3824 Sun Aug 21 21:12:06 MET DST 1994 <erik@xs4all.nl>
3827 LoadMenu() moved to loader/resource.c.
3830 Added stub for FileCDR().
3833 Added, from Eric's pe-test.
3835 * [include/resource.h]
3838 * [loader/resources.c]
3839 Removed duplicated code in *Resource() functions.
3840 Moved NE-program specific functions into ne_image.c.
3841 Moved NE-fileformat functions to ne_resource.c.
3843 * [pe_image.c] [pe_resource.c]
3844 Added. Nothing implemented to run PE-executables, resource
3848 Changed OpenFile() to use macros.
3851 Added NULL-ptr checks to ShellAbout().
3856 * [miscemu/kernel.c]
3857 Added _DI = _DS, to put the caller's instance in DI. Doesn't
3858 work properly if caller changed DS :-(
3860 ----------------------------------------------------------------------
3861 Thu Aug 25 15:24:36 EDT 1994 <jrichard@cs.uml.edu>
3864 Removed seperate X window for icon, added icon width,height.
3866 * [include/windows.h]
3867 Commented out the old SW_xxx emum and added defines since
3868 they aren't enumerated.
3871 Removed some older IsIconic checks from GetDCEx(), functionality
3872 is now in nonclient and generic wine window handling code.
3873 Lots of thanks to Alexandre Julliard all the hints and
3876 * [windows/defwnd.c]
3877 Removed call to NC_HandleNCPaintIcon() under case WM_PAINTICON,
3878 WM_PAINTICON now calls NC_HandleNCPaint.
3881 Removed IsIconic checks.
3884 Removed everything in this file for now... could be used later.
3885 Icon functionality is now handled by the generic wine windows
3889 Added a ShowWindow in MDIRestoreChild(). MDI child windows now
3890 show up when deiconified. Removed IsIconic checks.
3892 * [windows/message.c]
3893 Removed old icon routines from hardware_event().
3895 * [windows/nonclient.c]
3896 Changed NC_HandleNCCalcSize() so it doesn't change the size
3897 of an icon window. Made NC_InternalNCHitTest() on an Iconic
3898 window always return HTCAPTION. Made NC_HandleNCLButtonDblClk()
3899 on an Iconic window always send a SC_RESTORE message.
3901 * [windows/painting.c]
3902 Changed RedrawWindow() so it doesn't redraw an iconic window
3903 unless it has to (no icon for this class).
3906 Removed creation of seperate icon window from CreateWindowEx().
3908 * [windows/winpos.c]
3909 Added saving and restoring of window rectangle during
3910 iconification/deiconification to ShowWindow(). Added
3911 functions to recursively hide and show children... called
3912 by ShowWindow during iconification/deiconification.
3914 Sat, 27 Aug 1994 18:47:34 +0100 (MET DST) micky@marie.physik.tu-berlin.de (Michael Patra)
3916 * [windows/message.c]
3917 WaitMessage(): Fixed handling of wm_timer-messages
3920 FindNextFCB(): Rewritten to support other functions than just
3921 returning the volume label
3924 OpenFile(): Fix in handling of OF_CREATE
3926 Wed Aug 24 19:40:42 PDT 1994 Andrew Lagodzinski (andrew@netcom.com)
3928 * [if1632/user.spec]
3934 Fri Aug 19 16:37:00 1994 Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
3936 * [loader/selector.c]
3937 Many changes throughout file to correct handling of shared memory
3938 function return codes. FreeBSD and SunOS shm functions return
3939 -1 not 0 on error. If Linux is different, these changes
3940 will have to be backed out.
3941 CleanupSelectors(): this is a new (internal) call to free
3942 up all selectors (and shm handles/memory) for use on exit.
3944 * [include/segmem.h]
3945 Change comment to reflect new use of shm_key
3948 called_at_exit(): add call to CleanupSelectors()
3950 Mon Aug 22 18:19:25 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
3952 * [controls/button.c]
3953 Use OBM_CHECKBOXES to draw check boxes with correct colors.
3954 Fixed bug with WM_SETTEXT handling.
3955 A few drawing optimisations.
3958 Implemented correct \t and \a handling in menu items.
3959 Implemented help items (flush right) on menu bar.
3960 Added WM_ENTERMENULOOP and WM_EXITMENULOOP messages.
3962 * [controls/static.c]
3963 Fixed SS_ICON controls and implemented STM_SETICON message
3966 * [controls/widget.c]
3967 Set cursor to IDC_ARROW for built-in classes.
3969 * [include/options.h] [misc/main.c]
3970 Backing store is now off by default.
3972 * [objects/region.c]
3973 Use X regions for rectangle and polygon regions: *major* speed
3976 * [windows/dialog.c]
3977 Fixed the fix for integer ids in controls. SS_ICON controls in
3978 dialogs should work now.
3979 Implemented DS_ABSALIGN style.
3981 * [windows/graphics.c]
3982 Implemented InvertRgn().
3983 New internal function GRAPH_DrawBitmap() to draw bitmaps faster
3984 than with CreateCompatibleDC() + BitBlt().
3986 * [windows/message.c]
3987 Determining the window for a mouse message is now done at
3989 Modified PeekMessage() handling to avoid needlessly flushing the
3993 Check for restart of a timer (SetTimer call with the same hwnd and
3994 id than an existing timer).
3996 ----------------------------------------------------------------------
3997 Tue Aug 9 23:58:29 MET DST 1994 <erik@hacktic.nl>
4000 OpenFile(): Completly rewritten.
4003 CreateFile(): Fixed wrong mode in call to open.
4004 OpenExistingFile(): Implemented file sharing.
4006 CreateNewFile(): Fixed wrong mode in call to open.
4007 fLock(): Added to handle record locking.
4008 GetFileAttribute(): Added.
4009 As a result, AH = 0x5c, 0x09, and 0x0b were changed.
4012 AH = 0x10: SHARE installation check
4014 * [loader/resource.c]
4015 AccessResource(): Fixed. A new file descriptor will be returned by
4016 every call to AccessResource().
4018 * [windows/utility.c]
4022 FindMenuItem(): Fixed (handling for nPos == -1 added).
4025 CreateWindowEx(): Added call to WINPOS_GetMinMaxInfo.
4028 Added two options for a processor emulator that might be
4031 * [loader/task.c] [include/toolhelp.h] [if1632/toolhelp.spec]
4032 CreateNewTask() stores real modulename instead of 'TASKxxxx'.
4033 Added TaskFirst(), TaskNext(), TaskFindHandle().
4036 Added stub for MemManInfo().
4039 Added stub for GetTabbedTextExt().
4042 Changed all references to registers. Please don't access
4043 the context structure.
4044 fix for GetSystemTime() by <jspeter@birch.ee.vt.edu> added.
4047 Fixed bug in AnsiUpper() & AnsiLower().
4049 * [misc/winsocket.c]
4050 bugfix in getsockopt()/setsockopt(): winsock uses different values
4054 Added DIB_SetImageBits_RLE[48] to support compressed bitmaps.
4056 Mon Aug 8 21:12:33 1994 David Metcalfe <david@prism.demon.co.uk>
4059 Added support for WM_COPY, WM_CUT and WM_PASTE messages.
4061 * [windows/dialog.c] [windows/defdlg.c] [include/dialog.h]
4062 Modified dialog code to create new heap for edit controls
4063 unless DS_LOCALEDIT style is set.
4065 Thu Aug 4 18:50:56 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
4067 * [controls/button.c] [controls/edit.c] [controls/static.c]
4068 Removed unneeded GlobalUnlock() calls.
4070 * [controls/menu.c] [include/menu.h]
4071 Lots of changes, fixed a lot of old bugs and introduced a lot of
4073 - Changed message loop to use MSG_GetInternalMessage().
4074 - Fixed a bug that caused the main window to lose activation when
4076 - Correctly send initialisation messages (WM_INITMENUPOPUP).
4077 - Implemented EndMenu() and LookupMenuHandle().
4078 - Changed internal structures to be as compatible as possible with
4080 - Allocated everything on the USER heap instead of the global heap.
4081 - Prefixed all internal function names with MENU_ and declared
4083 - Moved "About Wine..." handling to NC_HandleSysCommand().
4084 - Multi-line menus should now work correctly.
4086 * [loader/resource.c] [objects/bitmap.c]
4087 Added the possibility to create OEM bitmaps directly as X bitmaps.
4089 * [objects/dcvalues.c] [windows/dc.c]
4090 Fixed GetDCOrg() to return screen coordinates.
4092 * [windows/message.c]
4093 Fixed double-click checks when the message is not removed from the
4095 Fixed MSG_GetInternalMessage() to send WM_ENTERIDLE messages.
4097 * [windows/nonclient.c]
4098 Bug fix in system menu hit-test calculation.
4099 A few changes for new menu functions.
4101 Thu Aug 11 17:51:02 1994 Thomas Sandford <t.d.g.sandford@bradford.ac.uk>
4104 Bug fix in Edit_NCCreateMessage
4105 es->textlen was being used before being set
4108 Bug fix in MENU_DrawMenuItem
4109 don't try to write text if NULL pointer passed
4111 ----------------------------------------------------------------------
4112 Thu Aug 4 07:18:02 1994 Michael Patra <micky@marie.physik.tu-berlin.de>
4114 * [windows/message.c]
4115 Implemented WaitMessage() (USER.112).
4117 * [if1632/user.spec]
4120 * [windows/defwnd.c]
4121 WM_ERASEBKGND: Added support for hbrBackground=COLOR_xxx.
4123 * [miscemu/int{13,21,2a}.c]
4124 * [miscemu/Imakefile]
4126 Added a few basic disk information and diagnostic functions to
4127 prevent programs using this function from crashing. All drives
4128 are claimed to be remote ones, so direct I/O isn't allowed.
4131 EDIT_WriteText(): Added code to correctly erase the remaining space
4132 of the edit-control if the size of the control has changed sinced it's
4135 Tue Jul 26 22:05:54 MET DST 1994 Erik Bos <erik@hacktic.nl>
4137 * [if1632/mouse.spec]
4138 Added mouse.dll entry, no functions.
4140 * [loader/resource.c]
4141 Bug fix in AccessResource().
4143 * [misc/keyboard.c], added [include/keyboard.h]
4144 Changed functions to return more useful values.
4146 * [windows/dialog.c]
4147 Hacked DIALOG_GetControl() to support resources which
4148 have 0xff00 - 0xffff as id. ** Needs to be done properly by
4149 someone who knows the NE fileformat **
4151 Jul 29, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4154 Add new stub for EnableHGardwareInput() function.
4156 * [windows/message.c]
4157 Add coding for HWND_BROADCAST in PostMessage().
4160 Add coding for OpenFile() also search in WindowPaths.
4166 Change #include "linux/soundcard.h" by #include "sys/soundcard.h"
4167 Add coding in MMIO functions. Now, mmioDescend() can find WAV chunks.
4168 SndPlaySound & MCI_ELEMENT now use MMIO and adjust to proper formats.
4169 ----------------------------------------------------------------------
4170 Mon Jul 18 23:55:13 MET DST 1994
4173 CallTo16(): added `mov %eax,%edx' just before lcall,
4174 to make sure that DX contain the DLL's hinstance when
4177 CallTo32_16() added, equal to CallTo32() except for
4178 one thing: it saves DX and
4181 Added some code to support 16 and 32 bit return values.
4183 * [1632/{kernel,user}.spec]
4184 Changed most of the `pascal' style to pascal_16 when
4185 function returned a 16bit value.
4187 Tue Jul 19 18:40:25 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
4190 Reorganized sizing and drawing code to implement multi-line menus.
4191 Implemented MENUBREAK style.
4192 Use system colors to draw menus.
4195 Bug fix in COLOR_IsSolid().
4198 Bug fix in FONT_GetMetrics(): calculate average character width
4199 only on existing chars (dialogs look much better).
4202 Bug fix in DrawText(): use text color to underline mnemonic.
4204 * [windows/nonclient.c]
4205 Changed WM_NCHITTEST handling to cope with multi-line menu bars.
4207 * [windows/syscolor.c]
4208 Added system objects for menu colors.
4210 Mon Jul 18 19:32:08 PDT 1994 Andrew Lagodzinski (andrew@netcom.com)
4213 Fixed bug in SelectPrevItem that caused seperators to not be
4214 skipped when using the up arrow key.
4216 ----------------------------------------------------------------------
4217 Thu Jul 14 17:50:45 1994 Bob Amstadt (bob@pooh)
4220 Autodetects Linux version (if running Linux).
4223 New signals for Linux.
4226 New structure field in sys call.
4228 Sun Jul 10 19:31:34 1994 Olaf Flebbe (olaf@dragon)
4231 fixed Memory (Resource) Leak.
4236 Tue Jul 12 18:50:34 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
4238 * [controls/desktop.c]
4239 Implemented desktop wallpaper (only 16 colors for now).
4241 * [controls/menu.c] [windows/nonclient.c]
4242 Preliminary work to allow multi-line menus.
4245 No backing store on desktop window (not useful).
4248 A few fixes to DrawText() to make underlines under mnemonic
4249 letters to look better.
4251 * [windows/graphics.c]
4252 More fixes to GRAPH_DrawArc(), and some fixes to Polygon().
4253 Implemented PolyPolygon() (partially working).
4255 * [windows/winpos.c]
4256 New function WINPOS_SendNCCalcSize().
4257 Cleaned up SetWindowPos() and added preliminary support for
4260 Mon Jul 11 19:15:51 1994 Miguel de Icaza (miguel@sphinx)
4263 Changes to work as a library.
4265 * [if1632/callback.c]
4269 Changes to allow linking with WineLib.
4271 * [include/windows.h]
4272 Added macro WINELIB_UNIMP
4274 * [loader/library.c]
4275 When compiling WineLib, GetProcAddress is not implemented yet.
4278 Added empty InitDLL when using WineLib.
4280 * [loader/ne_image.c]
4281 Some parts of the loader are needed for WineLib, ifdefed correctly
4283 * [misc/{audio.c,mcicda.c,mmaux.c,mmsystem.c]
4284 Disable compilation of module when compiling WineLib.
4287 Fixed small bug. When passed an invalid handle WineLib would
4288 crash, now return NULL.
4290 * [toolkit/winmain.c]
4291 Call CreateNewTask in _WinMain.
4293 Sun Jul 10 09:08:02 1994 David Metcalfe <david@prism.demon.co.uk>
4295 * [controls/edit.c] [controls/widget.c]
4296 More changes to improve compatibility with Windows' edit
4297 control. Finished off tab stop support.
4299 Mon Jul 11 21:05:02 MET DST 1994 Erik Bos <erik@hacktic.nl>
4302 # of ordinals in shell.dll changed to 103.
4305 sti, cli will now be ignored.
4308 Added stub for GetSysColorBrush().
4310 ----------------------------------------------------------------------
4311 Sun, 3 Jul 1994 20:15:56 +0100 (BST) David Metcalfe <david@prism.demon.co.uk>
4314 Bug fixes and tidying up. Preliminary tab stop support
4317 * [windows/dialog.c]
4318 Reversed order of buttons in CheckRadioButtons so that all
4319 buttons are now displayed.
4321 Tue Jul 5 18:30:24 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
4323 * [include/options.h] [misc/main.c] [windows/win.c]
4324 Removed nosaveunders option, replaced by handling
4325 the CS_SAVEBITS flag.
4328 Modified the fix for negative size in class extra bytes to
4329 avoid modifying the caller's data.
4332 Bug fix: system font must be a proportional font.
4333 Fixed a bug that caused the default pen to not be selected
4336 * [windows/graphics.c]
4337 Bug fix in GRAPH_DrawArc(). Thanks to Adriano Azevedo for
4340 * [windows/painting.c]
4341 Removed incorrect selecting of default objects in BeginPaint()
4342 (no longer needed because of the fix in dc.c).
4344 Jul 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4348 Add more code to interface '/dev/dsp'.
4350 * New file [misc/mcicda.c]
4351 Create an MCI_DEVTYPE_CD_AUDIO driver connected to '/dev/sbpcd'.
4353 * New file [misc/mmaux.c]
4354 Stubs to make a future driver connected to '/dev/mixer'.
4357 Temporary patch to CreateWindowEx() for reseting negative
4358 coordinates to 0,0 ; because 'soundrec.exe' give negative values
4359 and I need it to work on MMSYSTEM ... :-)
4362 add a stub 'do_int2f_16' (function 0x16) for DMPI server.
4364 Mon Jun 20 10:08:40 BST 1994 William Smith (wos@dcs.warwick.ac.uk)
4367 New file -- some definitions that were in comm.c now need to
4368 be shared with misc/dos_fs.c
4371 Some definitions moved into include/comm.h
4373 * misc/dos_fs.c (DOS_GetEquipment):
4374 Fixed error in equipment -- bitwise or of two values should
4375 be used instead of logical or. Also added code to correctly
4376 report the number of serial and parallel devices.
4378 ----------------------------------------------------------------------
4379 Mon Jun 20 14:26:41 1994 Bob Amstadt (bob@pooh)
4381 * [objects/bitmap.c]
4382 Allow negative bitmap sizes.
4384 Sun Jun 19 12:00:04 1994 David Metcalfe <david@prism.demon.co.uk>
4387 Improved selection display. Added processing for WM_SETFONT,
4388 EM_REPLACESEL, EM_LINELENGTH, EM_UNDO, EM_EMPTYUNDOBUFFER,
4389 EM_GETHANDLE, EM_SETHANDLE messages. Text buffer now stored on
4390 application's local heap.
4392 * [windows/graphics.c]
4393 Corrected bug in Rectangle(). XFillRectangle has the same
4394 width as Rectangle, but XDrawRectangle is one pixel wider
4395 for the same co-ordinates.
4397 * [memory/heap.c] [include/heap.h]
4398 Added HEAP_LocalSize function.
4400 * [windows/event.c] [windows/keyboard.c]
4401 Improvements to KeyStateTable and addition of AsyncKeyStateTable.
4402 Added supporting code to GetKeyState and GetAsyncKeyState and
4403 merged mouse button states into GetKeyboardState.
4405 * [loader/resource.c] [include/accel.h]
4406 Added recognition of SHIFT, CONTROL and ALT keys to
4407 TranslateAccelerator.
4409 * [objects/metafile.c] [objects/font.c] [objects/bitblt.c]
4410 A bit more metafile support.
4412 Sun Jun 19 17:29:00 MET DST 1994 Erik Bos (erik@hacktic.nl)
4414 * [loader/resource.c]
4415 SizeofResource() and AllocResource() added, AccessResource() updated.
4417 * [if1632/kernel.spec]
4418 FreeLibrary() used for FreeModule().
4420 * [windows/graphics.c]
4421 Rectangle(): swap left & right corners when right < left,
4422 swap top & bottom when botton < top.
4424 Jun 19, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4426 * [controls/combo.c]
4427 Fix bug in window style of the associated listbox.
4430 Skip separators in keyboard navigation by using new internal
4431 functions SelectPrevItem() & SelectNextItem(),
4434 Bug fix in GetPrivateProfileInt(), was limited to 4 digit,
4435 IntBuf must be alloc to (5+1)=6. char instead of 5.
4438 Put code in functions SetEnvironment() & GetEnvironment().
4441 Start putting some code in ExtractIcon() function.
4444 Some code for MMTimer functions & timers list.
4447 Few stubs for DPMI interrupt calls. Nothing work yet.
4449 Mon Jun 20 07:37:43 EDT 1994 John Richardson (jrichard@cs.uml.edu)
4451 * include/win.h (tagWND):
4452 Added icon fields icon, hIcon and rectClientSave to
4456 Added icon.c to the list of files to compile
4458 * windows/dce.c (GetDCEx):
4459 Added some checks for iconic mode and pass icon window as drawable,
4460 not the real window.
4462 * windows/defwnd.c (DefWindowProc)
4463 Added PAINTICON default windows procedure.
4465 * windows/event.c (EVENT_Expose)
4466 Added check for iconic window expose. If iconic window is exposed
4467 send a WM_PAINTICON message
4470 New file. ICON_Iconify, ICON_findIconFromPoint, ICON_Deiconify.
4472 * windows/mdi.c (DefMDIChildProc)
4473 Test for IsIconic during a SC_RESTORE, this doesn't work yet.
4475 * windows/message.c (hardware_event)
4476 Looks for icon as well as window now.
4478 * windows/nonclient.c (NC_HandleSysCommand, NC_DoNCPaintIcon)
4479 Added iconify/deiconify in NC_HandleSysCommand, new function
4480 NC_DoNCPaintIcon which paints an icon.
4482 * windows/painting.c (BeginPaint)
4483 Made a BeginPaint select the STOCK_BLACK_PEN, STOCK_WHITE_BRUSH,
4484 and STOCK_SYSTEM_FONT objects since this is (hopefully) default
4487 * windows/win.h (CreateWindowEx)
4488 Set the default background color of a window to be white.
4489 Create icon window, turn off MINIMIZE if it is on, since
4490 I don't know what to do with it as of yet... register
4491 the icon with the hwnd of its window so we can identify where
4492 icon messages are coming from.
4494 Mon Jun 20 10:15:59 1994 Miguel de Icaza (miguel@sphinx)
4496 * windows/event.c: Added a hack to define XPointer when using
4499 * toolkit/hello.c: Test application for WineLib. To compile you'll
4500 need: gcc -Iinclude -DWINELIB -g hello.c -c, and to link you'll
4501 need: gcc hello.o libwine.a -lX11 -L/usr/openwin/lib -lm
4503 * toolkit/heap.c: Extended the size of the block size per chunk.
4505 * misc/stress.c (GetFreeFileHandles): Fixed typo.
4507 * misc/main.c (main): Changes to allow compilation under SunOS.
4509 * loader/library.c: Changed some ifdefs to compile WineLib.
4511 ----------------------------------------------------------------------
4512 Tue Jun 14 08:09:14 1994 Bob Amstadt (bob@pooh)
4514 * loader/selector.c (GetCurrentPDB):
4515 Added trivial function GetCurrentPDB() which returns the program
4516 segment prefix selector.
4518 * memory/heap.c (HEAP_Free):
4519 If free list is empty, make the freed block the free list.
4521 Fri Jun 10 07:56:49 1994 Bob Amstadt (bob@pooh)
4523 * controls/edit.c (EDIT_SetTextMsg):
4524 Do not append a newline at the end of the last line.
4526 * windows/event.c (SetCapture):
4527 Set winHasCursor if mouse capture succeeds.
4529 Jun 13, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4531 * [controls/listbox.c]
4532 Fix bug in listbox : InsertString should call AddString if -1.
4535 New function GetMenuState().
4537 * [controls/scroll.c] [windows/nonclient.c]
4538 Try to make ShowScrollBar() recalc NC_ regions. Not finished !
4541 Add Stub for TabbedTextOut(), which temporarely call Textout().
4543 * [windows/keyboard.c] [windows/event.c]
4544 New function GetKeyBoardState() with an KeyStateTable array
4545 & associated handling in function EVENT_key().
4547 Mon Jun 13 16:45:24 MET DST 1994 (erik@hacktic.nl)
4552 * [loader/library.c]
4553 ModuleFirst(), ModuleNext(), ModuleFindName(), ModuleFindHandle()
4557 IsGDIObject() added.
4559 * [miscemu/int2[56].c]
4560 bugfix: both didn't leave flags pushed on 16bit-stack.
4561 (winfile gets a bit further)
4566 Sat Jun 11 22:56:48 1994 Jon Tombs (jon@esix2.us.es)
4568 Added code to drop redundant motion Events in the XEvent queue.
4570 Thu Jun 9 10:55:55 MET DST 1994 Jochen Hein ( Hein@Student.TU-Clausthal.de )
4572 * [misc/main.c misc/message.c include/texts.h]
4573 Removed the text-constants from message.c into variables
4574 which may be changed from X-resources.
4576 * [misc/main.c misc/message.c]
4577 added <locale.h> and setlocale() to main.c, used toupper() in message.c
4579 Mon, 13 Jun 94 09:41:16 -0500 Paul Bramel <paulbr@comm.mot.com>
4581 * controls/button.c ( [CR]B_LButton* )
4582 left rc.right at full window width so click on label also
4583 activates the control (MSWin behavior)
4585 Sat Jun 11 19:05:40 1994 Olaf Flebbe (flebbe@tat.physik.uni-tuebingen.de)
4587 * include/windows.h:
4588 functions pointers can not be packed.
4589 (annoying warnings with forthcomming gcc-2.6.x)
4591 * loader/main.c (InitDLL):
4592 Fixed a printf statement. (for control.exe)
4594 (InitializeLoadedDLLs):
4595 deleted shadow definition of *wpnt.
4596 (Breaks many programs, because now COMMDLG will be
4599 * windows/win.c (SetWindowText):
4600 added missing breaks; (PENSATE starts)
4602 * windows/graphics.c (FloodFill):
4603 Proper boundarys. (BANGBANG starts) FloodFile_rec should
4606 * objects/font.c (FONT_GetMetrics):
4607 TYPO: use font->perchar only if it is defined. (WRITE starts)
4609 Sun June 12, Peter Broadhurst (pbr@ua.nwl.ac.uk)
4611 Fixes for improved behaviour when dragging thumb;
4612 Added SB_THUMBPOSITION message when thumb is released.
4614 ----------------------------------------------------------------------
4615 Tue Jun 7 08:41:27 1994 Bob Amstadt (bob@pooh)
4617 * loader/selector.c (FixupFunctionPrologs):
4618 New function to fixup loaded DLL function prologs. It replaces the
4619 do nothing code with code that loads DS with the appropriate data
4620 segment for the DLL.
4622 * misc/cursor.c (LoadCursor):
4623 Disabled cursor loading from .EXE or .DLL. The code needs to handle
4624 the possibility of multiple cursors in a single directory. Also,
4625 it should check to see if the cursor is the right size.
4627 * objects/font.c (EnumFonts):
4628 Checked for lpLogFontList[i] == NULL
4630 * objects/gdiobj.c (SetObjectOwner):
4631 Removed stub. Replaced with simple return in gdi.spec. This
4632 function is not defined for the retail version of Windows.
4634 * memory/heap.c (WIN16_LocalHandleDelta):
4635 New function. This is really a dummy that imitates the proper
4638 * loader/library.c (GetProcAddress):
4639 Fixed definition of IS_BUILTIN_DLL() macro.
4641 Mon Jun 6 18:15:40 1994 Bob Amstadt (bob@pooh)
4643 * miscemu/int21.c (SeekFile):
4644 Needed to return current position in DX:AX.
4646 * windows/utility.c (windows_wsprintf):
4647 Added support for '#' in format, and fixed bug with "ptr" being
4648 incremented too many times.
4650 * miscemu/int21.c (OpenExistingFile):
4651 Add code to handle opening files read-only and write-only.
4654 Segment fixups now done in LoadImage instead of _WinMain. This
4655 is necessary to support LoadLibrary().
4657 Sun Jun 5 17:34:24 1994 Erik Bos (erik@hacktic.nl)
4660 - fixed: GetModuleHandle() sometimes returned
4662 - don't init dlls when cs == 0 (lzexpand, doesn't
4663 seem to have a init function)
4664 - LoadLibrary & LoadImage now return error instead
4666 - moved most of NE-functions into one file.
4667 - LoadLibrary() uses w_files list instead of its
4669 - NE exectables are now fixed-up and initialised when
4670 loaded instead of only once before calling InitTask.
4672 * [miscemu/int15.c] [miscemu/int31.c]
4675 * [loader/selector.c]
4676 Stubs added for {Get|Set}SelectorLimit(), {Get|Set}SelectorBase().
4679 Stub added for IsRomModule().
4682 Some cleanup, added heap for returning data.
4684 Jun 6, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4687 Change MAX_ORDINALS define to higher value, 1299 entries.
4688 (MMSYSTEM doesn't have succesive numbers, some are around 1200).
4690 * [windows/utility.c]
4691 Bug fix in windows_wsprintf(), (twice increments ...).
4693 * [windows/winpos.c]
4694 Bug fix in SetWindowPos(), redraw was done if flag
4695 was set to SWP_NOREDRAW while SWP_SHOWWINDOW).
4697 * [misc/message.c] [controls/combo.c]
4698 Add an InvalidateRect() in WM_SHOWWINDOW to statisfy the new 'saveunder'.
4701 In CreateWindowEx(), do SetMenu() calls after window creation,
4702 just before sending to WM_NCCALCSIZE.
4705 In function SetMenu(), now use SetWindowPos() with
4706 flags SWP_FRAMECHANGED to readjust menu area.
4707 Function MenuBarCalcSize() redone.
4709 Sun May 29 11:08:24 1994 David B. Thomas (dt@yenta.abq.nm.us)
4712 Fixed problems associated with DT_WORDBREAK flag. String length
4713 was not being properly decremented when lines were folded, and
4714 wrapping was not performed when DT_NOCLIP and DT_NOPREFIX were
4715 both on in addition to DT_WORDBREAK. Windows does wrapping in
4716 this case, and now so does wine.
4718 Sun Jun 5 19:17:49 1994 Olaf Flebbe (olaf@dragon)
4721 cp1 was uninitialized iff lineno == 0
4723 * FindFile tests for existance of file even if a full
4724 filename was supplied. What about unix file names?
4726 * [controls/listbox ]
4727 wndPtr was uninitialized for LB_SETTOPINDEX
4730 Do not free lpProp. Is it really allocated by malloc?
4731 {edited by Bob Amstadt: changed free() to GlobalFree()}
4733 ----------------------------------------------------------------------
4734 Sat May 28 12:03:23 1994 Bob Amstadt (bob@pooh)
4736 * miscemu/int21.c (OpenExistingFile):
4737 OpenExistingFile needed to return handle in AX register instead
4740 * miscemu/int21.c (ioctlGetDeviceInfo):
4741 Added a little code to give a fake result for normal files.
4743 Wed May 25 21:55:38 1994 Bob Amstadt (bob@pooh)
4746 return value from GlobalSize was completely wrong.
4749 fixed bug in FindFirst. Directory pointer (dp) was not placed in
4753 fixed creation of pop.h to guarantee that flags are restored correctly.
4756 changed all occurance of strncmp() to strncasecmp().
4757 BuildCommDCB() should not require that OpenComm() be called first.
4759 * [loader/selector.c]
4760 Heap initialized to size of full segment less stack size and
4761 automatic data size.
4763 Sat May 28 09:14:33 1994 Rick Sladkey (jrs@world.std.com)
4765 * [controls/listbox.c]
4766 Correct typos in ListBoxResetContent where lpls variable is
4767 used where lsls2 variable is meant. Don't call USER_HEAP_FREE
4768 twice on the same handle if hData and hMem are the same.
4770 * [debugger/opcodes/i386-dis.c]
4771 Add new name array names_rmw for table driven decoding of the
4772 16-bit mod/rm field. Omit large case statement in OP_E and
4773 replace with array reference to match existing coding style.
4774 Add new static variable machine with value 286 or 386 to
4775 correctly decode mod/rm field in either 16 or 32 bit modes.
4776 Set it in print_insn_i{2,3}86. In OP_E use it to decide how
4777 to decode mod/rm. While the code was correct for 16 bit code,
4778 it was improperly decoding mod/rm fields on word prefixed
4779 32 bit instructions.
4781 * [debugger/debug.l]
4782 Recognize new token ABORT. Recognize single letters 'p'
4786 Add new token ABORT. Allow print command to be invoked by
4787 'p' and quit command by 'q', ala GDB. Change lots of '};'
4788 to just '}'. Add static dummy_regs to wine_debug so that
4789 wine_debug(0, NULL) doesn't core dump with qmagic.
4792 Correct syntax of break command in helptext and omit former
4793 comment about probable bugginess of the disassembly since it
4794 is now correct. Change fprintf of first backtrace stack
4795 frame to match that of the second and subsequent frames.
4797 * [loader/selector.c]
4798 Change construction of command line in CreatePSP from creating
4799 a string that looks like "arg1 arg2 \r" to "arg1 arg2". A DOS
4800 PSP command line looks like " arg1 arg2\r" with the length not
4801 including the trailing "\r" but that is not how Windows does it.
4803 * [loader/library.c]
4804 Change uses of %s to print strings in GetModuleHandle to %x so
4805 that string IDs don't cause a core dump with qmagic. Handle
4806 converting a string id to a literal module handle. For
4807 example, GetModuleHandle((LPSTR) 0x57) now returns 0x57 if
4808 it is a real module handle.
4811 In MessageBox, translate a NULL title argument to the string "Error".
4814 In GetSetProfile translate a NULL Default argument to "". Any
4815 caller whose Default argument is NULL is buggy, but CHARMAP does it
4819 Add NULL pointer checks in EnumFontFamilies to prevent core dumps.
4821 Sat May 28 20:01:51 1994 Jon Tombs (jon@gtex02.us.es)
4823 * New options/resourses nosaveunders and nobackingstore. By
4824 default backingstore and saveunders are now enabled, these use
4825 more memory but avoids those slow (sometimes multiple) redraws
4826 caused be exposure events.
4828 May 30, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4830 * [misc/driver.c] New file
4831 Skeleton for 'Installable Wine Drivers' functions. :-)
4832 * [misc/audio.c] New file
4833 Skeleton for basic 'Audio Driver' functions.
4834 * [misc/network.c] New file
4835 Stubs for few networking functions.
4838 More coding ... a dust in a galaxy ...
4840 Some coding for 'RegXXX' functions ... a dust in the wind ...
4843 Bug fix in GetSetProfile(), bad enumeration if KeyName == NULL.
4846 New function CreateDiscardableBitmap(), it just calling
4847 CreateCompatibleBitmap() for now. It's get 'clock.exe' running ! :-)
4849 * [controls/listbox.c]
4850 * [controls/combo.c]
4851 New font member assigned to SYSTEM_FONT as default.
4852 Added processing for WM_SETFONT message;
4855 Tue May 31 20:34:25 EDT 1994 John Richardson <jrichard@cs.uml.edu>
4858 Added AsyncMouseButtonsStates array for GetAsyncKeyState.
4860 * [windows/keyboard.c]
4861 Implemented beginning of GetAsyncKeyState.
4863 Wed May 25 23:35:03 1994 David Metcalfe <david@prism.demon.co.uk>
4865 * [objects/metafile.c] [include/metafile.h]
4866 [windows/mapping.c] [objects/clipping.c] [objects/bitblt.c]
4868 Further metafile support.
4870 ----------------------------------------------------------------------
4871 Mon May 23 15:07:36 1994 Bob Amstadt (bob@pooh)
4873 * [loader/selector.c]
4874 Allocate heap and stack segments as 64k.
4876 Sat May 21 01:15:49 1994 Rick Sladkey (jrs@world.std.com)
4878 * [loader/selector.c]
4879 Correct typos where memcpy is used instead of memset.
4881 * [loader/resource.c]
4882 Allow for legitimate cases where biSizeImage is 0 in LoadIcon
4883 by calculating the value when the bitmap is not compressed.
4886 Fix NULL dereference caused by superfluous DOS_closedir in FindNext.
4888 * [loader/resource.c]
4889 New function type_match to handle string resource types as
4890 well as IDs. In addition, compare only low 4 bits of type_id
4891 when both numbers are IDs so that 0x0002 matches 0x8002.
4892 In FindResourceByNumber and FindResourceByName use type_match
4893 instead of comparing numbers. In FindResource handle the
4894 "#number" syntax and empty strings in both the resource and
4897 Mon May 23 00:48:25 1994 Rick Sladkey (jrs@world.std.com)
4899 * [windows/dialog.c]
4900 Fix inadvertent printing of string IDs as strings.
4902 May 23, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4905 New functions GetMenuItemCount(), GetMenuItemID().
4906 GetMenuString() & HiliteMenuItem().
4907 Bug fix in CheckMenuItem().
4908 Function SetMenu() now make client area recalc if menu removed.
4910 * [windows/winpos.c]
4911 Bug fix in SetWindowPos(), no more XMapping or XConfiguring of
4912 windows with initial width or height equal zero.
4914 * [objects/gdiobj.c]
4915 New function EnumObjects(), using new lpPenBrushList buildup
4916 from calls to new function GDI_AppendToPenBrushList().
4917 ('pbrush.exe' don't show its face yet ! ... :-( )
4918 New EMPTY STUB for function SetObjectOwner(),
4919 ('mplayer.exe' call it via GetProcAddress() ...)
4922 New internal functions ParseFontParms() & InitFontsList().
4923 EnumFonts() & EnumFontFamilies() enumerates fonts (no more dummies).
4924 FONT_MatchFont now make retries to find closest-smallest font.
4925 ('charmap.exe' can now show the differents fonts available)
4927 * [windows/nonclient.c]
4928 Use small dos OBM_OLD_CLOSE button for MDI windows.
4930 * [windows/graphics.c] [objects/bitmap.c]
4931 Start to remove obsolete globals such XT_screen ...
4933 * [loader/library.c]
4934 Make function GetProcAddress() working also with builtin DLLs.
4936 Tue May 24 20:18:02 1994 Erik Bos (erik@hacktic.nl)
4938 * [if1632/system.spec] [if1632/toolhelp.spec]
4939 system.dll & toolhelp.dll added.
4941 * [loader/library.c]
4942 Modified GetModuleFileName() to return the full
4944 Added a check to LoadLibrary() to prevent loading
4945 built in dlls. (eg. user.exe)
4946 Added a check to FreeLibrary() to prevent built-in
4947 dlls from being freed.
4948 Modified GetProcAddress() to support builtin dlls.
4950 * [loader/signal.c] [miscemu/int2f.c]
4951 Added => pifedit runs.
4954 Added a NULL-ptr check to DOS_closedir().
4956 ----------------------------------------------------------------------
4957 Tue May 17 23:03:16 1994 Bob Amstadt (bob@pooh)
4960 Fixed bug with dce initialization that was causing dialog boxes to not
4963 * [if1632/callback.c]
4964 Better fix for bug found by Martin.
4966 Sat May 14 19:48:39 1994 Rick Sladkey (jrs@world.std.com)
4969 Redirect HEAP_ReAlloc calls with NULL argument to HEAP_Alloc.
4971 May 16, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
4974 Make EnumFonts() calling a callback with dummy fonts ... :-)
4977 Add Empty Stub for ExtTextOut(), which temporarely call Textout().
4979 * [if1632/callback.c]
4980 Temporarely go around bug in CallWindowProc(), you will see printfs.
4983 Make EDIT controls focused by a mouse click.
4986 Bug Fix in function EnumProps(), better use of CallBack16().
4989 Basic Skelton's for MCI messages dispatching function.
4991 Sun May 15 16:15:17 1994 Erik Bos (erik@hacktic.nl)
4993 * [windows/utility.c]
4994 Added windows_wsprintf() for the emulator, wsprintf() is
4997 Sat May 14 22:16:40 1994 Rick Sladkey (jrs@world.std.com)
5000 Fix pointer problems in LoadCursor leading to heap corruption.
5002 * [ controls/menu.c ]
5003 Fix two NULL dereferencing bugs.
5005 Sun May 15 20:07:48 1994 Rick Sladkey (jrs@world.std.com)
5008 Fix NULL pointer dereferencing bug in GetCharWidth.
5010 * [loader/resource.c]
5011 Fix under-allocation of memory in LoadAccelerators.
5014 Ignore negative sizes for extra fields in RegisterClass.
5016 Sun May 15 06:35:03 1994 David Metcalfe <david@prism.demon.co.uk>
5018 * [objects/metafile.c] [include/metafile.h] [include/windows.h]
5019 [objects/gdiobj.c] [objects/brush.c] [objects/pen.c]
5020 [objects/text.c] [objects/dcvalues.c] [windows/graphics.c]
5021 [windows/dc.c] [windows/mapping.c]
5022 Beginnings of metafile support.
5025 Corrected spelling of _lcreat.
5029 ----------------------------------------------------------------------
5030 May 9, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5032 * [controls/scroll.c]
5033 Make thumbtrack button disappear if scroll box ratio < 3:1.
5034 Make arrow buttons rectangular if scroll box ratio < 2:1.
5035 Add code for SBS_TOPALIGN, SBS_BOTTOMALIGN,
5036 SBS_LEFTALIGN & SBS_RIGHTALIGN.
5037 Bug fix in NC_CreateScrollBars(), no more bigbutt in calendar.exe... :-)
5039 * [loader/library.c] [loader/task.c] [misc/exec.c]
5040 Continue playing around trying to get a second task running.
5043 Change OBM_CLOSE for OBM_OLD_CLOSE, a smaller dot button when maximized.
5046 Adding previous works of the Apr 25, 94.
5048 Tue May 10 18:09:14 1994 Erik Bos (erik@trashcan.hacktic.nl)
5050 * [if1632/mmsystem.spec] [misc/mmsystem.c] [include/mmsystem.h]
5051 Added Martin's mmsystem.dll stubs.
5054 Added remaining stubs for sound.dll.
5056 * [if1632/shell.spec] [misc/shell.c]
5057 Fixed prototypes (I found them in BC 4) and added ShellAbout()
5060 ----------------------------------------------------------------------
5061 May 1, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5064 Add XUngrabPointer() & XUngrabServer() in wine_fault().
5066 Fri Apr 22 19:30:08 1994 Erik Bos (erik@trashcan.hacktic.nl)
5068 * [objects/bitblt.c]
5069 color_stretch() rewritten to use ints only. *fast!*
5070 BLACKONWHITE & WHITEONBLACK stretchmodes redirected to
5071 use color_stretch().
5073 Mon May 2 21:39:43 1994 Erik Bos (erik@trashcan.hacktic.nl)
5082 SwapMouseButton() added, (NOP).
5085 GetDesktopHwnd() added.
5088 Added not implemented functions defs as comment.
5090 * [misc/winsocket.c]
5091 Change WSAGetXbyY() functions to non-blocking ones,
5092 Added WSAAsyncSelect().
5093 (WSA functions can't be canceled yet).
5095 Wed Apr 20 23:58:58 1994 Scott A. Laird (scott@curly)
5097 * misc/profile.c: Fixed bug with GetIniFileName returning wrong
5098 path when given a simple file name. Fixed GetSetProfile to allow
5099 enumerating all key names when KeyName is null.
5101 Apr 25, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5103 * [objects/bitblt.c]
5104 Add protection to BitBlt() & StretchBlt() for width or height = 0.
5106 * [windows/nonclient.c]
5107 Avoid painting in NC_DoNCPaint() if IsWindowVisible().
5108 Simplify NC_TrackMouseMenuBar() because code moved to MenuFocusLoop().
5111 CreateWindowEx() & DestroyWindow() now call respectively
5112 AddWindowToTask() & RemoveWindowFromTask().
5113 New empty stub for function AnyPopup().
5115 * [loader/library.c]
5116 Bug Fix : GetModuleFileName() now return full path filename.
5118 * [include/menu.h] [controls/menu.c]
5119 Add hText handle and remove obsolete MENUITEM struct members.
5120 Add a ReleaseCapture() in SetMenu() when menubar changed while captured.
5121 Add MenuMouseMove() MenuButtonUp() in function MenuFocusLoop().
5124 GetTempFilename() now create a file.
5125 _lcreate() use unix open (name, mode, perm), with perm=O666.
5128 Remove temporarly builtin SHELL.DLL, Add MMSYSTEM.DLL in builtin list.
5130 * New file [misc/mmsystem.c]
5131 * New file [include/mmsystem.h]
5132 * New file [if1632/mmsystem.spec]
5133 Many, many empty stubs ... :-)
5135 ----------------------------------------------------------------------
5137 Wed Apr 20 14:53:35 1994 Bob Amstadt (bob@pooh)
5139 * [tools/build.c] [if1632/call.S] [if1632/Imakefile]
5140 Fixed bug for non-Linux systems.
5142 Apr 18, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5145 Bug fixed in CreateWindowEx() : Now use SetMenu() for menubar setup.
5146 New empty stub for function SetSysModalWindow().
5149 New empty stub for function ExitWindows().
5152 New empty stub for function EnumFonts().
5154 * New file [misc/property.c]
5155 New functions RemoveProp(), GetProp(), SetProp() & EnumProps().
5157 * New file [misc/shell.c]
5158 New empty stubs for function RegisterShellProc(),
5159 ShellExecute() & ShellProc().
5161 * New files [loader/task.c] & [include/task.h]
5162 Move functions GetWindowTask(), GetNumTask(), EnumTaskWindows()
5163 from 'loader/library.c'.
5165 * [if1632/user.c] [if1632/kernel.c]
5166 Put Atoms functions entries.
5168 * [controls/combo.c]
5169 New functions DirDlgSelectComboBox() & DirDlgListComboBox().
5171 * [controls/listbox.c]
5172 New functions DirDlgSelect() & DirDlgList().
5174 Sun Apr 17 20:57:59 1994 Erik Bos (erik@trashcan.hacktic.nl)
5179 * [if1632/callback.c]
5180 CallGrayStringProc() added.
5182 * [if1632/relay.c] [if1632/mmsystem.spec]
5185 * [if1632/kernel.spec] [if1632/user.spec]
5186 Added forgotten specs for atom functions.
5188 ----------------------------------------------------------------------
5189 Tue Apr 12 00:05:31 1994 Bob Amstadt (bob@pooh)
5191 * misc/spy.c (SpyInit): Added more message types
5193 * [windows/mdi.c] [include/mdi.h]
5194 Maximizing and restoring child windows.
5195 Tiling of child windows.
5197 Mon Apr 11 20:48:28 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
5199 * [windows/winpos.c]
5200 Revert focus and activation to previous window when hiding a window.
5202 * [windows/syscolor.c]
5203 Implemented system color objects (brushes and pens created at
5204 SetSysColor() time for better performance).
5206 * [windows/graphics.c] [windows/nonclient.c] [controls/button.c]
5207 Changed painting code to use system color objects.
5209 * [windows/message.c]
5210 New function MSG_InternalGetMessage() for internal messages
5211 loops (e.g. for dialogs or menus).
5213 * [windows/hook.c] [include/hook.h] (New files)
5214 Beginning of the window hooks implementation.
5216 * [windows/dialog.c]
5217 Use new function MSG_InternalGetMessage() in DialogBox().
5219 * [if1632/callback.c]
5220 Added function CallHookProc().
5222 Apr 11, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5225 Bug fix : WM_CHARs are sent to focused window like WM_KEY???.
5228 Nothing much more than a stub for LoadModule(), I saw there a lot
5229 to be done in that corner, I will come back later ...
5231 * [loader/library.c]
5232 New functions GetWindowTask(), GetNumTask(), EnumTaskWindows()
5233 and associated modules & tasks linked-lists.
5234 (it's only an 'emerging bud', more to come next weeks).
5237 Use LoadLibrary() instead of LoadImage() for 'sysres.dll'.
5240 You can now click outside menu region without problem.
5241 Keyboard navig more smootly, even if a child has the focus.
5242 Bug fix in InsertItem(), (bad linklist when insert point not found).
5243 change Realloc for Free & Alloc in ModifyItem().
5244 MF_STRING now set BLACK_PEN to fix bug of bad color of the underscores
5245 done by DrawText(), (maybe it should done in DrawText() itself ?).
5247 Sun Apr 10 14:06:08 1994 Erik Bos (erik@trashcan.hacktic.nl)
5250 .INI files will now be stored in / loaded from the windows dir
5251 if no path is supplied.
5253 * [if1632/kernel.spec]
5254 Fixed GetDriveType's prototype.
5256 * [if1632/winsock.spec] [include/winsock.h] [misc/winsocket.c]
5257 Fixed prototypes: winsock uses a word as socket handle not an int.
5259 * [misc/winsocket.c]
5260 Added heap allocation for returned structures.
5261 Added non-blocking WSAAsyncGetXbyY() functions as blocking ones.
5264 Added IsDLLLoaded(), used in LoadImage() to prevent loading
5265 a dll multiple times.
5266 Directory is added to wine's path when a fullpath is supplied when
5268 LoadImage(): DLL filename used instead DLL's own internal name,
5269 fixes 'Bad DLL name' errors.
5271 Sat Apr 9 08:26:03 1994 David Metcalfe <david@prism.demon.co.uk>
5273 * [controls/edit.c] [controls/widgets.c]
5274 First release of edit control.
5276 ----------------------------------------------------------------------
5277 Tue Apr 5 14:36:59 1994 Bob Amstadt (bob@pooh)
5279 * [include/mdi.h] [windows/mdi.c]
5280 Use WM_PARENTNOTIFY messages to activate children.
5281 Generate WM_CHILDACTIVATE messages.
5282 Beginnings handler for maxmized child window.
5283 Clean up when children are destroyed.
5285 * [windows/message.c] [windows/nonclient.c] [windows/winpos.c]
5286 Removed code add 94/03/26.
5288 Apr 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5291 Make mouse menu navigation working again. :-))
5292 (be carefull, clicking outside menus (ie.: clientrect)
5295 * [windows/nonclient.c] [controls/scroll.c]
5296 Bugs fix in NCTrackScrollBars().
5299 Bug fix in 'ToDos()' in conversion for '/',
5300 (example: '/window/' was translated to 'WINDOWs').
5303 Function ChangeDir() extract possible drive before DOS_ChangeDir().
5305 * [loader/library.c] [loader/wine.c]
5306 Playing around moving function GetProcAddress() and put some code in.
5308 Mon Apr 4 21:39:07 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
5311 Better explanation of command-line options.
5314 Implemented SetDIBitsToDevice().
5317 Bug fix in SetDCState().
5320 Removed WS_DISABLED handling (now done in message.c).
5322 * [windows/message.c]
5323 Added sending a WM_PARENTNOTIFY message in MSG_TranslateMouseMsg().
5324 Use WindowFromPoint() to find the window for mouse events, taking
5325 into account disabled windows.
5327 * [windows/painting.c]
5328 Bug fix in BeginPaint() to allow calling it at other times than
5329 on WM_PAINT (Solitaire needs it...)
5332 Implemented FindWindow().
5333 Rewritten EnableWindow() to behave more like Windows.
5335 * [windows/winpos.c]
5336 Rewritten WindowFromPoint() to also search child windows.
5338 Mon Apr 4 17:36:32 1994 Erik Bos (erik@trashcan.hacktic.nl)
5340 * [include/int21.h] -> [msdos.h]
5343 * [miscemu/int10.h] [miscemu/int25.h] [miscemu/int26.h]
5344 new, added for int 10, 25 and 26.
5346 * [miscemu/ioports.c]
5347 new, added to allow win apps to use ioports.
5350 Added support for in, inb, out, outb instructions.
5352 ----------------------------------------------------------------------
5353 Sun Mar 27 13:40:25 1994 Bob Amstadt (bob@pooh)
5355 * controls/menu.c (InsertMenu): Changed to use FindMenuItem().
5357 Sat Mar 26 21:23:55 1994 Bob Amstadt (bob@pooh)
5360 Window list properly updated.
5362 * [windows/message.c]
5363 Call WINPOS_ChildActivate() when mouse pressed.
5365 * [windows/nonclient.c]
5366 Use WINPOS_IsAnActiveWindow() instead of GetActiveWindow() in
5369 * [windows/winpos.c]
5370 Created functions WINPOS_IsAnActiveWindow() and WINPOS_ActivateChild()
5372 Thu Mar 24 14:49:17 1994 Bob Amstadt (bob@pooh)
5374 * controls/menu.c (DeleteMenu): Changed to use FindMenuItem
5375 (DeleteMenu): Many bug fixes.
5378 Created function FindMenuItem().
5380 Thu Mar 24 14:17:24 1994 Bob Amstadt (bob@pooh)
5383 Removed incorrect MDI handling code from CreateWindowEx().
5386 MF_STRING items needed to allocate a private copy of string.
5389 Fixed buggy calls to GlobalFree().
5392 Eliminated some redundant code with function call.
5394 Wed Mar 23 1994 Pentti Moilanen (pentti.moilanen@ntc.nokia.com)
5397 timer list pointers looped in InsertTimer
5399 Tue Mar 29 13:32:08 MET DST 1994 julliard@di.epfl.ch (Alexandre Julliard)
5402 A few changes for desktop window support.
5405 Added -depth option.
5408 Yet another bug fix in SubtractRect().
5410 * [objects/bitmap.c]
5411 Changes to use only one depth (specified with -depth)
5415 Added support for dithered solid brushes.
5418 Use the same 20 system colors as in Windows.
5419 System palette initialisation now done in COLOR_InitPalette().
5420 Added support for a color mapping table to map logical color
5421 indexes to X colormap entries.
5422 Implemented GetNearestColor() and RealizeDefaultPalette().
5425 Added support for color mapping table.
5427 * [objects/dither.c] (New file)
5428 Implemented solid color dithering.
5430 * [objects/palette.c]
5431 Implemented GetSystemPaletteEntries() and SelectPalette().
5434 Make a copy of the menu name in RegisterClass().
5437 Fixed device caps when using a desktop window.
5438 Added support for the color mapping table in DCs.
5441 Added ConfigureNotify handler on desktop window.
5443 * [windows/message.c]
5444 Removed call to XTranslateCoordinates() on every mouse motion
5445 New function MSG_Synchronize() to synchronize with the X server.
5447 * [windows/syscolor.c]
5448 Rewritten SYSCOLOR_Init() to read the system colors from WIN.INI.
5450 * [windows/winpos.c]
5451 Added synchronization on window mapping. Solves the double redraw
5452 problem when starting Solitaire.
5454 Mar 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5456 * [control/menu.c] * [windows/defwnd.c]
5457 Make keyboard navigation working with menubar,
5458 but temporarely inserted a bug in menubar mouse handling ... :-((
5459 (it will be fix next week !)
5461 * [windows/defwnd.c]
5462 Connect VK_MENU to menubar navigation.
5464 * [loader/library.c]
5465 GetModuleHandle() return 'fictive 0xF000+ handles' for built-in DLLs.
5467 Sun Mar 20 22:32:13 1994 Erik Bos (erik@trashcan.hacktic.nl)
5470 Added Copy(). Added a check for `-h' to show usage.
5473 Fixed bug in FindFile(), to load directories as dlls.
5476 Fixed ToUnix() and ToDos() again, as my previous patch
5479 * [misc/dos_fs.c] [miscemu/int21.c]
5480 Bug fixes, should be able to handle all winfile and progman int21
5481 requests now except for a few small things.
5483 Tue Mar 29 06:25:54 1994 crw@harris.mlb.semi.harris.com (Carl Williams)
5486 Implemented GetFreeSystemResources().
5488 ----------------------------------------------------------------------
5489 Mon Mar 21 17:32:25 1994 Bob Amstadt (bob@pooh)
5491 * controls/menu.c (GetSubMenu): Function did not return correct value
5494 Beginnings of menu handling.
5496 Thu Mar 10 11:32:06 1994 Stefan (SAM) Muenzel (muenzel@tat.physik.uni-tuebingen.de)
5499 if font.width equals zero use asterix instead.
5501 Mon Mar 21 17:23:37 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
5503 * [objects/bitmap.c]
5504 Rewritten bitmap code to use exclusively X pixmaps; *much* faster.
5507 Some changes with pattern brushes because of the new bitmap code.
5510 Added function COLOR_ToPhysical for better color mapping.
5513 Heavily optimized SetDIBits().
5516 Opimized SetDCState() and DC_SetupGC*() functions.
5517 Added stub for CreateIC().
5519 Mar 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5522 Call SetFocus() after closing box to give back focus to previous owner.
5525 Small bug fix in GetTempFilename() : replace a '\' to '\\'.
5527 * [control/scroll.c]
5528 Calls to BitBlt() replace by StretchBlt().
5531 Call SetFocus() to previous owner after closing Popups.
5532 Fill stub DeleteMenu().
5534 * [control/listbox.c]
5536 Use SetFocus() in WM_LBUTTONDOWN.
5537 Close ComboBox List upon WM_KILLFOCUS.
5538 Early development of WM_MEASUREITEM mecanism.
5540 * [windows/defwnd.c]
5541 Early development of WM_MEASUREITEM mecanism.
5543 Tue Mar 22 10:44:57 1994 Miguel de Icaza (miguel@xochitl)
5546 Fixed sintaxis problem when building the library.
5548 ----------------------------------------------------------------------
5549 Tue Mar 15 13:11:56 1994 Bob Amstadt (bob@pooh)
5551 * [include/windows.h]
5552 Added message types and structures for MDI
5555 Created internal structures for handling MDI
5558 Began creating MDI support
5560 Thu Mar 10 16:51:46 1994 Bob Amstadt (bob@pooh)
5562 * [loader/wine.c] [include/wine.h]
5563 Added new field to "struct w_files" to hold the "name table"
5564 resource for Windows 3.0 programs
5566 * [loader/resource.c]
5567 Added code to handle programs with a "name table" resource.
5568 LoadResourceByName() modified to check for the existence of
5571 Mon Mar 14 22:31:42 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
5574 Added installing the private colormap on the desktop window.
5577 Cleaned up focus event handling (see focus.c).
5578 Use GetFocus() to direct key events to the correct window.
5581 Rewritten SetFocus() to:
5582 - only set X focus on top-level windows
5583 - send WM_SETFOCUS and WM_KILLFOCUS messages (was done in event.c)
5584 - prevent setting focus to disabled windows
5585 - install private colormap so -privatemap option works again
5587 * [windows/message.c] [windows/timer.c]
5588 Changed timer management to no longer use PostMessage(), but
5589 to generate timer messages on the fly. Also fixed a related bug
5590 in GetMessage() which could cause busy-waiting.
5593 Only select focus events on top-level windows.
5595 * [windows/winpos.c]
5596 Added some sanity checks for desktop window.
5598 Fri Mar 4 20:42:01 1994 Erik Bos (erik@trashcan.hacktic.nl)
5601 bug fixes in ToUnix(), WinIniFileName(), GetUnixFileName().
5602 Support for tilde symbol added for rootdirectories in [drives]
5603 section of wine's configfile.
5606 hread(), hwrite() added.
5611 * [if1632/stress.spec] [include/stress.h] [misc/stress.c]
5612 Added STRESS.DLL, an useless dll used to stress a windows system.
5615 Added missing #includes, fixed prototypes for prototype checking.
5617 * [include/prototypes.h]
5619 Added prototypes for loader/*c, if1632/*c.
5621 ----------------------------------------------------------------------
5622 Tue Mar 8 09:54:34 1994 Bob Amstadt (bob@pooh)
5625 Added reminder to set WINEPATH, if it is not set.
5630 * [controls/button.c]
5631 Added BN_CLICKED notification for owner-draw buttons.
5633 * [if1632/kernel.spec] [memory/heap.c]
5634 Changed Local* functions to WIN16_Local* to prevent unconcious use
5638 Push old Stack16Frame on stack before setting.
5640 * [include/atom.h] [misc/atom.c] [include/heap.h] [memory/local.c]
5641 Added multiple local heap handling in Atom* functions.
5643 * [include/regfunc.h] [miscemu/int21.c]
5644 Rewrote DOS3Call() use context frame that is already on the stack.
5647 Fixed to allow leading ";" to mark comments.
5650 Fixed bugs and added support for "include" and "exclude" filters.
5653 Rearranged calls in InitApp().
5656 Fixed font handling to create system fonts, if they are used.
5659 If text drawn on window with no font specified, then default the
5660 font to the system font.
5662 Mon Mar 7 20:32:09 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
5664 * [controls/desktop.c]
5665 Added handling of WM_NCCREATE and WM_ERASEBKGND functions.
5666 Implemented SetDeskPattern().
5669 Added -desktop option to get a large desktop window with
5670 everything inside it.
5674 Bug fix in SubtractRect().
5677 Replaced the DefaultRootWindow() macro by the rootWindow variable.
5679 * [windows/event.c] [windows/message.c]
5680 [windows/nonclient.c] [windows/win.c]
5681 A few changes to accomodate the new desktop window.
5683 Tue Mar 8 11:13:03 1994 Miguel de Icaza (miguel@xochitl.nuclecu.unam.mx)
5685 * [toolkit/arch.c] --New file--
5686 Routines for converting little endian data structures to
5687 big-endian data structures, currently only BITMAP structures are
5691 When used as part of the WineLib, the code is much simpler.
5692 Doesn't depend on alignement.
5695 Ifdefed Emulator dependent code if compiling WineLib.
5697 * [loader/resource.c]
5698 Moved misc/resource.c to loader/resource.c.
5700 * [loader/dump.c,ldt.c,ldtlib.c,library,c,selector.c,signal.c]
5701 Ifdefed whole code if compiling WINELIB.
5703 * [include/winsock.h]
5704 Added compilation define to allow compilation on SunOS.
5707 Removed load_typeinfo and load_nameinfo prototypes, they belong
5711 Added load_typeinfo and load_nameinfo prototypes.
5714 Fixed some bugs in the conversion routines.
5715 Added macros for Bitmap loading.
5717 Tue Mar 8 12:52:05 1994 crw@maniac.mlb.semi.harris.com (Carl Williams)
5719 * [if1632/kernel.spec] [memory/global.c]
5720 Implemented GetFreeSpace()
5722 * [if1632/user.spec] [loader/resource.c]
5723 Implemented CreateIcon()
5725 ----------------------------------------------------------------------
5726 Tue Mar 1 11:30:21 1994 Bob Amstadt (bob@pooh)
5728 * [Configure] [*/Imakefile]
5729 Created configure script to handle different types of Wine builds.
5731 * [Configure] [tools/build.c] [if1632/Imakefile] [Wine.tmpl]
5732 Added ability to compile Wine on systems with 14-char filename limit.
5734 * [if1632/relay.c] [include/options.h] [misc/main.c]
5735 Added -relaydbg option to command line if DEBUG_RELAY is defined.
5737 * [loader/selector.c]
5738 Fixed bug in GetEntryDLLName() that caused Wine to seg fault.
5741 Fixed LocalInit() to work correctly.
5744 Added code to call loaded DLLs' initialization routines.
5746 Tue Mar 1 01:01:17 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
5749 Added clipping of child windows by their parent's client area.
5751 * [windows/nonclient.c]
5752 Bug fix in NC_DoNCPaint().
5754 * [windows/painting.c]
5755 Bug fix in RedrawWindow().
5757 Feb 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5760 Bug fix again in ATOM_DeleteAtom() :
5761 change LocalFree() by USER_HEAP_FREE().
5762 (Previous patch done Feb 13th had been lost)
5764 * [controls/scroll.c]
5765 Move bitmaps loading in AllocScrollBar() instead of in WM_CREATE.
5767 * [windows/class.c] (sorry Alex ...)
5768 There was no bug there "in RegisterClass() :
5769 WNDCLASS->lpszClassName was reset to NULL."
5772 * [misc/clipboard.c] --- New File ---
5773 New function EnumClipboardFormats().
5774 New function OpenClipboard().
5775 New function CloseClipboard().
5776 New function EmptyClipboard().
5777 New function GetClipboardOwner().
5778 New function GetClipboardViewer().
5779 New function CountClipboardFormats().
5780 New function IsClipboardFormatAvailable().
5781 New function OpenClipboard().
5782 New function GetClipboardData().
5783 New function SetClipboardViewer().
5784 New function EnumClipboardFormats().
5785 New function RegisterClipboardFormat().
5786 New function ChangeClipboardChain().
5787 New function SetClipboardData().
5788 New function GetOpenClipboardWindow().
5789 New function GetPriorityClipboardFormat().
5790 New function GetClipboardFormatName().
5792 Tue Mar 1 20:15:45 1994 Erik Bos <erik@trashcan.hacktic.nl>
5795 bugfix in OpenComm().
5797 ----------------------------------------------------------------------
5798 Tue Feb 22 18:04:02 1994 Jeffrey Hsu <hsu@freefall.cdrom.com>
5800 * [include/winsock.h]
5801 The sockproto struct is already defined in <sys/socket.h>
5804 Need to include <netinet/in.h> for struct in-addr.
5805 Use sys_errlist[] instead of strerror[].
5808 ANSI C specifies that the malloc functions are defined in stdlib.h,
5809 so we don't need to include malloc.h.
5812 Print informative error message about probable cause of i386_set_ldt()
5813 failure and then exit.
5816 For systems that don't use gmake by default, set the MAKE variable
5817 to gmake and propagate it on recursive makes.
5818 Take out -li386 for FreeBSD systems and define __FreeBSD__ so Wine
5819 can be built with the FreeBSD 1.0.2 compiler.
5821 Tue Feb 22 02:52:19 EST 1994 jrichard@cs.uml.edu (John Richardson)
5823 * [objects/bitblt.c]
5824 Added in three functions to do stretching and compression
5825 for WHITEONBLACK, BLACKONWHITE, and color copies.
5827 Tue Feb 22 15:01:31 EST 1994 jrichard@cs.uml.edu (John Richardson)
5829 * [windows/graphics.c]
5830 Added FloodFill and FloodFill_rec. FloodFill_rec is pretty
5831 inefficent, but should suffice for now.
5833 * [include/windows.h]
5834 Changed the x,y paramaters for the FloodFill prototype
5837 Tue Feb 22 00:58:28 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
5839 * [windows/widgets.c]
5840 Added desktop window class.
5842 * [windows/painting.c]
5843 Bug fix in RedrawWindow().
5844 Implemented ExcludeUpdateRgn().
5846 * [windows/win.c] [windows/winpos.c]
5847 Implemented desktop window.
5849 * [controls/desktop.c]
5850 Preliminary desktop window procedure.
5852 Feb 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5855 New function LoadMenuIndirect().
5856 New function GetMenuCheckMarkDimensions().
5858 * [if1632/user.spec]
5859 Entry for DefDlgProc().
5862 Fix bug in RegisterClass() :
5863 WNDCLASS->lpszMenuName was reset to NULL.
5866 In CreateWindowEx(), if hMenu == 0 then use
5867 wndclass->lpszMenuName to load Menu from resource;
5869 Mon Feb 21 22:38:28 1994 Erik Bos (erik@trashcan.hacktic.nl)
5871 * [loader/library.c] [loader/wine.c]
5872 Fixed runing DLL's as main executable problem.
5875 Added wildcard support in DOS_readdir().
5877 * [misc/winsocket.c]
5878 Added proper error handling of BSD winsocket functions.
5881 KERNEL_DOS3Call renamed to DOS3Call and modified to use do_int21().
5884 Added functions for GetVersion, GetWinFlags and GetTimerResolution
5885 for libwine.a, SystemParametersInfo() partly implemented.
5887 Tue Feb 22 19:00:02 1994 Miguel de Icaza (miguel@xochitl.nuclecu.unam.mx)
5889 * [toolkit/winmain.c]
5890 Added _WinMain function. Setups the library (calls USER_InitApp).
5893 Added load_mz_header, load_ne_header, load_type_info and
5894 load_name_info functions.
5900 Moved from loader/misc.c. I hope to put back all the loader
5901 functions in the ~loader subdirectory in the future. CUrrently is
5902 needed since it has USER_InitApp.
5905 Since WineLib will probably need DLLs (currently it needs
5906 Sysres.dll). WineLib will be using much code of the loader again.
5907 So I removed some ifdefs that were used by WineLib.
5909 Added load_typeinfo and load_nameinfo (and the corresponding
5910 functions in [toolkit/sup.c]
5912 Added integer convertion functions in the needed places.
5914 Added very ugly patch (includes wine.c). In the next release I
5915 plan to move back all the loader routines to ~/loader. In the
5916 meantime I needed this patch. It doesn't affect any of the
5917 emulator code (its ifdefed for WineLib).
5920 Cleaned up call to WinMain (now uses [toolkit/winmain.c]
5921 Ifdefed argument number checking when compiling the library.
5924 Modified to use load_(mz|ne)_header instead of doing a direct
5925 read. When compiling the emulator it still uses the direct read
5929 Prototypes for loading routines.
5932 Added WINE_PACKED macro instead of __attribute__ ((packed))
5935 Macros for converting integers (Little endian to big-endian).
5936 Needed in the Sun to allow loading of DLL files.
5938 ----------------------------------------------------------------------
5939 Mon Feb 14 23:48:09 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
5941 * [windows/clipping.c]
5942 Moved everything into windows/painting.c and removed this file.
5944 * [windows/message.c]
5945 Removed calls to memmove() in MSG_RemoveMsg().
5947 * [windows/nonclient.c]
5948 Added WM_GETMINMAXINFO support for window resizing.
5950 * [windows/painting.c]
5951 Implemented RedrawWindow().
5953 * [windows/scroll.c]
5954 Bug fix in ScrollWindowEx().
5957 Moved UpdateWindow() to windows/painting.c.
5959 Fri Feb 11 12:41:28 1994 Erik Bos (erik@trashcan.hacktic.nl)
5961 * [loader/wine.c] [misc/dos_fs.c]
5962 getenv() eq NULL bugfixes.
5965 cfmakeraw changed for SunOS.
5967 Feb 13, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
5970 Bug fix in ATOM_DeleteAtom() :
5971 change LocalFree() by USER_HEAP_FREE().
5974 New function FatalAppExit().
5977 New empty stub SetMapperFlags().
5980 Better CheckMark & other bitmaps placement.
5982 * [windows/graphics.c]
5983 New function RoundRect() : calc.exe now working...
5985 Tue Feb 15 14:29:37 1994 John Richardson
5987 * [objects/bitblt.c]
5988 Fixed StretchBlt so it works quicker and faster. It still doesn't
5989 use the StretchMode bits for bitmap compression, but that will
5992 Mon Feb 14 13:21:04 1994 Miguel de Icaza (miguel@roxanne.nuclecu.unam.mx)
5994 * [include/windows.h,dialog.h,gdi.h]
5995 Changed __atribute__ ((packed)) for WINE_PACKED.
5996 When compiling the library this is defined as nothing. This gets
5997 rid with all the problems compiling under SunOS. Also
5999 * [windows/utility.c]
6000 Added DebugPrintString.
6003 Added hSysRes = 1 definition to resolve externals.
6004 Added CallLineDDAProc function (toolkit version).
6005 Added toy, and hi ineficient memmove until code in message.c get
6008 * [objects/gdiobj.c]
6009 Ifdefed linux/emulator-dependent code to allow compilation of
6012 * [misc/winsocket.c]
6013 Added ifdef to allow compilation under SunOS.
6016 When compiling the library, the resource file is expected to be in
6017 a file called $argv[0].Res. Also the information of the resource
6018 is expected to be at offset 0 of the .Res file.
6021 Call WinMain with arguments if compiling WineLib.
6022 Call shutdown functions (Comm_DeInit, DOS_DeInitFS).
6023 Call sync_profiles to preserve changes to .INI files.
6025 * [misc/comm.c,dos_fs.c]
6026 removed call to atexit(Comm_DeInit)
6027 removed call to atexit(DOS_DeInitFS)
6028 Shutdown functions are now called from the return of WinMain
6030 * removed memorylib subdirectory
6032 * moved memory/atom.c to misc/atom.c
6033 moved memorylib/heap.c to toolkit/heap.c
6036 Moved DebugPrintString to windows/utility.c
6038 * [include/winsock.h]
6039 Define SO_DONTLINGER only if it has not been previously defined.
6041 * [include/windows.h]
6042 added definition for DLGPROC.
6043 added definition for LMEM_WINE_ALIGN and other LMEM_* constants.
6044 When compiling WineLib WNDPROC is defined with all the parameters
6045 to avoid compilation problems.
6048 When compiling WineLib USER_HEAP_(ALLOC|REALLOC|ADDR|FREE) the
6049 calls are translated to the library allocation routines.
6051 * [include/gdi.h,user.h]
6052 When compiling WineLib GDI_HEAP_(ALLOC|ADDR|FREE) the calls are
6053 translated to the library allocation routines.
6056 Defined LocalAlign. When compiling the emulator it's translated as
6057 a call to LocalAlloc (the original code), when compiling WineLib
6058 as a call to LocalAlloc with a WINE-flag called LMEM_WINE_ALIGN
6059 (atom.c needs aligned data on a 4 byte boundary).
6062 Renamed KERNEL_* functions and fixed prototypes.
6064 * [if1632/kernel.spec]
6065 Renamed KERNEL_* functions in order to be used by applications
6066 using Wine as a library (OpeFile, _lclose, _lread, _lcreate,
6067 _llseek, _lopen, _lwrite).
6070 Create library instead of executable when building target
6073 ----------------------------------------------------------------------
6074 Tue Feb 8 13:52:11 1994 Miguel de Icaza (miguel@roxanne)
6077 Use $(CC) instead of cc.
6078 Added libwine target.
6080 * [include/prototypes]
6081 #ifdefed section for WineLib
6083 * moved loader/cursor.c to misc/cursor.c
6084 moved loader/resource.c to misc/resource.c
6085 moved misc/emulate.c to miscemu/emulate.c
6086 moved misc/int1a.c to miscemu/int1a.c
6087 moved misc/int21.c to miscemu/int21.c
6088 moved misc/kernel.c to miscemu/kernel.c
6089 moved misc/user.c to miscemu/user.c
6091 * [memorylib/heap.c]
6092 Heap management for WineLib
6095 Modified to allow compilation under SunOS (#include errno, SunOS
6096 doesn't have atexit ()).
6099 Modified to allow compilation under SunOS (#include vfs.h)
6102 Modified to allow compilation under SunOS (OPEN_MAX constant,
6105 * [objects/palette.c]
6106 Modified to allow compilation under SunOS (#include limits)
6109 WineLib version of CallWindowProc.
6112 Typedef XPointer under X11R4 (OpenWindows).
6115 When compiling WineLib, use direct callbacks instead of the
6116 windows supplied callbacks.
6118 Mon Feb 7 22:37:34 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
6121 New function CURSOR_SetWinCursor(), for internal use, to set
6122 the cursor of a specific window more reliably than with SetCursor().
6124 * [windows/nonclient.c]
6125 Better window management. Moving and resizing from the system
6126 menu should work now.
6127 Added scroll-bar mouse tracking.
6130 Moved scroll-bar creation and destruction to defwnd.c.
6132 Feb 5, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6134 * [windows/nonclient.c]
6135 Call to StdDrawMenuBar() during NC's drawing.
6136 New NC_TrackMouseMenuBar() function which call
6137 MenuButtonDown(), MenuButtonUp() & MenuMouseMove().
6140 New ChangeMenu() function.
6141 Remove permanently old Xt menu code.
6142 Make common functions MenuButtonDown(), MenuButtonUp()
6143 & MenuMouseMove() for both popups & menubar.
6145 * [controls/combo.c]
6146 Paint OBM_COMBO directly in combo client.
6148 * [controls/listbox.c]
6149 Fix bug in multicolumns calculations.
6151 * [controls/Makefile]
6152 Remove rules for old file 'caption.c'.
6155 Remove empty stub GetModuleFileName().
6157 * [loader/library.c]
6158 New GetModuleHandle() function.
6159 New GetModuleUsage() function.
6160 New GetModuleFileName() function.
6162 * [loader/resource.c]
6163 Try to find the bug a missing menu loading ... Not found yet !
6166 Remove old menubar creation.
6168 Thu Feb 3 22:30:11 1994 Erik Bos (erik@trashcan.hacktic.nl)
6170 * [misc/winsocket.c]
6171 More functions added.
6173 * [if1632/winsock.spec] [misc/winsocket.c]
6174 Added John Brezak's winsock.dll stuff.
6176 ----------------------------------------------------------------------
6177 Tue Feb 1 21:14:47 1994 Bob Amstadt (bob@pooh)
6179 * [loader/selector.c]
6180 Added function CreateNewSegments(). Modified IPCCopySelector
6181 to allow aliasing to any arbitrary memory space.
6184 Fixed potential bug in GlobalGetFreeSegments().
6187 Created functions GlobalLinearLock() and GlobalLinearUnlock().
6189 Tue Feb 1 05:51:43 1994 julliard@di.epfl.ch (Alexandre Julliard)
6191 * [controls/widgets.c]
6192 Removed CAPTION window class.
6195 Bug fix in LoadCursor(): don't allocate memory every time for
6198 * [windows/clipping.c]
6199 Invalidate child windows in InvalidateRgn().
6201 * [windows/defwnd.c]
6202 Added repaint of the caption when changing window text.
6205 Modified SetCapture() to allow keyboard events while capturing.
6207 * [windows/message.c]
6208 New function MSG_GetHardwareMessage(), to do mouse tracking
6209 without returning control to the Windows program.
6211 * [windows/nonclient.c]
6212 A couple of changes in frame drawing for DLGMODALFRAME windows.
6213 Rewritten window moving code, to use MSG_GetHardwareMessage()
6214 instead of non-client mouse events (this is the way Windows
6215 does it), and to send WM_ENTERSIZEMOVE messages.
6216 Removed WM_NCBUTTONUP and WM_NCMOUSEMOVE handlers.
6219 Allocate temporary structures on the USER heap instead of
6220 using GlobalAlloc().
6222 * [windows/winpos.c]
6223 Added function WINPOS_GetMinMaxInfo() to get sizing informations.
6225 Jan 31, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6227 * [windows/nonclient.c]
6228 Call to StdDrawScrollBar() during NC's drawing.
6229 Call to NC_ScrollBarButtonDown() on NC mouse events WM_LBUTTONDOWN.
6230 Call to NC_ScrollBarButtonUp() on NC mouse events WM_LBUTTONUP.
6231 Call to NC_ScrollBarMouseMove() on NC mouse events WM_MOUSEMOVE.
6234 New GetSubMenu() function.
6235 Move GetMenu() & SetMenu() functions from 'windows/win.c'.
6237 * [controls/listbox.c]
6238 Start changes to satisfy recent changes in scrollbars/windows.
6240 * [loader/resource.c]
6241 Put some code in LoadAccelerators() stub.
6242 New TranslateAccelerator() function.
6245 Remove GetMenu() & SetMenu() functions.
6246 Call to NC_CreateScrollBars() if required by CreateWindow().
6248 ----------------------------------------------------------------------
6249 Mon Jan 24 10:40:10 EST 1994 John Richardson (jrichard@cs.uml.edu)
6252 Added functions EnumWindows, EnumChildWindows, and helper
6253 WIN_EnumChildWin. EnumWindows won't list all wine windows
6254 because GetDesktopWindow isn't complete. However, the code
6255 is in place for it to work correctly and only needs
6256 GetDesktopWindow to do so.
6258 Tue Jan 25 05:51:47 1994 julliard@di.epfl.ch (Alexandre Julliard)
6260 * [windows/defwnd.c]
6261 Added handling of activation messages (WM_ACTIVATE,
6262 WM_NCACTIVATE, WM_MOUSEACTIVATE)
6265 De-activate the window when losing input focus.
6268 Bug fix in SetFocus().
6270 * [windows/message.c]
6271 Added activation of the window on mouse-clicks.
6273 * [windows/nonclient.c]
6274 Changed non-client area painting to use the correct colors
6275 depending upon the activation state.
6276 Added WM_NCACTIVATE message handling.
6277 Fixed a couple of bugs in window moving and resizing.
6279 * [windows/winpos.c]
6280 Implemented Get/SetActiveWindow().
6281 Implemented SWP_NOACTIVATE flag in SetWindowPos().
6283 Jan 17, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6286 MessageBox has a CaptionBar for his title except for
6287 MB_SYSTEMMODAL with MB_ICONHAND.
6289 * [windows/nonclient.c]
6290 Call to NC_TrackSysMenu on SysMenu button mouse click.
6292 * [windows/defwnd.c]
6293 Call to NC_TrackSysMenu on Alt key (VK_MENU).
6296 New GetSystemMenu() function.
6297 New CopySystemMenu() internal function.
6298 New NC_TrackSysMenu() internal function.
6300 * [include/windows.h]
6301 New WM_INITMENU, WM_INITMENUPOPUP, WM_MENUSELECT & WM_MENUCHAR defines.
6303 ----------------------------------------------------------------------
6304 Thu Jan 13 11:45:13 1994 John Richardson <jrichard@cs.uml.edu>
6307 Added functions EnableWindow, IsWindowEnabled, and helper
6311 Added checks for WS_DISABLED windows in EVENT_key, EVENT_MotionNotify,
6312 EVENT_ButtonPress, EVENT_ButtonRelease, EVENT_ConfigureNotify,
6313 EVENT_FocusIn, EVENT_FocusOut, and EVENT_EnterNotify. Key and
6314 button presses beep for a disabled window.
6315 If anyone finds better places for these checks, please tell me.
6317 Jan 17, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6320 Cleanup on buttons answer value returned.
6323 Now use OBM_COMBO bitmap dropdown button.
6325 Mon Jan 17 21:56:45 1994 Erik Bos (erik@trashcan.hacktic.nl)
6330 Tue Jan 18 06:36:48 1994 julliard@di.epfl.ch (Alexandre Julliard)
6333 Added X cursor for IDC_SIZENS and IDC_SIZEWE.
6335 * [include/options.h] [misc/main.c] (New files)
6336 Rewrote main() function to get rid of Xt application context,
6337 and added command-line option parsing.
6340 Use of a private map now configurable with command-line option.
6342 * [windows/defwnd.c]
6343 Added WM_SYSCOMMAND handling, and better WM_SETCURSOR handling.
6346 Removed ConfigureNotify event handler (no longer needed).
6348 * [windows/message.c]
6349 Send WM_SETCURSOR message on mouse events.
6351 * [windows/nonclient.c]
6352 Use OEM bitmaps for the drawing of the non-client area.
6353 Added caption bar buttons handling, and moving and resizing of
6354 the window via the window frame (bypassing the window manager).
6356 * [windows/painting.c]
6357 Bug fix in BeginPaint().
6360 Set the override_redirect flag for windows (to bypass window
6363 * [windows/winpos.c]
6364 Implemented WindowFromPoint(), ChildWindowFromPoint(),
6365 BringWindowToTop(), Get/SetInternalWindowPos(),
6366 Get/SetWindowPlacement().
6368 Mon Jan 17 20:48:24 1994 Bob Amstadt (bob@pooh)
6371 Added support for multiple local heaps.
6373 ----------------------------------------------------------------------
6374 Tue Jan 4 13:01:33 1994 David Metcalfe <david@prism.demon.co.uk>
6377 Modified code to use system timer.
6379 Jan 9, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6382 Windows create if required new XLIB MenuBar & CaptionBar.
6384 * [windows/defwnd.c]
6385 WM_CALCSIZE Move & Resize caption, menubar & scrollbars.
6386 (I'm not sure it's the good place for it, but it work...)
6388 * [loader/resource.c]
6389 optimize in FindResourceByNumber, make lseek() if next type ...
6391 * [controls/scroll.c]
6392 scrollbar buttons are now using system resources bitmaps.
6394 * [controls/caption.c] - new file ...
6395 captionbar showing title, close button with SysMenu,
6396 and other buttons using system resources bitmaps.
6399 New functions: SetMenuItemBitmaps() with 'glues',
6400 Make new version of LoadMenu() & ParseMenu(),
6401 ( put #define USE_POPUPMENU ).
6402 Implementation of MenuBar functions.
6405 New bitmaps for system such OBM_CLOSE, OBM_MINIMIZE, OBM_UPARROWI.
6406 New SYSMENU menu, it don't work yet ! :-((
6408 Tue Jan 11 05:27:45 1994 julliard@di.epfl.ch (Alexandre Julliard
6411 Fixed a bug that could cause atoms to be case-sensitive.
6414 Bug fix in SubtractRect().
6416 * [objects/clipping.c]
6417 Bug fix when setting the clip mask to an empty region.
6420 Bug fix in ReleaseDC().
6422 * [windows/dialog.c]
6423 Call AdjustWindowRectEx() before creating the dialog window.
6424 Added support for DS_MODALFRAME style.
6427 Cleaned up event handling and removed old Xt stuff.
6428 Moved double-click handling to windows/message.c
6431 Bug fix: only set the X focus when the window is viewable.
6433 * [windows/graphics.c]
6434 Rewritten DrawReliefRect() to use brush instead of pen, and
6435 to use the system colors.
6437 * [windows/message.c]
6438 Implemented WM_NCHITTEST message sending, and non-client
6440 Cleaned up double-click handling, and removed the Xt code.
6442 * [windows/nonclient.c] (New file)
6443 Implemented AdjustWindowRect().
6444 Implemented WM_NCCALCSIZE, WM_NCHITTEST and WM_NCPAINT handling.
6446 * [windows/painting.c]
6447 Added sending of the WM_NCPAINT message in BeginPaint().
6449 * [windows/sysmetrics.c] [include/sysmetrics.h] (New files)
6450 Implemented system metrics.
6453 Bug fix in setting the parent and owner in CreateWindow().
6454 Removed the Xt code.
6456 * [windows/winpos.c]
6457 Added sending of the WM_NCPAINT message in SetWindowPos().
6458 Removed the Xt code.
6460 Sun Jan 2 12:38:53 1994 David Metcalfe <david@prism.demon.co.uk>
6463 Implemented GetClassName and GetClassInfo.
6466 Various improvements to text caret code.
6468 Fri Dec 31 15:22:22 1993 John Brezak <brezak@apollo.hp.com>
6471 Patches to work with NetBSD.
6473 Thu Dec 30 12:11:55 1993 John Richardson <jrichard@cs.uml.edu>
6475 * [objects/bitblt.c] Added StretchBlt().
6477 Tue Jan 4 05:22:07 1994 julliard@di.epfl.ch (Alexandre Julliard)
6480 Added creation of system message queue.
6482 * [objects/bitmap.c] [objects/dcvalues.c] [windows/dc.c]
6483 Added DC size fields into DC structure.
6485 * [objects/clipping.c]
6486 Bug fix in CLIPPING_IntersectRect().
6489 Allocate a DCE instead of a DC for CS_CLASSDC classes.
6491 * [windows/clipping.c]
6492 Fixed GetUpdateRect() and GetUpdateRgn() to clip to the client area.
6495 Implemented GetDCEx() and GetWindowDC().
6497 * [windows/defwnd.c]
6498 Implemented WM_WINDOWPOSCHANGED handling.
6501 Preliminary support for Xlib event handling instead of Xt callbacks.
6502 Changed MSG_AddMsg() calls to hardware_event() or PostMessage().
6504 * [windows/message.c]
6505 Preliminary support for multiple message queues.
6506 Implemented hardware_event() to store messages into the system queue.
6507 Implemented Get/SetTaskQueue().
6508 Better WM_PAINT and WM_TIMER handling.
6509 Changes to use Xlib instead of Xt for events.
6511 * [windows/painting.c]
6512 Use GetDCEx() to retrieve the DC, to get a correct visible region.
6515 Moved the timer procedure callback into DispatchMessage().
6516 Changed implementation to get rid of Xt timeouts. Timer checking
6517 is now done inside GetMessage().
6520 Allocate a DCE instead of a DC for CS_OWNDC windows.
6521 Replaced Xt calls with Xlib calls.
6522 Moved window positioning functions into windows/winpos.c
6524 * [windows/winpos.c] (New file)
6525 Rewritten most of the window positioning functions.
6526 Implemented SetWindowPos() and MapWindowPoints().
6528 Jan 3, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6530 * [if1632/user.spec]
6531 Bad arguments description for function SetDlgItemText.
6534 Function DrawText now handle DT_CALCRECT request.
6537 Message boxes now use DrawText with DT_CALCRECT.
6539 * [windows/graphics.c]
6540 Bug fix in function FrameRect, (it was using PEN instead of BRUSH).
6543 Bug fix for flags in function ShowWindow.
6544 More accurate WM_SIZE generated by function ShowWindow.
6546 * [controls/listbox.c]
6547 More code for LBS_MULTIPLESEL.
6548 More code for LBS_MULTICOLUMN.
6550 * [include/windows.h]
6551 Bad define for MF_SEPARATOR.
6554 New functions: PopMenuWndProc() with 'glues',
6555 CreatePopupMenu(), AppendMenu(), InsertMenu(), RemoveMenu(),
6556 DeleteMenu(), ModifyMenu(), TrackPopupMenu().
6557 Code in stubs: CreateMenu(), DestroyMenu().
6559 Sat Jan 1 10:22:43 1994 Bob Amstadt (bob@pooh)
6561 * loader/wine.c: Added support for relocation types 5 and 6.
6563 Mon Dec 27 11:06:03 1993 Erik Bos (erik@trashcan.hacktic.nl)
6566 new functions: BuildCommDCB(), OpenComm(), CloseComm(),
6567 SetCommBreak(), ClearCommBreak(), EscapeCommFunction(), FlushComm(),
6568 GetCommError(), SetCommEventMask(), GetCommEventMask(),
6569 SetCommState(), GetCommState(), TransmitCommChar(), ReadComm(),
6572 Wed Dec 22 13:00:15 1993 David Metcalfe <david@prism.demon.co.uk>
6575 Implemented text caret functions.
6577 Tue Dec 21 06:13:58 1993 julliard@di.epfl.ch (Alexandre Julliard)
6580 Bug fix in LoadImage().
6582 * [objects/bitblt.c] [objects/clipping.c] [objects/text.c]
6583 [windows/dc.c] [windows/dce.c] [windows/graphics.c]
6584 Modified graphics calls to take into account the DC origin.
6586 * [windows/defwnd.c]
6587 Added preliminary WM_NCCALCSIZE handling.
6590 Send WM_NCCALCSIZE message on resize event.
6593 Send WM_NCCALCSIZE message in CreateWindow().
6594 Realize widgets at creation time (should prevent problems with
6595 unrealized widgets).
6597 Dec 19, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6599 * [controls/static.c]
6600 Send mouse & keyboard message received to its parent.
6602 * [controls/scroll.c]
6603 Send keyboard message received to its parent.
6605 * [controls/listbox.c]
6606 Add Navigation keys .
6607 ListBox now use VSCROLL & HSCROLL instead of children.
6608 Alpha version of LBS_MULTIPLESEL.
6609 Alpha version of LBS_MULTICOLUMN.
6611 * [controls/combo.c]
6612 Add Navigation keys on closed ComboBox.
6613 Remove useless 'COMBOBOX_CreateComboBox' function.
6615 Mon Dec 19 20:39:34 1993 Erik Bos (erik@trashcan.hacktic.nl)
6618 LoadImage() modified to use FindFile().
6626 Dec 13, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6629 bug fix in GlobalGetFreeSegment : good ptr in 'g_prev'.
6632 preliminary version of a 'glass of wine' bitmap
6635 New function 'GetCapture'.
6637 * [controls/scroll.c]
6638 Remove useless 'SCROLLBAR_CreateScrollBar' function.
6640 * [controls/listbox.c]
6641 Remove useless 'LISTBOX_CreateListBox' function.
6643 Mon Dec 13 13:51:00 1993 David Metcalfe <david@prism.demon.co.uk>
6646 Corrected bugs in GetCharWidth().
6649 Modified EVENT_key to send Windows virtual key codes for
6650 WM_KEYDOWN and WM_KEYUP messages, and a WM_CHAR message
6651 for printable characters.
6653 Wed Dec 08 19:20:00 1993 Karl Guenter Wuensch (hn324wu@unidui.uni-duisburg.de)
6655 * [windows/graphics.c]
6656 Added Polyline and Polygon
6658 Mon Dec 13 14:51:54 1993 Erik Bos (erik@trashcan.hacktic.nl)
6660 * [controls/listbox.c]
6661 ListBoxDirectory() modified to use dos_fs.c's functions to
6662 access files&|drives.
6664 Sat Dec 04 17:04:23 1993 Erik Bos (erik@trashcan.hacktic.nl)
6667 Added FindFile() to search a file in a dos/unix style path.
6670 New Win31 functions: OpenFile, _lcreate, _llseek, GetTempDrive,
6671 GetTempFileName, GetWindowsDirectory, GetSystemDirectory,
6677 Wed Dec 1 16:20:45 1993 Miguel de Icaza (miguel@roxanne.nuclecu.unam.mx)
6680 The Profile functions now return the correct values. They now
6681 implement all the features described in the SDK.
6683 Tue Nov 30 13:55:27 1993 Bob Amstadt (bob at amscons)
6685 * [loader/selector.c]
6686 Rewrote selector aliasing routines to use System V IPC
6687 routine to alias memory segments.
6689 Nov 28, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6691 * [controls/listbox.c]
6692 More consistency in functions using wIndexes
6694 * [controls/scroll.c]
6695 New function : ShowScrollBar().
6697 * [loader/cursor.c] ... New file
6698 Move cursor functions from [loader/resource.c].
6699 New function : ClipCursor().
6700 New function : GetClipCursor().
6701 New function : CreateCursor().
6702 SetCursor() now working using gloabal variable 'winHasCursor'.
6705 New stub only : SelectPalette().
6706 New stub only : RealizePalette().
6709 New function : EVENT_enter_notify(),
6710 update 'winHasCursor' and send WM_SETCURSOR.
6713 Add processing of WM_SETCURSOR message.
6716 New members in WND structure : hCursor, hWndVScroll & hWndHScroll.
6717 CreateWindowEx() now create children for WM_HSCROLL & WM_VSCROLL.
6718 New function ClientToScreen().
6719 New function ScreenToClient().
6721 Mon Nov 25 18:25:40 1993 Erik Bos (erik@trashcan.hacktic.nl)
6723 * [files.h / regfunc.h / misc/dos.c]
6727 Added support for loading dosdrive cfg from wine.ini.
6733 Wed Nov 24 11:37:33 1993 julliard@disuns2.epfl.ch (Alexandre Julliard)
6735 * [include/atom.h] [memory/atom.c]
6739 Modified RegisterClass() to use atoms.
6740 Implemented CS_GLOBALCLASS style.
6742 * [windows/message.c]
6743 Implemented RegisterWindowMessage().
6745 * [loader/resource.c]
6746 Bug fix in LoadResource().
6748 * [windows/dialog.c]
6749 Modified CreateDialogParam() to use Find/LoadResource().
6751 Mon Nov 22 13:58:56 1993 David Metcalfe <david@prism.demon.co.uk>
6753 * [windows/scroll.c]
6754 Preliminary implementations of ScrollWindow, ScrollDC and
6757 Nov 21, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6759 * [controls/listbox.c]
6760 Optimization of redraw during 'Add' or 'Insert'.
6762 * [controls/scroll.c]
6763 Optimization of WM_PAINT during 'thumbtracking'.
6765 * [controls/button.c]
6766 Add of beta implement of 'BS_OWNERDRAW'
6768 * [controls/static.c]
6769 Style 'SS_ICON' new supported.
6772 Begin of implemantation of MB_XXX styles.
6774 * [loader/resource.c]
6775 Function LoadIcon() : now prepare transparency Bitmap mask.
6776 Function LoadCursor() : now prepare a 'X pixmapcursor'.
6777 New function SetCursor() : not finished.
6778 New function ShowCursor() : not finished.
6779 New function AccessResource() : stub.
6782 Function DrawIcon(): deugging phase of icon transparency mask.
6784 * [loader/library.c]
6785 new file for news functions LoadLibrary() & FreeLibrary().
6788 Resources only 16bits DLL for System Resources, icons, etc...
6790 Sun Nov 14 14:39:06 1993 julliard@di.epfl.ch (Alexandre Julliard)
6792 * [include/dialog.h] [windows/dialog.c]
6793 Simplified dialog template parsing.
6794 Implemented DialogBoxIndirect().
6797 Fixed bug in CreateWindow() when aborting window creation.
6798 Modified UpdateWindow() to only update visible windows.
6799 Implemented IsWindow().
6801 Nov 14, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6803 * [controls/listbox.c]
6804 Listbox control window : new messages.
6806 * [controls/combo.c]
6807 Combo box control window : new messages.
6810 Moved stub MessageBox() to this new file.
6811 Implemented of a callback, now MessageBox show a window.
6813 * [loader/resource.c]
6814 New function DestroyIcon()
6815 New function DestroyCursor()
6816 Filled stub LoadIcon()
6817 Filled stub LoadCursor()
6818 Bug fixed in FindResourceByName() : missing lseek().
6821 New function DrawIcon()
6824 New function CloseWindow()
6825 New function OpenIcon()
6826 New function IsIconic()
6827 New Function FindWindow()
6829 Sun Nov 14 08:27:19 1993 Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de)
6831 * [loader/selector.c]
6832 Wrote AllocCStoDSAlias() and AllocDStoCSAlias()
6834 Sun Nov 14 08:27:19 1993 Bob Amstadt (bob at amscons)
6836 * [loader/selector.c]
6837 Wrote AllocSelector() and PrestoChangoSelector(). YUK!
6839 Sat Nov 13 13:56:42 1993 Bob Amstadt (bob at amscons)
6841 * [loader/resource.c]
6842 Wrote FindResource(), LoadResource(), LockResource(),
6845 * [include/segmem.h] [loader/selector.c] [loader/signal.h]
6846 Changed selector allocation method.
6848 Sun Nov 10 08:27:19 1993 Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de)
6850 * [if1632/callback.c if1632/call.S if1632/user.spec]
6851 added Catch (KERNEL.55) and Throw (KERNEL.56)
6853 Nov 7, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6855 * [controls/scroll.c]
6856 Scroll bar control window
6857 Bug resolved : Painting message before scroll visible.
6859 * [controls/listbox.c]
6860 Listbox control window
6863 * [controls/combo.c]
6864 Combo box control window
6867 * [controls/button.c]
6868 GetCheck Message now return is state.
6871 New function IsWindowVisible()
6873 Mon Nov 1 14:40:21 1993 julliard@di.epfl.ch (Alexandre Julliard)
6875 * [if1632/user.spec]
6876 Removed some duplicate entries.
6878 * [include/dialog.h] [windows/dialog.c]
6879 Implemented dialog units and fonts.
6880 Added preliminary loading of dialog resources.
6881 Preliminary implementation of DialogBox().
6882 Implemented Get/SetDlgItem* functions.
6885 Implemented WM_PARENTNOTIFY message.
6886 Implemented CreateWindowEx() and GetWindow().
6887 Completed DestroyWindow().
6889 Mon Nov 1 18:19:34 1993 Erik Bos
6892 Added support for int 0x11 & 0x12.
6895 Improved function handling.
6897 Sun Oct 31 12:38:09 1993 David Metcalfe <david@prism.demon.co.uk>
6900 Implemented GetCharWidth().
6902 Wed Oct 27 09:56:06 1993 John Brezak <brezak@ch.hp.com>
6907 * [include/int21.h include/wine.h]
6908 Change sc_eflags to sc_efl .
6911 Fix misplaced #endif
6912 Include <signal.h> for NetBSD
6915 Don't include <sys/vfs.h> in NetBSD
6916 Do include <sys/mount.h> in NetBSD
6919 Mon Oct 26 17:59:01 1993 Erik Bos
6925 Added support for many dos ints.
6927 * [misc/file.c] [include/files.h]
6928 Moved OPEN_MAX and DosDriveStruct to files.h.
6930 Sun Oct 24 13:36:50 1993 David Metcalfe <david@prism.demon.co.uk>
6932 * [controls/button.c]
6933 Implemented CHECKBOX, AUTOCHECKBOX, 3STATE, AUTO3STATE,
6934 RADIOBUTTON, AUTORADIOBUTTON, GROUPBOX controls, together with
6935 a preliminary USERBUTTON control.
6938 Corrected bugs in TEXT_NextLine() and added handling of prefix
6941 * [controls/button.c]
6942 Disabled focus handling by commenting out SetFocus() calls until
6943 serious bug can be found.
6945 Oct 20, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
6947 * [controls/listbox.c]
6948 Listbox control window
6949 Painting cleanup, new messages processed.
6951 * [controls/scroll.c]
6952 Scroll bar control window
6955 * [controls/combo.c]
6956 Combo box control window
6959 Tue Oct 12 17:50:11 1993 julliard@di.epfl.ch (Alexandre Julliard)
6961 * [objects/color.c] [objects/palette.c] [windows/syscolor.c]
6962 Better support for the private color map.
6963 Using a private map is now the default.
6968 * [include/dialog.h] [windows/dialog.c]
6969 Implemented CreateDialog*() and IsDialogMessage().
6971 * [misc/xt.c] [windows/defwnd.c]
6972 Moved DefWindowProc() to defwnd.c.
6973 Added WM_NCCREATE, WM_NCDESTROY and WM_CTLCOLOR handling.
6975 * [windows/defdlg.c]
6976 Started the implementation of DefDlgProc().
6979 Added WM_NCCREATE and WM_NCDESTROY messages.
6980 Implemented IsChild().
6982 Tue Oct 12 17:50:20 1993 David Metcalfe <david@prism.demon.co.uk>
6985 Implemented GetFocus() and SetFocus().
6988 Added processing of FocusIn and FocusOut events.
6990 * [windows/graphics.c]
6991 Added DrawFocusRect().
6993 Sat Oct 9 14:36:57 1993 Erik Bos
6996 Added more function handling.
6998 Wed Oct 6 12:21:22 1993 Erik Bos
7001 Split signal.c into int1a.c, int21.c and signal.c.
7003 Tue Oct 5 22:12:40 1993 David Metcalfe
7005 * [controls/static.c] [control/widgets.c]
7006 Static control class.
7009 Added processing of additional DT_ flags to DrawText().
7011 * [windows/win.c] [misc/xt.c]
7012 Added SetWindowText() and WM_SETTEXT processing.
7014 Tue Oct 5 22:12:40 1993 Martin Ayotte
7016 * [controls/listbox.c]
7017 Listbox control window
7019 * [controls/scroll.c]
7020 Scroll bar control window
7022 * [controls/combo.c]
7023 Combo box control window
7026 Combo box definitions
7028 * [include/listbox.h]
7031 * [include/scroll.h]
7032 Scroll bar definitions
7034 Sat Oct 2 09:35:54 1993 Bob Amstadt (bob at pooh)
7036 * [if1632/callback.c]
7037 Fixed bug in MakeProcInstance().
7040 Changed x/w and x/b to display in hex.
7042 * [debugger/i386-pinsn.c]
7043 Added code to properly unassemble 16-bit indexing.
7045 Fri Oct 1 08:29:05 1993 Bob Amstadt (bob at pooh)
7047 * [loader/files.c] [misc/profile.c]
7048 System initialization file is now called "wine.ini" and can
7049 be located in the current directory, the user's home directory,
7050 or any directories specified in the WINEPATH environment variable.
7052 * [tools/build.c] [if1632/call.S] [include/regfunc.h]
7053 Changed register function stack to match sigcontext structure.
7055 Thu Sep 30 22:30:21 1993 Bob Amstadt (bob at pooh)
7058 Created function to search a path for files to load.
7061 Modified exe and dll file loading to search through path
7062 specified by the environment variable WINEPATH.
7064 Thu Sep 30 22:30:21 1993 Eric Youngdale
7069 Thu Sep 30 22:30:21 1993 John Brezak
7071 * [debugger/dbg.y] [debugger/debug.l] [debugger/dtest.c]
7072 [debugger/obstack.h]
7073 Updates to allow debugger to function under NetBSD.
7075 Tue Sep 28 19:59:21 1993 David Metcalfe
7078 Implemented support for windows with no borders. Added
7079 GetParent(), GetDlgCtrlID(), GetWindowText() and
7080 GetWindowTextLength() functions.
7083 Added processing of WM_GETTEXT and WM_GETTEXTLENGTH messages
7084 to DefWindowProc and Implemented MessageBeep().
7086 * [windows/syscolor.c]
7087 Added preliminary system color support.
7089 * [controls/button1.c]
7090 Mods to new button control and integration with Wine.
7092 Tue Sep 28 19:59:21 1993 Johannes Ruscheinski
7094 * [controls/button1.c]
7095 New button control using GDI functions.
7097 Tue Sep 28 19:59:21 1993 Eric Youngdale
7100 Added debugging capabilities to Wine
7102 Sat Sep 25 13:22:50 1993 Alexandre Julliard (julliard@di.epfl.ch)
7104 * [objects/region.c]
7107 Fri Sep 24 07:35:11 1993 Bob Amstadt (bob at pooh)
7110 Changed the entry point code to reduce the standard entry
7111 point size from 22 bytes to 10 bytes. This leaves about
7112 4000 free entry points instead of the 800 in version 0.4.2.
7114 * [loader/resource.c]
7115 Rewrote functions to allow loading of resources from any
7118 * [loader/wine.c] [include/wine.h]
7119 Added functions GetFilenameFromInstance() and GetFileInfo()
7120 to search for a loaded file based on its instance handle.
7121 Added a field in struct w_files to make searching by an instance
7124 Tue Sep 21 09:57:01 1993 miguel@roxanne.nuclecu.unam.mx (Miguel de Icaza)
7127 Implementation of .INI file handling
7129 Mon Sep 20 10:54:32 1993 David Metcalfe
7131 * [misc/profile.c.old]
7132 Implementation of .INI file handling
7134 Mon Sep 20 10:54:32 1993 John Brezak
7136 * [controls/WinButton.c]
7137 Bug fix with call to XtVaSetValues.
7139 Mon Sep 20 10:54:32 1993 Alexandre Julliard
7142 Quick patch to get colormaps to work with button widget.
7144 Mon Sep 20 02:42:54 1993 (yngvi@hafro.is)
7147 Ifdefed out some bogus Ansi<->Oem conversion functions
7150 New file with string functions like lstr* IsChar* *Ansi*
7152 Wed Sep 15 20:35:10 1993 John Brezak
7155 Additional changes to support NetBSD.
7157 Wed Sep 15 22:19:22 1993 Martin Ayotte
7159 * [windows/graphics.c]
7160 Added FrameRect function
7162 Tue Sep 14 13:54:45 1993 Alexandre Julliard
7164 * [objects/color.c] [objects/palette.c]
7165 Preliminary support for private color map.
7168 Implemented CS_CLASSDC style.
7171 Moved DCEs to USER heap.
7172 Implemented class and window DCs.
7175 Implemented CS_DBLCLKS style.
7177 * [windows/graphics.c]
7178 Bug fix in SetPixel().
7181 Implemented CS_OWNDC style.
7182 Implemented Get/SetWindowLong().
7184 * [controls/menu.c] [windows/class.c] [windows/clipping.c]
7185 [windows/dce.c] [windows/message.c] [windows/win.c]
7186 Moved windows from global heap to USER heap.
7188 Mon Sep 13 05:00:11 1993 Eric Youngdale
7190 * [Makefile] [if1632/relay.c] [include/dlls.h] [selector.c]
7191 [loader/wine.c] [tools/build.c]
7192 Added ability to generate missing functions statistics.
7194 Mon Sep 13 12:09:47 1993 Scott A. Laird (scott@curly)
7199 * [if1632/kernel.spec]
7200 Added definitions for GetProfile{Int,String} and SetHandleCount.
7202 * [if1632/keyboard.spec]
7203 Created interface specification for Keyboard driver DLL.
7206 Added keyboard.dll to list of included DLLs.
7208 * [if1632/user.spec]
7209 Added LoadAccelerators definition.
7211 * [loader/resource.c]
7212 Added LoadAccelerators stub.
7215 Changed OpenFile, and added SetHandleCount (for winfile.exe)
7218 Added keyboard code.
7220 * [misc/profile.c] [misc/xt.c]
7221 Moved GetPrivateProfile* commands here, and added GetProfile*
7224 Mon Sep 13 10:24:37 1993 Andrew Bulhak
7226 * [windows/utility.c]
7227 Implemented MulDiv(), OutputDebugString() and wvsprintf()
7229 Fri Sep 10 09:13:30 1993 John Brezak
7232 Created patch to allow BSD make to build wine.
7235 Fixed NULL pointer reference.
7237 * [windows/message.c] [misc/xt.c]
7238 Defined HZ to handle system specific timing.
7240 * [windows/graphics.c]
7243 * [objects/pallete.c]
7244 NetBSD does not have /usr/include/values.h and MAXINT is INT_MAX.
7246 * [dump.c] [ldt.c] [wine.c]
7247 ifdef'ed linux headers for linux compile.
7250 Add NetBSD system calls when compiled on that system.
7252 * [loader/selector.c]
7253 Use mmap(MAP_ANON, ...) for NetBSD.
7256 Fixed selector assumptions.
7258 Thu Sep 9 20:01:37 1993 David Metcalfe
7260 * [controls/WinButton*] [controls/button.c] [controls/widget.c]
7261 [windows/win.c] [windows/class.c]
7262 Added 3D button control and tied into CreateWindow()
7264 Thu Sep 9 07:35:24 1993 Scott Laird
7266 * [if1632/sound.spec]
7267 Created interface specification for SOUND DLL.
7269 * [if1632/win87em.spec]
7270 Added more functions to the WIN87EM DLL interface specification
7273 Created stubs for the new math emulation functions.
7276 Created stubs for the SOUND DLL.
7278 Sun Sep 5 21:02:10 1993 John Burton
7280 * [if1632/kernel.spec]
7281 Added interface specifications for OpenFile, _lclose, _lread, _lopen,
7284 * [include/windows.h]
7288 Implemented OpenFile, _lclose, _lread, _lopen and _lwrite.
7290 Fri Sep 3 18:47:03 1993 Alexandre Julliard
7298 Fri Sep 3 18:47:03 1993 Bob Amstadt
7300 * [objects/linedda.c]
7303 Fri Sep 3 11:52:18 1993 Bob Amstadt
7306 Changed to use CallWindowProc() rather directly calling callback.
7309 Implemented SetCapture() and ReleaseCapture()
7311 * [windows/keyboard.c]
7312 Created stub for GetKeyState()
7314 * [objects/linedda.c]
7315 Created stub for LineDDA()
7317 * [if1632/callback.c]
7318 Created callback handler for LineDDA callback procedure.
7320 * [if1632/callback.c]
7321 Created FreeProcInstance()
7323 Fri Sep 3 08:36:52 1993 David Metcalfe
7326 Patch to and code for INT 1A
7328 Thu Sep 2 00:31:54 1993 Alexandre Julliard
7330 * [objects/font.c] [objects/text.c]
7331 More text support: implemented justification and underlining.
7333 * [windows/clipping.c] [objects/clipping.c]
7334 Moved low-level clipping functions to objects/clipping.c.
7336 * [windows/clipping.c] [windows/event.c] [windows/message.c]
7337 Implemented window update regions.
7339 * [windows/dc.c] [objects/dcvalues.c]
7340 Moved some device-independent DC functions to objects/dcvalues.c.
7342 * [windows/graphics.c]
7343 Implemented InvertRect() and GetPixel().
7345 Sat Aug 28 08:40:23 1993 Eric Youngdale
7347 * [include/neexe.h] [loader/wine.c]
7348 Added code to handle relocation type 4.
7350 * [loader/signal.h] [loader/wine.c] [loader/selector.c]
7351 Added support for dos interrupts.
7353 Thu 26 Aug 19:15:00 1993 Eric Youngdale
7355 * [loader/selector.c]
7356 Fixed bug dealing with loading DLLs.
7358 Thu Aug 26 19:22:40 1993 Alexandre Julliard
7360 * [include/gdi.h] [objects/font.c] [windows/dc.c]
7361 Beginning of real font support.
7363 * [windows/graphics.c]
7364 Implemented PatBlt().
7367 Corrected a bug with linked list handling in GlobalAlloc().
7369 * [objects/bitmap.c]
7370 Corrected a bug in BITMAP_SelectObject().
7372 Tue Aug 24 19:22:40 1993 David Metcalfe
7374 * [controls/Command*] [controls/Label*] [controls[MenuButto*]
7375 [controls/SmeMenuButt*]
7376 Change code to support & as a special character in menu item text.
7378 Tue Aug 24 19:22:40 1993 Alexandre Julliard
7380 * [include/gdi.h] [windows/dc.c]
7381 Heavily modified the DC structure for better device-independence.
7383 * [objects/bitmap.c]
7384 Implemented bitmap dimensions.
7386 * [windows/dc.c] [windows/dce.c]
7387 Implemented DC state saving and restoring.
7390 Implemented ROP mode.
7392 * [windows/graphics.c]
7393 Implemented FillRect().
7395 Mon Aug 23 22:08:34 1993 Bob Amstadt (bob at pooh)
7398 Fixed bug in InvalidateRect(). Solitaire attempted to
7399 clear window before it was realized.
7401 * [loader/resource.c]
7402 Began rewrite of LoadBitmap().
7405 Fixed code which set Argv and Argc global variables.
7407 * [loader/selector.c]
7408 Added code to set up command line arguments.
7411 Fixed error in PSP structure.
7413 Tue Aug 17 20:41:12 1993 Alexandre Julliard
7415 * [include/gdi.h] [windows/dc.c]
7416 Implemented device capabilities.
7418 * [objects/region.c]
7419 Implemented EqualRgn() and CombineRgn().
7421 * [windows/clipping.c]
7422 Implemented Save/RestoreVisRgn().
7424 * [windows/graphics.c]
7425 Implemented PaintRgn() and FillRgn().
7427 * [windows/mapping.c]
7428 Implemented mapping modes.
7430 Tue Aug 10 14:07:38 1993 Alexandre Julliard
7432 * [if1632/user.spec] [misc/rect.c]
7433 Implemented rectangle API functions.
7435 * [if1632/gdi.spec] [include/gdi.h] [objects/region.c]
7436 Implemented regions.
7439 Corrected a typo in UnregisterClass().
7441 * [windows/clipping.c] [windows/dc.c]
7442 Implemented DC clipping and visible region.
7444 Tue Aug 10 20:57:56 1993 Bob Amstadt (bob at pooh)
7446 * [controls/menu.c] [windows/win.c]
7447 SetMenu(), GetMenu(), CheckMenuItem() implemented
7449 Thu Aug 5 22:33:22 1993 Bob Amstadt (bob at pooh)
7451 * [controls/menu.c] [windows/win.c]
7452 Many improvements menus. LoadMenu() should work.
7454 Wed Aug 4 14:55:36 1993 Alexandre Julliard
7457 Started the implementation of device-independent bitmaps.
7459 * [objects/bitmap.c]
7460 Added support for multiple bitmap depths.
7463 Implemented pattern brushes.
7465 * [windows/dc.c] [windows/graphics.c]
7466 Implemented some GDI graphics primitives.
7468 Tue Aug 3 21:16:47 1993 Bob Amstadt (bob at pooh)
7470 * [controls/menu.c] [windows/win.c] [include/menu.h]
7471 Code to load class menus from executable file.
7473 * [if1632/user.spec]
7474 Fixed specification of SendMessage() and PostMessage.
7476 Mon Jul 26 21:53:24 1993 Alexandre Julliard
7479 Corrected a bug in KERNEL_InitTask().
7481 * [include/windows.h]
7482 Added a lot of constants.
7484 * [loader/selector.c]
7485 Corrected a bug in segment allocation in CreateSelectors().
7487 * [objects/bitmap.c]
7488 Implemented SelectObject() for bitmaps.
7491 Implemented hatched brushes and SelectObject().
7493 * [objects/gdiobj.c]
7494 Removed linked list (not needed).
7496 * [objects/palette.c]
7497 Implemented system palette creation and misc. palette API functions.
7503 Implemented memory device contexts.
7505 Tue Jul 20 10:38:59 1993 Bob Amstadt (bob at pooh)
7508 Split DOS3Call() out of kernel.c. Added support for get date
7512 Added function ReturnFromRegisterFunc() to allow DOS calls
7513 to return values in registers.
7516 Macros to access registers saved on stack.
7518 Tue Jul 20 10:38:59 1993 Alexandre Julliard
7521 Corrected allocation of the WM_CREATE data structure.
7524 Implemented DCE handling.
7526 * [bitmap.c] [brush.c] [dc.c] [font.c] [gdi.h] [gdi.spec]
7527 [gdiobj.c] [palette.c] [pen.c]
7528 Implemented the GDI objects data structures and allocation.
7531 Added several structures and constants for GDI objects.
7533 Mon Jul 19 12:51:10 1993 Bob Amstadt (bob at pooh)
7536 Modified system calls to match Linus' new interface for
7537 the LDT modification.
7540 Fixed bug with WM_CREATE message.
7542 * [heap.c] [kernel.spec]
7543 Completed local heap allocation functions.
7546 Created function GlobalQuickAlloc() for easy allocation from DLLs
7548 Tue Jul 13 20:31:31 1993 Bob Amstadt (bob at pooh)
7551 Completed global memory pool API
7553 Sun Jul 11 16:59:52 1993 Alexandre Julliard
7555 * [message.c] [user.c] [user.spec] [windows.h]
7556 Added emulation of Windows message queue.
7558 Thu Jul 8 19:29:27 1993 Bob Amstadt (bob at pooh)
7560 * [build.c] Original by Bob Amstadt
7561 * [callback.c] Original by Bob Amstadt, updates by
7563 * [dump.c] Original by Bob Amstadt
7564 * [global.c] Original by Bob Amstadt
7565 * [heap.c] Original by Bob Amstadt
7566 * [kernel.c] Original by Bob Amstadt
7567 * [ldt.c] Original by Bob Amstadt
7568 * [ldtlib.c] Original by Bob Amstadt
7569 * [relay.c] Original by Bob Amstadt
7570 * [resource.c] Original by Bob Amstadt, updates by
7572 * [selector.c] Original by Bob Amstadt, updates by Eric Youngdale
7573 * [user.c] Original by Bob Amstadt
7574 * [wine.c] Original by Bob Amstadt, updates by Eric Youngdale and
7576 * [wintcl.c] Original by Regents of the University of California,
7577 updates by Peter MacDonald and Alexandre Julliard
7578 * [callback.h] Original by Bob Amstadt
7579 * [dlls.h] Original by Bob Amstadt
7580 * [heap.h] Original by Bob Amstadt
7581 * [neexe.h] Original by Bob Amstadt
7582 * [prototypes.h] Original by Bob Amstadt, updates by
7584 * [segmem.h] Original by Bob Amstadt
7585 * [tkInt.h] Original by Regents of the University of California
7586 * [windows.h] Original by Peter MacDonald, updates by
7587 Alexandre Julliard and Bob Amstadt
7588 * [wine.h] Original by Eric Youngdale
7589 * [kernel.spec] Original by Bob Amstadt, updates by
7591 * [gdi.spec] Original by Bob Amstadt, updates by
7593 * [shell.spec] Original by Bob Amstadt
7594 * [unixlib.spec] Original by Bob Amstadt
7595 * [user.spec] Original by Bob Amstadt, updates by Alexandre Julliard
7596 * [win87em.spec] Original by Bob Amstadt
7597 * [Windows.tcl] Original by Peter MacDonald, updates by
7599 * [build-spec.txt] Original by Bob Amstadt
7600 * [if1632.S] Original by Bob Amstadt, updates by Eric Youngdale