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