| 1 | /* $Id: changelog,v 1.1576 2001-07-08 07:14:22 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | 2001-07-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - USER32: o Some icon fixes
|
|---|
| 5 | - KERNEL32: o More pointer checks added to GlobalLock/Unlock
|
|---|
| 6 |
|
|---|
| 7 | 2001-07-08: knut st. osmundsen <kosmunds@csc.com>:
|
|---|
| 8 | - KERNEL32: o Added call in initterm to tell win32k where the Odin32
|
|---|
| 9 | environment block is. (Its in Open32, and I don't think
|
|---|
| 10 | it is reallocated.)
|
|---|
| 11 | o Added early initiation of Win32k loaded EXE. This corrected
|
|---|
| 12 | problems with GetModuleHandleA returing -1 to MSVCRT.
|
|---|
| 13 | - WIN32K: o Fixed environment block problem. The environment variables is
|
|---|
| 14 | not updated in the original env.block. So, win32k needs to
|
|---|
| 15 | be told where to find the Odin32 environment block to correctly
|
|---|
| 16 | find dlls using the PATH.
|
|---|
| 17 | o Corrected crosspage fixup bug.
|
|---|
| 18 | o Set no internal fixups flag in LX header for most executables
|
|---|
| 19 | in an attempt to convice OS/2 to load them where they wanna be
|
|---|
| 20 | loaded (usually 0x00400000).
|
|---|
| 21 | o Can now tell difference between the debug kernels.
|
|---|
| 22 |
|
|---|
| 23 | 2001-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 24 | - KERNEL32: o Rewrote atom functions (no longer relies on Open32)
|
|---|
| 25 | o Fixed GetAtomNameW
|
|---|
| 26 | - GDI32: o Don't use Open32 IsBad* memory functions directly
|
|---|
| 27 | - COMDLG32: o PrintDlg fix: must translated open32 to kernel32 global
|
|---|
| 28 | memory handles (due to Global memory api rewrite)
|
|---|
| 29 |
|
|---|
| 30 | 2001-07-07: Achim Hasenmueller <achimha@innotek.de>
|
|---|
| 31 | - WS2_32: o import WSAEventSelect from WSOCK32 (although a
|
|---|
| 32 | Winsock 2.0 API, it makes more sense to be implemented
|
|---|
| 33 | in the Winsock 1.1 stack)
|
|---|
| 34 | o import WSAEnumNetworkEvents from WSOCK32 (same reason)
|
|---|
| 35 | - WSOCK32: o enhanced WSAAsyncSelect processing to allow both
|
|---|
| 36 | window handle and event semaphore notification
|
|---|
| 37 | o implemented WSAEventSelect
|
|---|
| 38 | o implemented WSAEnumNetworkEvents (not correct)
|
|---|
| 39 |
|
|---|
| 40 | 2001-07-07: knut st. osmundsen <kosmunds@csc.com>:
|
|---|
| 41 | - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
|
|---|
| 42 | to fix SYS2048 during RealPlayer install.
|
|---|
| 43 | - WIN32K: o Fixed the DBExpert bug in the longdllname code.
|
|---|
| 44 | BTW. Thanks to Randell at Sundial Systems and Alex Newman
|
|---|
| 45 | for reporting this and begin very helpful tracking it down.
|
|---|
| 46 | o The longdllname feature now differs from the OS/2 loader on
|
|---|
| 47 | one points: <br>
|
|---|
| 48 | It is able to find (DosQueryModuleHandle) for dlls using
|
|---|
| 49 | internal names which includes the .DLL extention. <br>
|
|---|
| 50 | The longdllname feature don't currently support names with
|
|---|
| 51 | extention .DLL like extentions with base name lengths from
|
|---|
| 52 | 4-7 chars. I will fix this some day.<br>
|
|---|
| 53 |
|
|---|
| 54 | 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 55 | - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
|
|---|
| 56 | o GlobalAlloc must return pointers aligned at 8 byte boundary
|
|---|
| 57 | (SDK docs + verified in NT4, SP6)
|
|---|
| 58 | o Better checks in GlobalFree for invalid handles/pointers
|
|---|
| 59 | (InvestmentView seems to call it with a GDI handle; why??)
|
|---|
| 60 | o LocalReAlloc bugfix
|
|---|
| 61 | - USER32: o Must return 16 bits icon & cursor handles
|
|---|
| 62 | (fixes crash in Acrobat Reader 4)
|
|---|
| 63 | - GDI32: o GetDIBits must only return color information when lpvBits
|
|---|
| 64 | is not NULL.
|
|---|
| 65 | (fixes Opera crash (heap corruption) with new heap code)
|
|---|
| 66 | - PELDR: o Report error when file not found.
|
|---|
| 67 |
|
|---|
| 68 | 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 69 | - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
|
|---|
| 70 | o WinHelpA fixes (use shared memory for sending information
|
|---|
| 71 | to winhlp32)
|
|---|
| 72 | - KERNEL32: o Added GlobalFix and GlobalUnfix
|
|---|
| 73 | o Local memory functions now use Global memory functions
|
|---|
| 74 | o Ported Wine Global memory functions (we no longer depend
|
|---|
| 75 | on Open32 for these)
|
|---|
| 76 |
|
|---|
| 77 | 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 78 | - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
|
|---|
| 79 | o VkKeyScanExA/W: call VkKeyScanA/W
|
|---|
| 80 | o MapVirtualKeyExA/W: call MapVirtualKeyA/W
|
|---|
| 81 | o SetParent bugfix; even though the win32 coordinates might
|
|---|
| 82 | not change, the PM coordinates can. We must make sure the
|
|---|
| 83 | child stays at the same position (y) relative to the
|
|---|
| 84 | (new) parent.
|
|---|
| 85 | (Cool Edit Pro LE play buttons now at the right position)
|
|---|
| 86 | o Send WM_SETICON to frame window with converted win32 icon
|
|---|
| 87 | (application icon now visible in task list)
|
|---|
| 88 | o Quick fix for window creation:
|
|---|
| 89 | Before a window has processed WM_NCCREATE:
|
|---|
| 90 | - GetTopWindow can't return that window handle
|
|---|
| 91 | - GetWindow(parent, GW_CHILD) can't return that window handle
|
|---|
| 92 | - IsChild works
|
|---|
| 93 | TODO: Does this affect more functions?? (other GetWindow ops)
|
|---|
| 94 | (verified in NT4, SP6)
|
|---|
| 95 | TODO: Must add window to parent's child list after WM_NCCREATE
|
|---|
| 96 | and rewrite GetWindow & GetTopWindow
|
|---|
| 97 | (fix for crash in MP3 Explorer)
|
|---|
| 98 |
|
|---|
| 99 | - GDI32: o Workaround for applications that depend on 16 bits
|
|---|
| 100 | GDI object handles.
|
|---|
| 101 | (TODO: must create our own 16 bits handles)
|
|---|
| 102 | (fixes crash in Cool Edit Pro LE)
|
|---|
| 103 |
|
|---|
| 104 | 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
|
|---|
| 105 | - KERNEL32: o Improoved the Unhandled exception message by
|
|---|
| 106 | trying to provide modulename and some kind of obj/offset.
|
|---|
| 107 | - FastDep: o (synced with OS2Tools) Make better use of data in evt.
|
|---|
| 108 | existing .depend file so that only changed files are processed.
|
|---|
| 109 |
|
|---|
| 110 | 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 111 | - KERNEL32: o Executable load fix
|
|---|
| 112 | (fixes crash during RealPlayer 8 install)
|
|---|
| 113 | o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
|
|---|
| 114 | - USER32: o ToAscii & GetKeyboardState fixes
|
|---|
| 115 | (for Putty keyboard input)
|
|---|