source: trunk/changelog@ 5758

Last change on this file since 5758 was 5758, checked in by sandervl, 24 years ago

* empty log message *

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