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