[5756] | 1 | /* $Id: changelog,v 1.1428 2001-05-19 13:51:06 sandervl Exp $ */
|
---|
[5313] | 2 |
|
---|
[5741] | 3 | 2001-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 4 | - WS2_32: o Added more exports
|
---|
[5744] | 5 | - KERNEL32: o Export TryEnterCriticalSection
|
---|
[5747] | 6 | o InterlockedCompareExchange bugfix; should not always return
|
---|
| 7 | old destination; return whatever cmpxchg puts in eax
|
---|
[5744] | 8 | - SHLWAPI: o Export SHSetValueW
|
---|
[5747] | 9 | o Ordinal export 342 is InterlockedCompareExchange implementation
|
---|
| 10 | Takes 3 parameters, not 4. (Wine bug)
|
---|
[5752] | 11 | o Ordinal export 151 takes 3 parameters, not zero.
|
---|
| 12 | o Implemented SHLWAPI_151 (case sensitive string compare
|
---|
| 13 | with length; ascii version of SHLWAPI_152)
|
---|
| 14 | o Implemented SHLWAPI_153 (case insensitive string compare
|
---|
| 15 | with length (ascii))
|
---|
| 16 | o Added SHLWAPI_154 (case insensitive string compare with
|
---|
| 17 | length (unicode))
|
---|
[5747] | 18 | - USER32: o Added TrackMouseEvent, GetGUIThreadInfo & SendInput stubs
|
---|
| 19 | - ADVAPI32: o Added undocumented SystemFunctionXXX functions (stubs)
|
---|
| 20 | o Set lasterror in EnumServicesStatusA/W stubs
|
---|
[5756] | 21 | - GDI32: o GetTextExtentPointA now handles strings larger than 512
|
---|
| 22 | characters.
|
---|
[5741] | 23 |
|
---|
[5739] | 24 | 2001-05-19: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 25 | - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fix (GetLocaleInfo)
|
---|
| 26 |
|
---|
[5735] | 27 | 2001-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 28 | - KERNEL32: o Fixed FS corruption in LCMapStringA/W
|
---|
| 29 | o ole2nls: resync with latest Wine sources
|
---|
| 30 |
|
---|
[5724] | 31 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5733] | 32 | - USER32: o InvalidateRect & InvalidateRgn must call RedrawWindow
|
---|
| 33 | with RDW_ALLCHILDREN flag.
|
---|
| 34 | (RealPlayer 8 install dialog doesn't have WS_CLIPCHILDREN
|
---|
| 35 | style -> InvalidateRect overwrites child windows (buttons))
|
---|
| 36 |
|
---|
| 37 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
[5724] | 38 | - USER32: o Destroy menu windows when they are no longer used.
|
---|
| 39 | (fixes activation problems with dialogs created after
|
---|
| 40 | selecting a menu item)
|
---|
| 41 | (TODO: sync with latest wine menu control sourcecode)
|
---|
[5726] | 42 | o clientHeight bugfix (fixes crash in Solitaire)
|
---|
[5730] | 43 | o Check if another app changed mouse cursor (Get/SetCursor)
|
---|
| 44 | (previously mouse cursor did not change back if another
|
---|
| 45 | app modified it)
|
---|
[5724] | 46 |
|
---|
[5720] | 47 | 2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 48 | - USER32: o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
|
---|
| 49 | both client and frame window.
|
---|
| 50 | (winhlp32 buttons are now visible again)
|
---|
| 51 |
|
---|
[5719] | 52 | 2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 53 | - Tools\bin:o Synced with other projects using the same tools.
|
---|
| 54 |
|
---|
[5708] | 55 | 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 56 | - USER32: o BeginPaint must return logical points instead of device points.
|
---|
| 57 | (not the same if e.g. app changes page viewport)
|
---|
| 58 | (fixes scaling in Opera)
|
---|
[5711] | 59 | o SetFocus fix; manual activation of windows; PM sometimes
|
---|
| 60 | changes the Z-order of the window being activated.
|
---|
| 61 | Also call WH_CBT hook handler (if present)
|
---|
| 62 | (fixes hotlist window in Opera)
|
---|
[5714] | 63 | - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
|
---|
| 64 | if true. (verified in NT4, SP6)
|
---|
[5708] | 65 |
|
---|
[5705] | 66 | 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 67 | - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
|
---|
| 68 | - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
|
---|
| 69 | Wrong assumption about lParam as it's not always a pointer
|
---|
| 70 | (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
|
---|
| 71 |
|
---|
[5700] | 72 | 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 73 | - COMCTL32: o Fixed wrong return values for datetime control
|
---|
| 74 | (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
|
---|
| 75 |
|
---|
[5683] | 76 | 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 77 | - USER32: o Rewrote window handling. Back to using frame and client windows
|
---|
| 78 | for each win32 window.
|
---|
| 79 | (fixes visible region problems with e.g. Opera)
|
---|
| 80 | Frame windows never have the WS_CLIPCHILDREN style; this caused
|
---|
| 81 | the transparency problems reported earlier when using this method.
|
---|
[5719] | 82 | E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
|
---|
| 83 | painting algorithm stops top-down search when it finds
|
---|
[5683] | 84 | a window with WS_CLIPCHILDREN style
|
---|
[5719] | 85 | -> result: dialog window won't update groupbox background
|
---|
[5683] | 86 | as groupbox only draws the border
|
---|
[5719] | 87 | o UpdateWindow: Must use frame window handle even though
|
---|
[5683] | 88 | UpdateWindow only updates the client area.
|
---|
| 89 | If the frame window has a valid update region and we call
|
---|
[5719] | 90 | WinUpdateWindow for the client window, then no WM_PAINT
|
---|
[5683] | 91 | messages will be sent.
|
---|
| 92 | o Don't erase background in RedrawWindow (invalidate) when
|
---|
[5719] | 93 | RDW_ERASE flag not set.
|
---|
[5683] | 94 | (gets rid of excessive background redraws (flickering) for
|
---|
| 95 | progress windows in some installers)
|
---|
| 96 | o Fixed ScrollWindow bug
|
---|
| 97 | o WM_SHOWWINDOW sent twice
|
---|
| 98 | o Mark window's visible region as changed when client receives
|
---|
| 99 | WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
|
---|
| 100 | flag is set (regardless of erase flag set by RedrawWindow)
|
---|
[5688] | 101 | o ScrollDC fix (window handle transation)
|
---|
| 102 | o ScrollDC and ScrollWindowEx bugfix (setting update region)
|
---|
[5686] | 103 | (fixes scrolling in MS Word 97)
|
---|
[5688] | 104 | - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
|
---|
| 105 | (fixes pictures in (some) documents for Word 97)
|
---|
| 106 | TODO: Probably need to check bitfields and convert for some
|
---|
| 107 | other blit functions
|
---|
[5683] | 108 |
|
---|
[5679] | 109 | 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
|
---|
| 110 | - GDI32: o Rop conversion for DIB Section blits
|
---|
| 111 | o Support for negative height (origin top left) in
|
---|
[5691] | 112 | SetDIBitsToDevice + StretchDIBits
|
---|
[5679] | 113 |
|
---|
| 114 | 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 115 | - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
|
---|
| 116 | then the rectangle isn't empty. (include/include input)
|
---|
| 117 | (fixes e.g. missing erase background when slowly moving window
|
---|
| 118 | over Odin window (full window dragging enabled))
|
---|
| 119 |
|
---|
[5675] | 120 | 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 121 | - src/ws2help, bin/debug, bin/release, src/win32k/list,
|
---|
| 122 | src/win32k/debug:
|
---|
| 123 | o Removed directories. These were either not needed
|
---|
| 124 | or unused. I did this now since I was going to
|
---|
| 125 | remove ws2help anyway and there by breaking your tree.
|
---|
| 126 | - tools/bin/CVSRemoveDeletedDirs.cmd:
|
---|
| 127 | o Rexx script which removes the above directories
|
---|
| 128 | from your local tree. Run this from the root of the tree.
|
---|
| 129 | To physically remove the directories you have to specify
|
---|
| 130 | REMOVE as argument (no dash or slash!).
|
---|
| 131 |
|
---|
[5671] | 132 | 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
| 133 | - src/makefile:
|
---|
| 134 | o Ignore WS2HELP for the moment.
|
---|
| 135 | (Never add empty subdirs to /src without making
|
---|
| 136 | /src/makefile ignore it!)
|
---|
| 137 |
|
---|
[5663] | 138 | 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
|
---|
[5668] | 139 | - WS2_32: o created skeleton and added forwarders to WSOCK32
|
---|
[5666] | 140 | - KERNEL32: o CreateProcess error handling corrected, if
|
---|
| 141 | O32_CreateProcess fails with specific reason
|
---|
[5663] | 142 |
|
---|
[5656] | 143 | 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
| 144 | - SHELL32: o Update for SHFileOperationA (FO_MOVE)
|
---|
| 145 |
|
---|
| 146 | 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
| 147 | - USER32: o FrameTrackFrame bugfix for moving child windows
|
---|
| 148 |
|
---|
[5645] | 149 | 2000-05-03: Yuri Dario <mc6530@mclink.it>
|
---|
| 150 | - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
|
---|
[5649] | 151 | o Fix for groupbox WM_SETFONT handler. Must erase top part
|
---|
| 152 | if font is changed.
|
---|
[5652] | 153 | - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
|
---|
[5645] | 154 |
|
---|