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