[6181] | 1 | /* $Id: changelog,v 1.1567 2001-07-06 13:44:38 sandervl Exp $ */
|
---|
[6074] | 2 |
|
---|
[6181] | 3 | 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
|
---|
| 5 | o GlobalAlloc must return pointers aligned at 8 byte boundary
|
---|
| 6 | (SDK docs + verified in NT4, SP6)
|
---|
| 7 | o LocalReAlloc bugfix
|
---|
| 8 | - USER32: o Must return 16 bits icon & cursor handles
|
---|
| 9 | (fixes crash in Acrobat Reader 4)
|
---|
| 10 | - GDI32: o GetDIBits must only return color information when lpvBits
|
---|
| 11 | is not NULL.
|
---|
| 12 | (fixes Opera crash (heap corruption) with new heap code)
|
---|
| 13 | - PELDR: o Report error when file not found.
|
---|
| 14 |
|
---|
[6174] | 15 | 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[6172] | 16 | - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
|
---|
[6175] | 17 | o WinHelpA fixes (use shared memory for sending information
|
---|
| 18 | to winhlp32)
|
---|
[6174] | 19 | - KERNEL32: o Added GlobalFix and GlobalUnfix
|
---|
| 20 | o Local memory functions now use Global memory functions
|
---|
| 21 | o Ported Wine Global memory functions (we no longer depend
|
---|
| 22 | on Open32 for these)
|
---|
[6172] | 23 |
|
---|
| 24 | 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[6161] | 25 | - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
|
---|
| 26 | o VkKeyScanExA/W: call VkKeyScanA/W
|
---|
| 27 | o MapVirtualKeyExA/W: call MapVirtualKeyA/W
|
---|
[6165] | 28 | o SetParent bugfix; even though the win32 coordinates might
|
---|
| 29 | not change, the PM coordinates can. We must make sure the
|
---|
| 30 | child stays at the same position (y) relative to the
|
---|
| 31 | (new) parent.
|
---|
| 32 | (Cool Edit Pro LE play buttons now at the right position)
|
---|
[6167] | 33 | o Send WM_SETICON to frame window with converted win32 icon
|
---|
| 34 | (application icon now visible in task list)
|
---|
[6170] | 35 | o Quick fix for window creation:
|
---|
| 36 | Before a window has processed WM_NCCREATE:
|
---|
| 37 | - GetTopWindow can't return that window handle
|
---|
| 38 | - GetWindow(parent, GW_CHILD) can't return that window handle
|
---|
| 39 | - IsChild works
|
---|
| 40 | TODO: Does this affect more functions?? (other GetWindow ops)
|
---|
| 41 | (verified in NT4, SP6)
|
---|
| 42 | TODO: Must add window to parent's child list after WM_NCCREATE
|
---|
| 43 | and rewrite GetWindow & GetTopWindow
|
---|
| 44 | (fix for crash in MP3 Explorer)
|
---|
| 45 |
|
---|
[6164] | 46 | - GDI32: o Workaround for applications that depend on 16 bits
|
---|
| 47 | GDI object handles.
|
---|
| 48 | (TODO: must create our own 16 bits handles)
|
---|
| 49 | (fixes crash in Cool Edit Pro LE)
|
---|
[6161] | 50 |
|
---|
[6152] | 51 | 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
|
---|
| 52 | - KERNEL32: o Improoved the Unhandled exception message by
|
---|
| 53 | trying to provide modulename and some kind of obj/offset.
|
---|
[6159] | 54 | - FastDep: o (synced with OS2Tools) Make better use of data in evt.
|
---|
| 55 | existing .depend file so that only changed files are processed.
|
---|
[6152] | 56 |
|
---|
[6144] | 57 | 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 58 | - KERNEL32: o Executable load fix
|
---|
[6147] | 59 | (fixes crash during RealPlayer 8 install)
|
---|
| 60 | o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
|
---|
[6150] | 61 | - USER32: o ToAscii & GetKeyboardState fixes
|
---|
[6147] | 62 | (for Putty keyboard input)
|
---|