[5864] | 1 | /* $Id: changelog,v 1.1466 2001-06-01 10:28:33 sandervl Exp $ */
|
---|
[5313] | 2 |
|
---|
[5857] | 3 | 2001-06-01: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5864] | 4 | - USER32: o Send WM_HELP if F1 pressed & no menu active
|
---|
| 5 | o Disabled system hooks (only work in one process)
|
---|
[5857] | 6 | - KERNEL32: o Improved ordinal lookup a bit. (usually 4 times faster, but
|
---|
| 7 | barely noticable with 'real' applications)
|
---|
| 8 | - OLE32: o Added OleLoadPictureEx stub
|
---|
| 9 | - GDI32: o GetDIBits fix for querying the bitmap information
|
---|
| 10 | WGSS returns 0, but we should return the nr of scan lines requested
|
---|
| 11 | - SHLWAPI: o Added PathGetCharTypeA/W from Wine
|
---|
| 12 |
|
---|
[5849] | 13 | 2001-06-01: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 14 | - KERNEL32: o benchmarked new experimental loader and reverted to
|
---|
| 15 | old but slightly optimized loader (processExport usually
|
---|
| 16 | outweighs processImport, so lookup is less valuable than
|
---|
| 17 | add to export list)
|
---|
| 18 | - SHELL32: o SIC_Initialize took extremely long to pre-initialize
|
---|
| 19 | its icon cache. Revert to on-demand loading of the icons,
|
---|
| 20 | speeds up loading of SHELL32 (therefore most apps)
|
---|
| 21 | by several seconds.
|
---|
| 22 |
|
---|
[5857] | 23 | 2001-05-31: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 24 | - OLEAUT32: o Fixed ITypeInfoImpl_Invoke
|
---|
| 25 |
|
---|
[5841] | 26 | 2001-05-30: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 27 | - KERNEL32: o further performance improvement of hashtables
|
---|
| 28 | o fixes for loader improvements (PE, LX)
|
---|
| 29 | o Todo: measuring new code, reducing memory requirements
|
---|
| 30 |
|
---|
[5834] | 31 | 2001-05-30: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 32 | - USER32: o RedrawWindow: don't clear erase background flag if the
|
---|
| 33 | window is already (partly) invalidated.
|
---|
| 34 | (fixes redrawing of dialogs controls in mIRC startup dialog
|
---|
| 35 | window (when switching option windows))
|
---|
[5836] | 36 | - KERNEL32: o Put back old lookup code.
|
---|
| 37 | New files renamed to winimagepeldr_new.cpp/h
|
---|
| 38 | (Odin test app crashes; looks like MFC42 ordinal lookup
|
---|
| 39 | fails somewhere)
|
---|
[5839] | 40 | - OLEAUT32: o Added RegisterTypeLib (ported recent Wine patch) &
|
---|
| 41 | UnRegisterTypeLib
|
---|
| 42 | o Added ITypeInfoImpl_Invoke (ported Francois Jacques'
|
---|
| 43 | (refused) patch and rewrote it to get rid of stack
|
---|
| 44 | layout dependency.
|
---|
| 45 | o VT_HRESULT -> VT_INT conversion added to Coerce
|
---|
| 46 | (all needed for Quicken Deluxe 2001; still crashes, but
|
---|
| 47 | gets passed data loading)
|
---|
[5844] | 48 | - OLE32: o OleRun: check pointer with IsValidInterface
|
---|
| 49 | (fixes crash in Quicken after data loading)
|
---|
[5834] | 50 |
|
---|
[5830] | 51 | 2001-05-30: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 52 | - KERNEL32: o replaced linear lists in PE loader with faster hashtables
|
---|
| 53 | (ccollection.cpp, experimental)
|
---|
[5832] | 54 | ToDo: measure any difference, revert eventualls
|
---|
[5830] | 55 |
|
---|
[5824] | 56 | 2001-05-29: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 57 | - GDI32: o Set/GetDIBColorTable fixes for DIB sections with bpp > 8
|
---|
| 58 | o Don't sync DIB section in SelectPalette if bForceBackground
|
---|
| 59 | is -1. (hack for bitmap buttons in Beyond Compare)
|
---|
[5827] | 60 | - DCIMAN32: o Updated & return proper error codes
|
---|
[5824] | 61 |
|
---|
[5814] | 62 | 2001-05-28: Patrick Haller <patrick.haller@innotek.de>
|
---|
| 63 | - GDI32: o Split GDI32.CPP into ICM.CPP and GDI32.CPP
|
---|
[5820] | 64 | o CreateDC() accepts "display" instead of "DISPLAY"
|
---|
| 65 | (fixes font-not-found problem in ZD Bench 99)
|
---|
[5815] | 66 | - KERNEL32: o mmap.cpp: slightly accelerated ::findMapByView()
|
---|
[5820] | 67 | o directory.cpp: don't trap in CreateDirectory(NULL, NULL)
|
---|
| 68 | - DDRAW: o implemented DirectDrawCreateClipper()
|
---|
[5822] | 69 | - WOW32: o created initial (fake) version of WOW32.DLL
|
---|
| 70 | (SBLiveXP accesses this directly)
|
---|
[5814] | 71 |
|
---|
[5809] | 72 | 2001-05-27: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 73 | - COMCTL32: o Listview: merged old LISTVIEW_EnsureVisible
|
---|
| 74 | (gets rid of excessive repaints)
|
---|
| 75 | - USER32: o Replaced TabbedTextOutA/W & GetTabbedTextExtentA/W with
|
---|
| 76 | Wine version. GPI doesn't support strings > 512 characters.
|
---|
| 77 | - GDI32: o Commented out InternalTabbedTextOutA/W & InternalGetTabbedTextExtentA/W
|
---|
| 78 |
|
---|
[5807] | 79 | 2001-05-26: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 80 | - COMCTL32: o Datetime control resync with Wine (get/setrange added)
|
---|
| 81 |
|
---|
[5800] | 82 | 2001-05-25: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 83 | - Odin.ini: o Removed MS Shell Dlg font mapping
|
---|
| 84 | - GDI32: o Synchronize DIB Section after SelectPalette call (if selected in DC)
|
---|
| 85 | (fixes wrong colors for some bitmaps)
|
---|
| 86 | o Update bitmap and synchronize DIB Section in SetDIBits
|
---|
| 87 | o Update color table during DIB sync too
|
---|
[5801] | 88 | - USER32: o Dialog control x & y coordinates in dialog template are signed
|
---|
[5803] | 89 | words. (fixes dialog controls with negative offset)
|
---|
[5804] | 90 | o Rewrote Post(Thread)/SendMessage; filtering of posted/sent
|
---|
| 91 | messages (by app) is now possible with Peek/GetMessage.
|
---|
| 92 | o PeekMessage fix; got rid of double removal for untranslated
|
---|
| 93 | messages
|
---|
[5800] | 94 |
|
---|
[5789] | 95 | 2001-05-24: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 96 | - GDI32: o Commented out recent changes (color conversion) in
|
---|
| 97 | SetDIBitsToDevice. Breaks startup bitmap of Acrobat Reader 4
|
---|
[5794] | 98 | o GetTextExtentPointA; call WGSS instead.
|
---|
| 99 | Better result (strings not clipped).
|
---|
[5789] | 100 | - KERNEL32: o OpenFile fix for OF_REOPEN flag (crashes when looking up
|
---|
| 101 | handle)
|
---|
[5793] | 102 | - IPHLPAPI o Added stub dll
|
---|
[5789] | 103 |
|
---|
[5783] | 104 | 2001-05-23: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 105 | - USER32: o RedrawWindow with desktop window handle no longer returns
|
---|
| 106 | an error.
|
---|
[5785] | 107 | (fixes RealPlayer Auto Size window)
|
---|
| 108 | - Odin.ini o Added font mapping for MS Shell Dlg to WarpSans
|
---|
[5787] | 109 | (gets rid of ugly fonts (in dialogs) which also have the wrong
|
---|
[5785] | 110 | size (text clipping))
|
---|
[5787] | 111 | - KERNEL32: o CreateFile for partitions; handle lookup fails if
|
---|
| 112 | OS/2 handle is set to -1 (happens if disk not inserted)
|
---|
| 113 | -> set to 0 instead
|
---|
[5783] | 114 |
|
---|
[5775] | 115 | 2001-05-22: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 116 | - COMCTL32: o Partial merge of listview control with latest Wine
|
---|
[5779] | 117 | o Listview: Send WM_MEASUREITEM for controls with
|
---|
| 118 | LVS_OWNERDRAWFIXED style.
|
---|
| 119 | (TODO: sets size for all items only)
|
---|
| 120 | (fixes wrong item size for VirtualPC main window)
|
---|
[5775] | 121 | - USER32: o Fixed minimizing & restoring of top-level windows
|
---|
[5781] | 122 | - KERNEL32: o Check name before adding dependency for module in
|
---|
| 123 | order to avoid circular dependencies (WNETAP32 (== NETAPI32)
|
---|
| 124 | imports from NETAPI32)
|
---|
| 125 | (fixes crash at exit in VirtualPC)
|
---|
[5775] | 126 |
|
---|
[5767] | 127 | 2001-05-20: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5770] | 128 | - GDI32: o Fixed LPtoDP/DPtoLP again.
|
---|
[5767] | 129 | - USER32: o Paint menu item first before destroying it
|
---|
| 130 | (prevents menu control from painting selected item on
|
---|
| 131 | desktop)
|
---|
[5770] | 132 | o Don't show or hide scrollbar in SetScrollInfo if
|
---|
| 133 | scroll parameters didn't change.
|
---|
| 134 | (fixes loop in VirtualPC settings dialog)
|
---|
[5767] | 135 |
|
---|
[5765] | 136 | 2001-05-20: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 137 | - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fixes (Get/SetLocaleInfo)
|
---|
| 138 |
|
---|
[5763] | 139 | 2001-05-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
[5765] | 140 | - win32k: o Added improvements from Rafal, better validation of the
|
---|
[5763] | 141 | paths which are found. Might cause some warnings for
|
---|
| 142 | some of you, but just read and ignore them.
|
---|
| 143 | Run configure.cmd (one of them)!
|
---|
| 144 |
|
---|
[5741] | 145 | 2001-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5763] | 146 | - GDI32: o LPtoDP/DPtoLP: check input because GpiConvert doesn't like
|
---|
[5761] | 147 | illegal values (TODO: check what NT does)
|
---|
| 148 | (fixes huge buttons in VirtualPC dialog (font with wrong
|
---|
| 149 | height created))
|
---|
[5758] | 150 | - INCLUDE\odinwrap.h:
|
---|
| 151 | o ODINFUNCTIONNODBG & ODINPROCEDURENODBG should still save
|
---|
| 152 | and restore FS!!!
|
---|
| 153 | (FS corruption in release build; mainly affects wsock32)
|
---|
[5741] | 154 | - WS2_32: o Added more exports
|
---|
[5744] | 155 | - KERNEL32: o Export TryEnterCriticalSection
|
---|
[5747] | 156 | o InterlockedCompareExchange bugfix; should not always return
|
---|
| 157 | old destination; return whatever cmpxchg puts in eax
|
---|
[5744] | 158 | - SHLWAPI: o Export SHSetValueW
|
---|
[5747] | 159 | o Ordinal export 342 is InterlockedCompareExchange implementation
|
---|
| 160 | Takes 3 parameters, not 4. (Wine bug)
|
---|
[5752] | 161 | o Ordinal export 151 takes 3 parameters, not zero.
|
---|
[5763] | 162 | o Implemented SHLWAPI_151 (case sensitive string compare
|
---|
[5752] | 163 | with length; ascii version of SHLWAPI_152)
|
---|
[5763] | 164 | o Implemented SHLWAPI_153 (case insensitive string compare
|
---|
[5752] | 165 | with length (ascii))
|
---|
[5763] | 166 | o Added SHLWAPI_154 (case insensitive string compare with
|
---|
[5752] | 167 | length (unicode))
|
---|
[5747] | 168 | - USER32: o Added TrackMouseEvent, GetGUIThreadInfo & SendInput stubs
|
---|
| 169 | - ADVAPI32: o Added undocumented SystemFunctionXXX functions (stubs)
|
---|
| 170 | o Set lasterror in EnumServicesStatusA/W stubs
|
---|
[5756] | 171 | - GDI32: o GetTextExtentPointA now handles strings larger than 512
|
---|
| 172 | characters.
|
---|
[5741] | 173 |
|
---|
[5739] | 174 | 2001-05-19: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 175 | - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fix (GetLocaleInfo)
|
---|
| 176 |
|
---|
[5735] | 177 | 2001-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 178 | - KERNEL32: o Fixed FS corruption in LCMapStringA/W
|
---|
| 179 | o ole2nls: resync with latest Wine sources
|
---|
| 180 |
|
---|
[5724] | 181 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5733] | 182 | - USER32: o InvalidateRect & InvalidateRgn must call RedrawWindow
|
---|
[5763] | 183 | with RDW_ALLCHILDREN flag.
|
---|
[5733] | 184 | (RealPlayer 8 install dialog doesn't have WS_CLIPCHILDREN
|
---|
| 185 | style -> InvalidateRect overwrites child windows (buttons))
|
---|
| 186 |
|
---|
| 187 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5724] | 188 | - USER32: o Destroy menu windows when they are no longer used.
|
---|
[5763] | 189 | (fixes activation problems with dialogs created after
|
---|
[5724] | 190 | selecting a menu item)
|
---|
| 191 | (TODO: sync with latest wine menu control sourcecode)
|
---|
[5726] | 192 | o clientHeight bugfix (fixes crash in Solitaire)
|
---|
[5730] | 193 | o Check if another app changed mouse cursor (Get/SetCursor)
|
---|
| 194 | (previously mouse cursor did not change back if another
|
---|
| 195 | app modified it)
|
---|
[5724] | 196 |
|
---|
[5720] | 197 | 2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 198 | - USER32: o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
|
---|
| 199 | both client and frame window.
|
---|
| 200 | (winhlp32 buttons are now visible again)
|
---|
| 201 |
|
---|
[5719] | 202 | 2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 203 | - Tools\bin:o Synced with other projects using the same tools.
|
---|
| 204 |
|
---|
[5708] | 205 | 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 206 | - USER32: o BeginPaint must return logical points instead of device points.
|
---|
| 207 | (not the same if e.g. app changes page viewport)
|
---|
| 208 | (fixes scaling in Opera)
|
---|
[5711] | 209 | o SetFocus fix; manual activation of windows; PM sometimes
|
---|
| 210 | changes the Z-order of the window being activated.
|
---|
| 211 | Also call WH_CBT hook handler (if present)
|
---|
| 212 | (fixes hotlist window in Opera)
|
---|
[5714] | 213 | - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
|
---|
| 214 | if true. (verified in NT4, SP6)
|
---|
[5708] | 215 |
|
---|
[5705] | 216 | 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 217 | - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
|
---|
| 218 | - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
|
---|
| 219 | Wrong assumption about lParam as it's not always a pointer
|
---|
| 220 | (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
|
---|
| 221 |
|
---|
[5700] | 222 | 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 223 | - COMCTL32: o Fixed wrong return values for datetime control
|
---|
| 224 | (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
|
---|
| 225 |
|
---|
[5683] | 226 | 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 227 | - USER32: o Rewrote window handling. Back to using frame and client windows
|
---|
| 228 | for each win32 window.
|
---|
| 229 | (fixes visible region problems with e.g. Opera)
|
---|
| 230 | Frame windows never have the WS_CLIPCHILDREN style; this caused
|
---|
| 231 | the transparency problems reported earlier when using this method.
|
---|
[5719] | 232 | E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
|
---|
| 233 | painting algorithm stops top-down search when it finds
|
---|
[5683] | 234 | a window with WS_CLIPCHILDREN style
|
---|
[5719] | 235 | -> result: dialog window won't update groupbox background
|
---|
[5683] | 236 | as groupbox only draws the border
|
---|
[5719] | 237 | o UpdateWindow: Must use frame window handle even though
|
---|
[5683] | 238 | UpdateWindow only updates the client area.
|
---|
| 239 | If the frame window has a valid update region and we call
|
---|
[5719] | 240 | WinUpdateWindow for the client window, then no WM_PAINT
|
---|
[5683] | 241 | messages will be sent.
|
---|
| 242 | o Don't erase background in RedrawWindow (invalidate) when
|
---|
[5719] | 243 | RDW_ERASE flag not set.
|
---|
[5683] | 244 | (gets rid of excessive background redraws (flickering) for
|
---|
| 245 | progress windows in some installers)
|
---|
| 246 | o Fixed ScrollWindow bug
|
---|
| 247 | o WM_SHOWWINDOW sent twice
|
---|
| 248 | o Mark window's visible region as changed when client receives
|
---|
| 249 | WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
|
---|
| 250 | flag is set (regardless of erase flag set by RedrawWindow)
|
---|
[5688] | 251 | o ScrollDC fix (window handle transation)
|
---|
| 252 | o ScrollDC and ScrollWindowEx bugfix (setting update region)
|
---|
[5686] | 253 | (fixes scrolling in MS Word 97)
|
---|
[5688] | 254 | - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
|
---|
| 255 | (fixes pictures in (some) documents for Word 97)
|
---|
| 256 | TODO: Probably need to check bitfields and convert for some
|
---|
| 257 | other blit functions
|
---|
[5683] | 258 |
|
---|
[5679] | 259 | 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
|
---|
| 260 | - GDI32: o Rop conversion for DIB Section blits
|
---|
| 261 | o Support for negative height (origin top left) in
|
---|
[5691] | 262 | SetDIBitsToDevice + StretchDIBits
|
---|
[5679] | 263 |
|
---|
| 264 | 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 265 | - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
|
---|
| 266 | then the rectangle isn't empty. (include/include input)
|
---|
| 267 | (fixes e.g. missing erase background when slowly moving window
|
---|
| 268 | over Odin window (full window dragging enabled))
|
---|
| 269 |
|
---|
[5675] | 270 | 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 271 | - src/ws2help, bin/debug, bin/release, src/win32k/list,
|
---|
| 272 | src/win32k/debug:
|
---|
| 273 | o Removed directories. These were either not needed
|
---|
| 274 | or unused. I did this now since I was going to
|
---|
| 275 | remove ws2help anyway and there by breaking your tree.
|
---|
| 276 | - tools/bin/CVSRemoveDeletedDirs.cmd:
|
---|
| 277 | o Rexx script which removes the above directories
|
---|
| 278 | from your local tree. Run this from the root of the tree.
|
---|
| 279 | To physically remove the directories you have to specify
|
---|
| 280 | REMOVE as argument (no dash or slash!).
|
---|
| 281 |
|
---|
[5671] | 282 | 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 283 | - src/makefile:
|
---|
| 284 | o Ignore WS2HELP for the moment.
|
---|
| 285 | (Never add empty subdirs to /src without making
|
---|
| 286 | /src/makefile ignore it!)
|
---|
| 287 |
|
---|
[5663] | 288 | 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
|
---|
[5668] | 289 | - WS2_32: o created skeleton and added forwarders to WSOCK32
|
---|
[5666] | 290 | - KERNEL32: o CreateProcess error handling corrected, if
|
---|
| 291 | O32_CreateProcess fails with specific reason
|
---|
[5663] | 292 |
|
---|
[5656] | 293 | 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 294 | - SHELL32: o Update for SHFileOperationA (FO_MOVE)
|
---|
| 295 |
|
---|
| 296 | 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 297 | - USER32: o FrameTrackFrame bugfix for moving child windows
|
---|
| 298 |
|
---|
[5645] | 299 | 2000-05-03: Yuri Dario <mc6530@mclink.it>
|
---|
| 300 | - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
|
---|
[5649] | 301 | o Fix for groupbox WM_SETFONT handler. Must erase top part
|
---|
| 302 | if font is changed.
|
---|
[5652] | 303 | - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
|
---|
[5645] | 304 |
|
---|