[6194] | 1 | /* $Id: changelog,v 1.1569 2001-07-07 05:03:16 bird Exp $ */
|
---|
[6074] | 2 |
|
---|
[6194] | 3 | 2001-07-03: knut st. osmundsen <kosmunds@csc.com>:
|
---|
| 4 | - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
|
---|
| 5 | to fix SYS2048 during RealPlayer install.
|
---|
| 6 | - WIN32K: o Fixed the DBExpert bug in the longdllname code.
|
---|
| 7 | BTW. Thanks to Randell at Sunnidal Systems and Alex Newman
|
---|
| 8 | for reporting this and begin very helpful tracking it down.
|
---|
| 9 | o The longdllname feature now differs from the OS/2 loader on
|
---|
| 10 | one points: <br>
|
---|
| 11 | It is able to find (DosQueryModuleHandle) for dlls using
|
---|
| 12 | internal names which includes the .DLL extention. <br>
|
---|
| 13 | The longdllname feature don't currently support names with
|
---|
| 14 | extention .DLL like extentions with base name lengths from
|
---|
| 15 | 4-7 chars. I will fix this some day.<br>
|
---|
| 16 |
|
---|
[6181] | 17 | 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 18 | - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
|
---|
| 19 | o GlobalAlloc must return pointers aligned at 8 byte boundary
|
---|
| 20 | (SDK docs + verified in NT4, SP6)
|
---|
[6187] | 21 | o Better checks in GlobalFree for invalid handles/pointers
|
---|
| 22 | (InvestmentView seems to call it with a GDI handle; why??)
|
---|
[6181] | 23 | o LocalReAlloc bugfix
|
---|
| 24 | - USER32: o Must return 16 bits icon & cursor handles
|
---|
| 25 | (fixes crash in Acrobat Reader 4)
|
---|
| 26 | - GDI32: o GetDIBits must only return color information when lpvBits
|
---|
| 27 | is not NULL.
|
---|
| 28 | (fixes Opera crash (heap corruption) with new heap code)
|
---|
| 29 | - PELDR: o Report error when file not found.
|
---|
| 30 |
|
---|
[6174] | 31 | 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[6172] | 32 | - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
|
---|
[6175] | 33 | o WinHelpA fixes (use shared memory for sending information
|
---|
| 34 | to winhlp32)
|
---|
[6174] | 35 | - KERNEL32: o Added GlobalFix and GlobalUnfix
|
---|
| 36 | o Local memory functions now use Global memory functions
|
---|
| 37 | o Ported Wine Global memory functions (we no longer depend
|
---|
| 38 | on Open32 for these)
|
---|
[6172] | 39 |
|
---|
| 40 | 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[6161] | 41 | - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
|
---|
| 42 | o VkKeyScanExA/W: call VkKeyScanA/W
|
---|
| 43 | o MapVirtualKeyExA/W: call MapVirtualKeyA/W
|
---|
[6194] | 44 | o SetParent bugfix; even though the win32 coordinates might
|
---|
| 45 | not change, the PM coordinates can. We must make sure the
|
---|
| 46 | child stays at the same position (y) relative to the
|
---|
[6165] | 47 | (new) parent.
|
---|
| 48 | (Cool Edit Pro LE play buttons now at the right position)
|
---|
[6167] | 49 | o Send WM_SETICON to frame window with converted win32 icon
|
---|
| 50 | (application icon now visible in task list)
|
---|
[6170] | 51 | o Quick fix for window creation:
|
---|
| 52 | Before a window has processed WM_NCCREATE:
|
---|
| 53 | - GetTopWindow can't return that window handle
|
---|
| 54 | - GetWindow(parent, GW_CHILD) can't return that window handle
|
---|
| 55 | - IsChild works
|
---|
| 56 | TODO: Does this affect more functions?? (other GetWindow ops)
|
---|
| 57 | (verified in NT4, SP6)
|
---|
| 58 | TODO: Must add window to parent's child list after WM_NCCREATE
|
---|
| 59 | and rewrite GetWindow & GetTopWindow
|
---|
| 60 | (fix for crash in MP3 Explorer)
|
---|
| 61 |
|
---|
[6164] | 62 | - GDI32: o Workaround for applications that depend on 16 bits
|
---|
| 63 | GDI object handles.
|
---|
| 64 | (TODO: must create our own 16 bits handles)
|
---|
| 65 | (fixes crash in Cool Edit Pro LE)
|
---|
[6161] | 66 |
|
---|
[6152] | 67 | 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
|
---|
| 68 | - KERNEL32: o Improoved the Unhandled exception message by
|
---|
| 69 | trying to provide modulename and some kind of obj/offset.
|
---|
[6159] | 70 | - FastDep: o (synced with OS2Tools) Make better use of data in evt.
|
---|
| 71 | existing .depend file so that only changed files are processed.
|
---|
[6152] | 72 |
|
---|
[6144] | 73 | 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 74 | - KERNEL32: o Executable load fix
|
---|
[6147] | 75 | (fixes crash during RealPlayer 8 install)
|
---|
| 76 | o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
|
---|
[6150] | 77 | - USER32: o ToAscii & GetKeyboardState fixes
|
---|
[6147] | 78 | (for Putty keyboard input)
|
---|