[6382] | 1 | /* $Id: changelog,v 1.1612 2001-07-21 09:11:59 sandervl Exp $ */
|
---|
[6074] | 2 |
|
---|
[6382] | 3 | 2001-07-21: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - DINPUT, DPLAYX, ICMP, IMAGEHLP, IMM32, LZ32,
|
---|
| 5 | MSVFW32, OLEPRO32, RICHED32, URLMON, VERSION, WININET
|
---|
| 6 | o Added Wine license
|
---|
| 7 |
|
---|
| 8 | - AVIFIL32, SHELL32, COMCTL32, COMDLG32, MSACM32, NTDLL, OLE32, OLAUT32,
|
---|
| 9 | SHDOCVW, SETUPAPI, SHLWAPI, OLECLI32, OLEDLG, OLESVR32, RPCRT4
|
---|
| 10 | o Replaced Wine license with updated version
|
---|
| 11 | - COMCTL32: o Resync with Wine (20010720); comboex, comctl32undoc, rebar,
|
---|
| 12 | imagelist, toolbar, pager
|
---|
| 13 |
|
---|
[6370] | 14 | 2001-07-20: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 15 | - KERNEL32: o Moved wsnprintf to user32
|
---|
| 16 | - USER32: o Removed FatalAppExitA/W (already in kernel32)
|
---|
| 17 | - SHLWAPI: o Removed WINE_StringFromCLSID & StringFromGUID2 (not used)
|
---|
| 18 | o Removed several string function that were not used or exported
|
---|
| 19 | - NTDLL: o Replaced 64 bits math assembly functions (disassembled Wine C code
|
---|
| 20 | compiled with VAC 3.6.5)
|
---|
| 21 | - ODINCRT: o Export 64 bits math rtl functions
|
---|
| 22 | o Added 64 bits math rtl functions for VAC 3.0 (assembly;
|
---|
| 23 | borrowed from VAC 3.6.5)
|
---|
| 24 | NOTE: __divi64 might cause problems (in theory) since
|
---|
| 25 | it uses the FPU and doesn't save the FPU state
|
---|
| 26 | - OLE32/WINMM/KERNEL32/USER32/GDI32/COMCTL32/COMDLG32/SHLWAPI/SHELL32/
|
---|
| 27 | RPCRT4/WSOCK32/VERSION:
|
---|
| 28 | o Rewrote initterm + debug logging to allow us to build
|
---|
| 29 | a single dll containing the code of many Odin dlls
|
---|
| 30 | - CUSTOMBUILD:
|
---|
| 31 | o Example of creating a custom dll with the Odin32 environment
|
---|
| 32 | that can be used for a ported win32 app. (not done yet)
|
---|
| 33 |
|
---|
[6360] | 34 | 2001-07-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 35 | - DOC: o Added license for WGSS50
|
---|
| 36 | - TOOLS\INSTALL:
|
---|
| 37 | o Include new license in WarpIN install script + package
|
---|
| 38 | - TOOLS\DAILYBUILD:
|
---|
| 39 | o Add WGSS50.lic to daily zipfiles
|
---|
| 40 | - COMDLG32: o Use printer dialog function in WGSS50
|
---|
| 41 | - WGSS50: o Added new WGSS dll that fixes several printing problems
|
---|
| 42 | - KERNEL32: o lstrncmpiA/W bugfix; broke resource lookup in Acrobat
|
---|
| 43 | Distiller (did not exactly work the way Wine code expected it)
|
---|
| 44 |
|
---|
[6358] | 45 | 2001-07-19: Achim Hasenmueller <achimha@innotek.de>
|
---|
| 46 | - LICENSE: o added WGSS50.LIC which contains the official license
|
---|
| 47 | of the WGSS50.DLL module that is included with all
|
---|
| 48 | Odin builds. This is a license contract between
|
---|
| 49 | InnoTek Systemberatung GmbH (http://www.innotek.de)
|
---|
| 50 | and the individual Odin user. The library is provided
|
---|
| 51 | free of charge. The main requirement is that every user
|
---|
| 52 | need to own a valid OS/2 license (this also includes
|
---|
| 53 | eComStation of course).
|
---|
| 54 | Every distribution of Odin will also contain this
|
---|
| 55 | license file and the WarpIn archives will show the
|
---|
| 56 | license during installation and require acceptance.
|
---|
| 57 | For any questions about the license, please contact
|
---|
| 58 | me via email. Note that the Odin license specifically
|
---|
| 59 | allows redistribution of Odin with custom applications
|
---|
| 60 | and as soon as the WGSS50 license is included, this also
|
---|
| 61 | applies to WGSS50.DLL.
|
---|
| 62 |
|
---|
| 63 | The reason we include WGSS50 (a subset of Open32 used
|
---|
| 64 | by IBM for Netscape Communicator 4.61 for OS/2) is that
|
---|
| 65 | it contains numerous improvements over Open32 and it
|
---|
| 66 | allows us more easily to replace Open32/WGSS50 APIs
|
---|
| 67 | by custom functions.
|
---|
| 68 |
|
---|
[6353] | 69 | 2001-07-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 70 | - KERNEL32: o HeapCreate now creates a separate heap (_ucreate) instead
|
---|
| 71 | of sharing the same heap as Odin.
|
---|
| 72 | (lowers the chance of fatal crashes on heap corruption;
|
---|
| 73 | hangs in exitlist)
|
---|
| 74 | o Implemented HeapValidate
|
---|
| 75 | o GlobalReAlloc bugfix; must check if pointer has a handle
|
---|
| 76 | associated with it.
|
---|
| 77 | (RealDraw install calls GlobalReAlloc with pointer returned
|
---|
| 78 | by GlobalLock(handle))
|
---|
| 79 |
|
---|
[6345] | 80 | 2001-07-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 81 | - KERNEL32: o RegEnumKeyExW fix (lpszClass can be NULL)
|
---|
[6349] | 82 | o Faster resource lookup functions (Wine)
|
---|
| 83 | - USER32: o Allocate more memory for icon bitmap before calling
|
---|
| 84 | GpiCreateBitmap. This function seems to touch more bytes
|
---|
| 85 | than necessary (??).
|
---|
[6351] | 86 | - GDI32: o AddFontResourceA: ignore if called with filename of PE
|
---|
| 87 | executable (return 1; gets rid of error message in Photoshop 6)
|
---|
[6345] | 88 |
|
---|
[6333] | 89 | 2001-07-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 90 | - COMDLG32: o Ported Wine printer dialog code (inactive due to missing
|
---|
| 91 | functions in winspool)
|
---|
| 92 | - USER32: o Translate WM_VSCROLL & WM_HSCROLL
|
---|
[6338] | 93 | o Do not use imports not available in Warp 3's PMWINX
|
---|
| 94 | (WaitForInputIdle & GetAsyncKeyState)
|
---|
[6343] | 95 | o There is no close button in Warp 3 (OS/2 look & feel)
|
---|
[6341] | 96 | - KERNEL32: o Do not call WaitForInputIdle in WinExec on Warp 3 systems.
|
---|
[6333] | 97 |
|
---|
[6324] | 98 | 2001-07-14: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 99 | - PELDR: o Fix for parsing cmd line consisting of directory with spaces
|
---|
[6326] | 100 | - USER32: o Get menu font from os2.ini (OS/2 look & feel)
|
---|
[6329] | 101 | o Full window drag now works for Odin windows
|
---|
[6330] | 102 | - GDI32: o Implemented StartDocW
|
---|
[6324] | 103 |
|
---|
[6314] | 104 | 2001-07-13: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 105 | - COMDLG32: o Fix for windows 3.1 style file dialog
|
---|
[6321] | 106 | - COMCTL32: o Bad listview pointer checks cause crashes in details
|
---|
| 107 | view of file dialogs
|
---|
[6322] | 108 | (TODO: Details view is still not right)
|
---|
[6316] | 109 | - KERNEL32: o Check for NULL pointer in lstrlenA/W
|
---|
| 110 | (fixes crash during AutoCAD 14 install)
|
---|
| 111 | - USER32: o Removed very old check for negative x or y coordinates during
|
---|
| 112 | window creation.
|
---|
| 113 | (file open dialog in InstallShield doesn't show weird edit control
|
---|
| 114 | anymore and the MS Word 97 main window looks better now)
|
---|
| 115 | o RegisterClassA/W: check icon first before copying it
|
---|
| 116 | (gets rid of some annoying warnings in the logfile)
|
---|
[6321] | 117 | - GDI32: o Change BITMAPINFO height if negative
|
---|
| 118 | (fixes failing StretchDIBits calls with Matrox display driver)
|
---|
[6314] | 119 |
|
---|
[6310] | 120 | 2001-07-12: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 121 | - KERNEL32: o Atom fixes
|
---|
[6312] | 122 | - OLEAUT32: o Added RegisterActiveObject, RevokeActiveObject &
|
---|
| 123 | GetActiveObject from Wine.
|
---|
[6310] | 124 |
|
---|
[6299] | 125 | 2001-07-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 126 | - COMDLG32: o Don't clear filename when selecting of switching
|
---|
| 127 | directory is file open/save dialog.
|
---|
| 128 |
|
---|
[6292] | 129 | 2001-07-10: knut st. osmundsen <kosmunds@csc.com>:
|
---|
[6293] | 130 | - WIN32K: o Made DosKillProcessEx framework.
|
---|
[6298] | 131 | o Tried to fix missing unlocks of environment block.
|
---|
| 132 | - KERNEL32: o Tried to fix missing unlocks of environment block.
|
---|
[6304] | 133 | o Fixed module not found problem when a Pe2Lx is dynamically
|
---|
| 134 | loaded several times.
|
---|
[6306] | 135 | o Defined env.var. ODIN32.FAIL_IF_UNREGISTEREDLX to make
|
---|
| 136 | LoadLibraryEx fail on unregistered LX dlls. This will fix
|
---|
| 137 | the most annoying int 3's when starting Opera on debug Odin.
|
---|
| 138 | (Two int 3 per netscape/2 plugin checked.)
|
---|
[6292] | 139 |
|
---|
[6266] | 140 | 2001-07-09: knut st. osmundsen <kosmunds@csc.com>:
|
---|
| 141 | - CRTDLL: o When renaming dlls we still use the original importlibrary
|
---|
| 142 | and .def-file names. ORGTARGET exist for that purpose.
|
---|
| 143 | - NTDLL: o Link with crtdll.lib.
|
---|
| 144 | - VERSION: o Link with crtdll.lib.
|
---|
| 145 | - WIN32K: o Updated LieList with CrtDll -> CrtDll32 renaming.
|
---|
| 146 |
|
---|
[6261] | 147 | 2001-07-09: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 148 | - KERNEL32: o Directly import registry functions from REGISTRY.DLL
|
---|
| 149 | - GDI32: o Never use object handle 0
|
---|
| 150 | (fixes bad icons in dialogs)
|
---|
[6270] | 151 | - USER32: o Same edit fix as applied yesterday, but this time for
|
---|
| 152 | single line edit control painting.
|
---|
| 153 | (Opera url editbox now displays selected text properly)
|
---|
[6261] | 154 |
|
---|
[6252] | 155 | 2001-07-08: Achim Hasenmueller <achimha@innotek.de>
|
---|
| 156 | - WSOCK32: o error message to human readable text translation
|
---|
| 157 | for WSASetLastError (debug version)
|
---|
| 158 | o implemented IPPROTO_IP support for setsockopt
|
---|
| 159 | (not fully done)
|
---|
| 160 | o reset semaphore in WSAEnumNetworkEvents
|
---|
[6259] | 161 | - USER32: o deleted user32\old. It is still in the CVS attic
|
---|
| 162 | so in case you need it, you can get it from CVS
|
---|
[6252] | 163 |
|
---|
[6239] | 164 | 2001-07-08: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 165 | - USER32: o Some icon fixes
|
---|
[6244] | 166 | o Changed scrollbar behaviour in OS/2 mode; scrollbar doesn't
|
---|
| 167 | jump back to last click position when moving the mouse
|
---|
| 168 | outside the scroll window during scrolling.
|
---|
| 169 | o Changed menu behaviour in OS/2 mode; no mouse tracking
|
---|
| 170 | when right or left mouse button not pressed.
|
---|
[6266] | 171 | o Clipboard (Get/SetClipboardData: must translated open32
|
---|
| 172 | to kernel32 global memory handles (due to Global memory
|
---|
[6255] | 173 | api rewrite)
|
---|
| 174 | o Key translation for arrow keys and insert/del, home/end, page up/down
|
---|
| 175 | added (WM_CHAR message translation)
|
---|
[6256] | 176 | o Edit control bugfix for drawing selected text
|
---|
[6239] | 177 | - KERNEL32: o More pointer checks added to GlobalLock/Unlock
|
---|
[6255] | 178 | o Add default rename entry for crtdll
|
---|
| 179 | o Fixed FS corruption in atom functions (wrapper for LookupAtom)
|
---|
| 180 | - CRTDLL: o Renamed to crtdll32 to avoid problems with some Lotus
|
---|
| 181 | apps that come with their own crtdll
|
---|
| 182 | - NTDLL: o Link with crtdll32.lib
|
---|
| 183 | - VERSION: o Link with crtdll32.lib
|
---|
| 184 | - SHLWAPI: o Link with crtdll32.lib
|
---|
| 185 | - PELDR: o Fix for file not found error
|
---|
[6239] | 186 |
|
---|
[6235] | 187 | 2001-07-08: knut st. osmundsen <kosmunds@csc.com>:
|
---|
| 188 | - KERNEL32: o Added call in initterm to tell win32k where the Odin32
|
---|
| 189 | environment block is. (Its in Open32, and I don't think
|
---|
| 190 | it is reallocated.)
|
---|
| 191 | o Added early initiation of Win32k loaded EXE. This corrected
|
---|
| 192 | problems with GetModuleHandleA returing -1 to MSVCRT.
|
---|
| 193 | - WIN32K: o Fixed environment block problem. The environment variables is
|
---|
| 194 | not updated in the original env.block. So, win32k needs to
|
---|
| 195 | be told where to find the Odin32 environment block to correctly
|
---|
| 196 | find dlls using the PATH.
|
---|
| 197 | o Corrected crosspage fixup bug.
|
---|
| 198 | o Set no internal fixups flag in LX header for most executables
|
---|
| 199 | in an attempt to convice OS/2 to load them where they wanna be
|
---|
| 200 | loaded (usually 0x00400000).
|
---|
[6236] | 201 | o Can now tell difference between the debug kernels.
|
---|
[6235] | 202 |
|
---|
[6198] | 203 | 2001-07-07: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 204 | - KERNEL32: o Rewrote atom functions (no longer relies on Open32)
|
---|
| 205 | o Fixed GetAtomNameW
|
---|
[6209] | 206 | - GDI32: o Don't use Open32 IsBad* memory functions directly
|
---|
| 207 | - COMDLG32: o PrintDlg fix: must translated open32 to kernel32 global
|
---|
| 208 | memory handles (due to Global memory api rewrite)
|
---|
[6198] | 209 |
|
---|
[6197] | 210 | 2001-07-07: Achim Hasenmueller <achimha@innotek.de>
|
---|
| 211 | - WS2_32: o import WSAEventSelect from WSOCK32 (although a
|
---|
| 212 | Winsock 2.0 API, it makes more sense to be implemented
|
---|
| 213 | in the Winsock 1.1 stack)
|
---|
[6202] | 214 | o import WSAEnumNetworkEvents from WSOCK32 (same reason)
|
---|
[6197] | 215 | - WSOCK32: o enhanced WSAAsyncSelect processing to allow both
|
---|
| 216 | window handle and event semaphore notification
|
---|
| 217 | o implemented WSAEventSelect
|
---|
[6202] | 218 | o implemented WSAEnumNetworkEvents (not correct)
|
---|
[6197] | 219 |
|
---|
[6235] | 220 | 2001-07-07: knut st. osmundsen <kosmunds@csc.com>:
|
---|
[6194] | 221 | - URLMON: o Stubbed HlinkSimpleNavigateToString and RegisterBindStatusCallback
|
---|
| 222 | to fix SYS2048 during RealPlayer install.
|
---|
| 223 | - WIN32K: o Fixed the DBExpert bug in the longdllname code.
|
---|
[6198] | 224 | BTW. Thanks to Randell at Sundial Systems and Alex Newman
|
---|
[6194] | 225 | for reporting this and begin very helpful tracking it down.
|
---|
| 226 | o The longdllname feature now differs from the OS/2 loader on
|
---|
| 227 | one points: <br>
|
---|
| 228 | It is able to find (DosQueryModuleHandle) for dlls using
|
---|
| 229 | internal names which includes the .DLL extention. <br>
|
---|
| 230 | The longdllname feature don't currently support names with
|
---|
| 231 | extention .DLL like extentions with base name lengths from
|
---|
| 232 | 4-7 chars. I will fix this some day.<br>
|
---|
| 233 |
|
---|
[6181] | 234 | 2001-07-06: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 235 | - KERNEL32: o HeapAlloc must return pointers aligned at 8 byte boundary
|
---|
| 236 | o GlobalAlloc must return pointers aligned at 8 byte boundary
|
---|
| 237 | (SDK docs + verified in NT4, SP6)
|
---|
[6187] | 238 | o Better checks in GlobalFree for invalid handles/pointers
|
---|
| 239 | (InvestmentView seems to call it with a GDI handle; why??)
|
---|
[6181] | 240 | o LocalReAlloc bugfix
|
---|
| 241 | - USER32: o Must return 16 bits icon & cursor handles
|
---|
| 242 | (fixes crash in Acrobat Reader 4)
|
---|
| 243 | - GDI32: o GetDIBits must only return color information when lpvBits
|
---|
| 244 | is not NULL.
|
---|
| 245 | (fixes Opera crash (heap corruption) with new heap code)
|
---|
| 246 | - PELDR: o Report error when file not found.
|
---|
| 247 |
|
---|
[6174] | 248 | 2001-07-05: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[6172] | 249 | - USER32: o WM_WINDOWPOSCHANGED dispatch bugfix (introduced yesterday)
|
---|
[6175] | 250 | o WinHelpA fixes (use shared memory for sending information
|
---|
| 251 | to winhlp32)
|
---|
[6174] | 252 | - KERNEL32: o Added GlobalFix and GlobalUnfix
|
---|
| 253 | o Local memory functions now use Global memory functions
|
---|
| 254 | o Ported Wine Global memory functions (we no longer depend
|
---|
| 255 | on Open32 for these)
|
---|
[6172] | 256 |
|
---|
| 257 | 2001-07-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[6161] | 258 | - USER32: o Partial implementation of ToAsciiEx (just calls ToAscii)
|
---|
| 259 | o VkKeyScanExA/W: call VkKeyScanA/W
|
---|
| 260 | o MapVirtualKeyExA/W: call MapVirtualKeyA/W
|
---|
[6194] | 261 | o SetParent bugfix; even though the win32 coordinates might
|
---|
| 262 | not change, the PM coordinates can. We must make sure the
|
---|
| 263 | child stays at the same position (y) relative to the
|
---|
[6165] | 264 | (new) parent.
|
---|
| 265 | (Cool Edit Pro LE play buttons now at the right position)
|
---|
[6167] | 266 | o Send WM_SETICON to frame window with converted win32 icon
|
---|
| 267 | (application icon now visible in task list)
|
---|
[6170] | 268 | o Quick fix for window creation:
|
---|
| 269 | Before a window has processed WM_NCCREATE:
|
---|
| 270 | - GetTopWindow can't return that window handle
|
---|
| 271 | - GetWindow(parent, GW_CHILD) can't return that window handle
|
---|
| 272 | - IsChild works
|
---|
| 273 | TODO: Does this affect more functions?? (other GetWindow ops)
|
---|
| 274 | (verified in NT4, SP6)
|
---|
| 275 | TODO: Must add window to parent's child list after WM_NCCREATE
|
---|
| 276 | and rewrite GetWindow & GetTopWindow
|
---|
| 277 | (fix for crash in MP3 Explorer)
|
---|
| 278 |
|
---|
[6164] | 279 | - GDI32: o Workaround for applications that depend on 16 bits
|
---|
| 280 | GDI object handles.
|
---|
| 281 | (TODO: must create our own 16 bits handles)
|
---|
| 282 | (fixes crash in Cool Edit Pro LE)
|
---|
[6161] | 283 |
|
---|
[6152] | 284 | 2001-07-03: knut st. osmundsen <kosmunds@csc.com>
|
---|
| 285 | - KERNEL32: o Improoved the Unhandled exception message by
|
---|
| 286 | trying to provide modulename and some kind of obj/offset.
|
---|
[6159] | 287 | - FastDep: o (synced with OS2Tools) Make better use of data in evt.
|
---|
| 288 | existing .depend file so that only changed files are processed.
|
---|
[6152] | 289 |
|
---|
[6144] | 290 | 2001-07-03: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 291 | - KERNEL32: o Executable load fix
|
---|
[6147] | 292 | (fixes crash during RealPlayer 8 install)
|
---|
| 293 | o Allow loading of OS/2 dlls for Odin32 apps (like Opera)
|
---|
[6150] | 294 | - USER32: o ToAscii & GetKeyboardState fixes
|
---|
[6147] | 295 | (for Putty keyboard input)
|
---|