[6266] | 1 | /* $Id: changelog,v 1.1583 2001-07-09 08:15:42 bird Exp $ */
|
---|
[6074] | 2 |
|
---|
[6266] | 3 | 2001-07-09: knut st. osmundsen <kosmunds@csc.com>:
|
---|
| 4 | - CRTDLL: o When renaming dlls we still use the original importlibrary
|
---|
| 5 | and .def-file names. ORGTARGET exist for that purpose.
|
---|
| 6 | - NTDLL: o Link with crtdll.lib.
|
---|
| 7 | - VERSION: o Link with crtdll.lib.
|
---|
| 8 | - WIN32K: o Updated LieList with CrtDll -> CrtDll32 renaming.
|
---|
| 9 |
|
---|
[6261] | 10 | 2001-07-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 11 | - KERNEL32: o Directly import registry functions from REGISTRY.DLL
|
---|
| 12 | - GDI32: o Never use object handle 0
|
---|
| 13 | (fixes bad icons in dialogs)
|
---|
| 14 |
|
---|
[6252] | 15 | 2001-07-08: Achim Hasenmueller <achimha@innotek.de>
|
---|
| 16 | - WSOCK32: o error message to human readable text translation
|
---|
| 17 | for WSASetLastError (debug version)
|
---|
| 18 | o implemented IPPROTO_IP support for setsockopt
|
---|
| 19 | (not fully done)
|
---|
| 20 | o reset semaphore in WSAEnumNetworkEvents
|
---|
[6259] | 21 | - USER32: o deleted user32\old. It is still in the CVS attic
|
---|
| 22 | so in case you need it, you can get it from CVS
|
---|
[6252] | 23 |
|
---|
[6239] | 24 | 2001-07-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 25 | - USER32: o Some icon fixes
|
---|
[6244] | 26 | o Changed scrollbar behaviour in OS/2 mode; scrollbar doesn't
|
---|
| 27 | jump back to last click position when moving the mouse
|
---|
| 28 | outside the scroll window during scrolling.
|
---|
| 29 | o Changed menu behaviour in OS/2 mode; no mouse tracking
|
---|
| 30 | when right or left mouse button not pressed.
|
---|
[6266] | 31 | o Clipboard (Get/SetClipboardData: must translated open32
|
---|
| 32 | to kernel32 global memory handles (due to Global memory
|
---|
[6255] | 33 | api rewrite)
|
---|
| 34 | o Key translation for arrow keys and insert/del, home/end, page up/down
|
---|
| 35 | added (WM_CHAR message translation)
|
---|
[6256] | 36 | o Edit control bugfix for drawing selected text
|
---|
[6239] | 37 | - KERNEL32: o More pointer checks added to GlobalLock/Unlock
|
---|
[6255] | 38 | o Add default rename entry for crtdll
|
---|
| 39 | o Fixed FS corruption in atom functions (wrapper for LookupAtom)
|
---|
| 40 | - CRTDLL: o Renamed to crtdll32 to avoid problems with some Lotus
|
---|
| 41 | apps that come with their own crtdll
|
---|
| 42 | - NTDLL: o Link with crtdll32.lib
|
---|
| 43 | - VERSION: o Link with crtdll32.lib
|
---|
| 44 | - SHLWAPI: o Link with crtdll32.lib
|
---|
| 45 | - PELDR: o Fix for file not found error
|
---|
[6239] | 46 |
|
---|
[6235] | 47 | 2001-07-08: knut st. osmundsen <kosmunds@csc.com>:
|
---|
| 48 | - KERNEL32: o Added call in initterm to tell win32k where the Odin32
|
---|
| 49 | environment block is. (Its in Open32, and I don't think
|
---|
| 50 | it is reallocated.)
|
---|
| 51 | o Added early initiation of Win32k loaded EXE. This corrected
|
---|
| 52 | problems with GetModuleHandleA returing -1 to MSVCRT.
|
---|
| 53 | - WIN32K: o Fixed environment block problem. The environment variables is
|
---|
| 54 | not updated in the original env.block. So, win32k needs to
|
---|
| 55 | be told where to find the Odin32 environment block to correctly
|
---|
| 56 | find dlls using the PATH.
|
---|
| 57 | o Corrected crosspage fixup bug.
|
---|
| 58 | o Set no internal fixups flag in LX header for most executables
|
---|
| 59 | in an attempt to convice OS/2 to load them where they wanna be
|
---|
| 60 | loaded (usually 0x00400000).
|
---|
[6236] | 61 | o Can now tell difference between the debug kernels.
|
---|
[6235] | 62 |
|
---|
[6198] | 63 | 2001-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 64 | - KERNEL32: o Rewrote atom functions (no longer relies on Open32)
|
---|
| 65 | o Fixed GetAtomNameW
|
---|
[6209] | 66 | - GDI32: o Don't use Open32 IsBad* memory functions directly
|
---|
| 67 | - COMDLG32: o PrintDlg fix: must translated open32 to kernel32 global
|
---|
| 68 | memory handles (due to Global memory api rewrite)
|
---|
[6198] | 69 |
|
---|
[6197] | 70 | 2001-07-07: Achim Hasenmueller <achimha@innotek.de>
|
---|
| 71 | - WS2_32: o import WSAEventSelect from WSOCK32 (although a
|
---|
| 72 | Winsock 2.0 API, it makes more sense to be implemented
|
---|
| 73 | in the Winsock 1.1 stack)
|
---|
[6202] | 74 | o import WSAEnumNetworkEvents from WSOCK32 (same reason)
|
---|
[6197] | 75 | - WSOCK32: o enhanced WSAAsyncSelect processing to allow both
|
---|
| 76 | window handle and event semaphore notification
|
---|
| 77 | o implemented WSAEventSelect
|
---|
[6202] | 78 | o implemented WSAEnumNetworkEvents (not correct)
|
---|
[6197] | 79 |
|
---|
[6235] | 80 | 2001-07-07: knut st. osmundsen <kosmunds@csc.com>:
|
---|
[6194] | 81 | - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
|
---|
| 82 | to fix SYS2048 during RealPlayer install.
|
---|
| 83 | - WIN32K: o Fixed the DBExpert bug in the longdllname code.
|
---|
[6198] | 84 | BTW. Thanks to Randell at Sundial Systems and Alex Newman
|
---|
[6194] | 85 | for reporting this and begin very helpful tracking it down.
|
---|
| 86 | o The longdllname feature now differs from the OS/2 loader on
|
---|
| 87 | one points: <br>
|
---|
| 88 | It is able to find (DosQueryModuleHandle) for dlls using
|
---|
| 89 | internal names which includes the .DLL extention. <br>
|
---|
| 90 | The longdllname feature don't currently support names with
|
---|
| 91 | extention .DLL like extentions with base name lengths from
|
---|
| 92 | 4-7 chars. I will fix this some day.<br>
|
---|
| 93 |
|
---|
[6181] | 94 | 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 95 | - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
|
---|
| 96 | o GlobalAlloc must return pointers aligned at 8 byte boundary
|
---|
| 97 | (SDK docs + verified in NT4, SP6)
|
---|
[6187] | 98 | o Better checks in GlobalFree for invalid handles/pointers
|
---|
| 99 | (InvestmentView seems to call it with a GDI handle; why??)
|
---|
[6181] | 100 | o LocalReAlloc bugfix
|
---|
| 101 | - USER32: o Must return 16 bits icon & cursor handles
|
---|
| 102 | (fixes crash in Acrobat Reader 4)
|
---|
| 103 | - GDI32: o GetDIBits must only return color information when lpvBits
|
---|
| 104 | is not NULL.
|
---|
| 105 | (fixes Opera crash (heap corruption) with new heap code)
|
---|
| 106 | - PELDR: o Report error when file not found.
|
---|
| 107 |
|
---|
[6174] | 108 | 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[6172] | 109 | - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
|
---|
[6175] | 110 | o WinHelpA fixes (use shared memory for sending information
|
---|
| 111 | to winhlp32)
|
---|
[6174] | 112 | - KERNEL32: o Added GlobalFix and GlobalUnfix
|
---|
| 113 | o Local memory functions now use Global memory functions
|
---|
| 114 | o Ported Wine Global memory functions (we no longer depend
|
---|
| 115 | on Open32 for these)
|
---|
[6172] | 116 |
|
---|
| 117 | 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[6161] | 118 | - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
|
---|
| 119 | o VkKeyScanExA/W: call VkKeyScanA/W
|
---|
| 120 | o MapVirtualKeyExA/W: call MapVirtualKeyA/W
|
---|
[6194] | 121 | o SetParent bugfix; even though the win32 coordinates might
|
---|
| 122 | not change, the PM coordinates can. We must make sure the
|
---|
| 123 | child stays at the same position (y) relative to the
|
---|
[6165] | 124 | (new) parent.
|
---|
| 125 | (Cool Edit Pro LE play buttons now at the right position)
|
---|
[6167] | 126 | o Send WM_SETICON to frame window with converted win32 icon
|
---|
| 127 | (application icon now visible in task list)
|
---|
[6170] | 128 | o Quick fix for window creation:
|
---|
| 129 | Before a window has processed WM_NCCREATE:
|
---|
| 130 | - GetTopWindow can't return that window handle
|
---|
| 131 | - GetWindow(parent, GW_CHILD) can't return that window handle
|
---|
| 132 | - IsChild works
|
---|
| 133 | TODO: Does this affect more functions?? (other GetWindow ops)
|
---|
| 134 | (verified in NT4, SP6)
|
---|
| 135 | TODO: Must add window to parent's child list after WM_NCCREATE
|
---|
| 136 | and rewrite GetWindow & GetTopWindow
|
---|
| 137 | (fix for crash in MP3 Explorer)
|
---|
| 138 |
|
---|
[6164] | 139 | - GDI32: o Workaround for applications that depend on 16 bits
|
---|
| 140 | GDI object handles.
|
---|
| 141 | (TODO: must create our own 16 bits handles)
|
---|
| 142 | (fixes crash in Cool Edit Pro LE)
|
---|
[6161] | 143 |
|
---|
[6152] | 144 | 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
|
---|
| 145 | - KERNEL32: o Improoved the Unhandled exception message by
|
---|
| 146 | trying to provide modulename and some kind of obj/offset.
|
---|
[6159] | 147 | - FastDep: o (synced with OS2Tools) Make better use of data in evt.
|
---|
| 148 | existing .depend file so that only changed files are processed.
|
---|
[6152] | 149 |
|
---|
[6144] | 150 | 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 151 | - KERNEL32: o Executable load fix
|
---|
[6147] | 152 | (fixes crash during RealPlayer 8 install)
|
---|
| 153 | o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
|
---|
[6150] | 154 | - USER32: o ToAscii & GetKeyboardState fixes
|
---|
[6147] | 155 | (for Putty keyboard input)
|
---|