source: trunk/changelog@ 5261

Last change on this file since 5261 was 5261, checked in by sandervl, 25 years ago

* empty log message *

File size: 15.3 KB
Line 
1/* $Id: changelog,v 1.1288 2001-02-24 12:58:46 sandervl Exp $ */
2
3 2001-02-24: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o Set fExitProcess flag in WinExe destructor to prevent reloading
5 dlls after loading of exe failed.
6
7 2001-02-23: Sander van Leeuwen <sandervl@xs4all.nl>
8 - GDI32: o Removed old workaround for SetDIBitsToDevice. Incorrect for
9 new implementation of this function with StretchDIBits.
10 (fixes bitmaps in Minesweeper)
11 - USER32: o WM_SETCURSOR change; don't check WS_EX_NOPARENTNOTIFY style
12 when sending this message to the parent of a child window.
13 o Redraw entire window when switching between minimized, maximized
14 and restored windows state.
15 o Added missing cursor to MDI client class
16 (cursor now changes when moving cursor from mdi child to
17 client window)
18 - USER32, include\win\drive.h:
19 o DRIVE_GetDosCwd bugfix
20 (fixes crash in Cool Edit old-style file open dialog)
21
22 2000-02-22: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
23 - Win32k: o Support for the 14062e kernels.
24 o Removed the CALLTAB segment.
25 o Hooked dh_SendEvent and RASRST for taskmanager hot-key support.
26 o Enabled callgate on SMP kernel.
27
28 2001-02-22: Sander van Leeuwen <sandervl@xs4all.nl>
29 - KERNEL32: o Changed error string when detecting version mismatch.
30 - USER32: o Fixed incorrect index checking for class and window words.
31 o Allow misaligned access to window words/longs
32 (fixes crash in Quicken 99)
33 o More minimize changes/fixes for MDI windows.
34 o Update region fix in NotifyFrameChanged method
35
36 2001-02-21: Sander van Leeuwen <sandervl@xs4all.nl>
37 - USER32: o Changes for minimizing windows. Not done yet.
38 o Added CreateFakeWindowEx.
39 Turns native OS/2 window into window recognized by Odin (with
40 only very limited functionality)
41 Useful for creating an Odin window with an OS/2 window as
42 parent.
43
44 2000-02-21: Michal Necasek <mike@mendelu.cz>
45 - USER32: o Translate WM_BUTTONxMOTIONSTART/END to WM_MOUSEMOVE
46 Applications don't expect WM_NULL when fetching mouse
47 messages from the queue.
48 (fixes mouse jumping in Unreal)
49
50 2000-02-20: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
51 - Win32k: o Moved calltabs to the code segments. Clears the
52 WriteProtect(WP) flag in CR0 to be able to do this. The flags
53 is of course restored when the calltabs are written.
54 o Completed callgate code. Though is not activated for SMP
55 kernels yet as I haven't tested that yet.
56 The callgate works just as any other callgate in OS2, it
57 calls kernel routines for entry and exit housekeeping.
58 o Updated the win32k library and header to accomodate this.
59 All IOCtl structures are changed.
60 So, Install the new the new Odin32 and reboot before using
61 it so the new win32k.sys is installed.
62
63 2001-02-20: Sander van Leeuwen <sandervl@xs4all.nl>
64 - USER32: o Fix for position of system menu in (mdi) child windows
65 o Use WinScrollWindow to scroll children again and manually
66 notify children that they have moved. (PM only does this
67 for windows with CS_MOVENOTIFY class)
68 (much smoother scroll in Opera)
69 o Use WinGetMaxPosition to determine default maximized position
70 of toplevel window before sending WM_GETMINMAXINFO
71 (maximized Odin windows no longer obscure WarpCenter)
72 o Activation fixes for MDI windows
73
74 2000-02-19: Oliver Braun <Oliver.Braun@hamburg.de>
75 - KERNEL32: o OSLibDosAllocMem fix (better checks for errors + return
76 4kb aligned memory if 64kb alignment fails)
77 (fixes StarOffice 5.2 install)
78
79 2000-02-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
80 - KERNEL32: o Use DosAllocMemEx to 64KB align memory (OSLibDosAllocMem)
81 when available.
82 - Win32k: o Prepared API code for both callgate and IOCtl invokation.
83 This caused changes in IOCtl parameter structures.
84 Callgate code is completed but not used yet because
85 it isn't tested yet.
86
87 2001-02-19: Sander van Leeuwen <sandervl@xs4all.nl>
88 - COMDLG32: o Commented out Norse ChooseFont dialog (incomplete translation)
89 Use the English version instead.
90 - USER32: o Corrected invalidating nonclient parts of a window after a resize.
91 (fixes resizing of mdi windows in mdi sample)
92
93 2000-02-18: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
94 - Win32k: o Finished implementation of DosAllocMemEx.
95 DosAllocMemEx is equal to DosAllocMem but takes some extra
96 OBJ_ flags (defined in win32k.h).
97 TODO: "Grow arena" problem when allocating memory at a
98 specific location. I'll fix this ASAP and add a fix for the
99 loader too (which has the same problems with loading EXEs
100 without fixup above 64MB).
101
102 2001-02-18: Sander van Leeuwen <sandervl@xs4all.nl>
103 - USER32: o Restore window origin in SetWindowPos for parent window with
104 CS_OWNDC style.
105 Do the same thing in WM_VRNENABLED message handler.
106 (fixes paint offset problems in Opera windows)
107 o Bug in yesterday's ScrollWindowEx fix
108 (fixes smooth scrolling of child windows in Opera html window)
109 o Detect DestroyWindow call during CreateWindowEx and delay
110 deleting the window/dialog object.
111 (fixes crash in Opera when going to fullscreen mode)
112
113 2000-02-17: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
114 - Win32kCC: o Rewrote to notebook. (fixes size problem)
115 o Added memoryinfo page which is refreshed every second.
116
117 2000-02-17: Yuri Dario <mc6530@mclink.it>
118 - INCLUDE: o Header changes for compiling Opera
119
120 2001-02-17: Sander van Leeuwen <sandervl@xs4all.nl>
121 - USER32: o Store active status in custom window word. QWS_FLAGS appears
122 to be modified by PM somewhere.
123 (fixes WM_ACTIVATE loop in Opera when maximizing or restoring
124 the mdi window)
125 o Don't include RDW_NOERASE flag in InvalidateRect/Rgn
126 (fixes background erase for mdi client window in Opera)
127 o IsChild only checked the direct parent of a window. Must
128 check all parents (parents of parents etc)
129 (fixes TAB handling in Opera dialogs)
130 o Ported latest GetNextDlgTabItem from Wine
131 (fixes TAB handling in Opera dialogs)
132 o WM_ADJUSTWINDOWPOS bugfix (if app changes size/position)
133 OSLibMapWINDOWPOStoSWP can add flags, but we must not let
134 it remove flags.
135 (fixes resizing of Opera MDI windows)
136 o ScrollWindow(Ex) bugfixes
137 Must scroll child windows manually
138 (fixes scrolling of Opera html MDI windows)
139 o Combobox fix from Wine (CBCalcPlacement)
140 (fixes combobox controls in Opera html MDI windows)
141 (TODO: sync rest with latest Wine control code)
142
143 2001-02-15: Sander van Leeuwen <sandervl@xs4all.nl>
144 - COMDLG32: o Ignore OFN_FILEMUSTEXIST flag in GetSaveFileNameA/W
145 (NT4 seems to ignore it too and it fixes the save dialog
146 in ElstarFormular 2000)
147
148 2001-02-14: knut stange osmundsen <knut.stange.osmundsen@mynd.no>
149 - Win32k.lib:
150 o Corrected build breaker: log.h should not be included.
151 log.h was removed from the CINLCUDES two days ago.
152
153 2001-02-14: Sander van Leeuwen <sandervl@xs4all.nl>
154 - KERNEL32: o Allocate TLS index of module before loading the dll it needs
155 (some apps assume their executable index is always zero)
156 (fixes crash in BrMSX)
157 o Must use EXC_CallHandler to call RtlUnwind handler
158 (fixes crash during RaiseException in BrMSX)
159 - OPENGL\GLU:
160 o Removed initterm.cpp. Use dllentry.obj instead
161 - INCLUDE\misc.h:
162 o Print file and function name before executing an int 3. (DebugInt3)
163 - *\initterm.cpp:
164 o Wrong calling convention for CRT_Init/Term, ctordtorInit/Term
165 o VAC 3.6.5 ctordtorInit/Term takes one parameter
166 - USER32: o Delay SetFocus when called during processing of WM_SETFOCUS
167 message (not allowed by PM).
168 (fixes keyboard focus in ElstarFormular 2000)
169
170 2000-02-13: Michal Necasek <mike@mendelu.cz>
171 - USER32: o Wrong unicode<->ascii translation for some listbox & combobox
172 messages. Must check if the control style includes LB/CB_HASSTRINGS.
173 (CB_FINDSTRING, CB_FINDSTRINGEXACT, CB_SELECTSTRING,
174 LB_FINDSTRING, LB_FINDSTRINGEXACT, LB_SELECTSTRING)
175
176 2001-02-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
177 - Win32k.lib:
178 o Removed /src/win32k/include from the CFLAGS.
179
180 2001-02-11: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
181 - Win32k: o Added symbols for the 14062D kernels.
182 o Added a query API for getting memory information.
183 o Added force preload option - should be very useful when
184 debugging Ring 3 apps with ICAT. (Option -F)
185
186 2001-02-11: Sander van Leeuwen <sandervl@xs4all.nl>
187 - ODINCRT: o Completed runtime dll for VAC 3.6.5
188 - WINMM, GLU, CRTDLL, KERNEL32:
189 o Compile fixes for VAC 3.6.5
190 - RASAPI32: o Can't use LXLITE as it crashes on this binary
191 - KERNEL32: o Check handle in LocalLock and return NULL if invalid
192 (some apps use LocalLock to get access to GDI objects; doesn't
193 work in Odin (TODO))
194
195 2001-02-10: Sander van Leeuwen <sandervl@xs4all.nl>
196 - USER32: o Check if window has been destroyed before accessing
197 this pointer again in SendInternalMessage.
198 (fixes heap corruption in MS Visual C++ 4.2 install)
199 TODO: Needs a permanent and correct solution as this
200 can happen in several other places.
201 Also a potential problem in user32 classes (InfoPtr).
202 o Set last error to ERROR_INVALID_INDEX for invalid class word
203 index.
204
205 2001-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
206 - COMCTL32: o Register controls in LibMain, not in DLL_InitTerm
207 - KERNEL32: o Re-register dll if DosFreeModule failed with ERROR_INVALID_ACCESS
208 Dll refuses to unload if it has an active exitlist handler
209 or depends on a dll that registered an exitlist handler.
210 In this case the handle remains valid and the entrypoint of
211 the dll is NOT called for DLL_PROCESS_DETACH. The next time
212 DosLoadModule is called, the entrypoint (and RegisterLXDll)
213 isn't called (DLL_PROCESS_ATTACH).
214 WORKAROUND: Re-register the dll so future functions that
215 use this dll calls don't fail.
216 (fixes crash in shell32 in TextPad 4)
217 o shared & code heap umalloc changed (now more meaningful debug
218 messages in case of heap corruption)
219 - USER32: o WM_MINIMIZE/WS_MAXIMIZE support added to CreateWindow
220 (fixes size of main InstallShield window for Microsoft Visual
221 C++ 4.2)
222 o Fixed FS corruption in DIALOG_DlgDirList (c library function calls)
223
224 2001-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
225 - KERNEL32: o Standard in/out/error handle fix. Disable change during
226 console init.
227 (fixes output of console applications; input doesn't work well yet)
228 - USER32: o Dialog control fix. Creating them with CreateWindowExW does not
229 work since our standard user32 controls are still ASCII.
230 (fixes missing icon control in Acrobat Distiller window)
231
232 2001-02-08: Michal Necasek <michalnec@volny.cz>
233 - KERNEL32: o RtlUnwind bugfix
234
235 2001-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
236 - USER32: o Wrong error set in GetDlgItem. Must be ERROR_CONTROL_ID_NOT_FOUND.
237 (verified in NT4, SP6)
238
239 2001-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
240 - USER32: o Get/SetWindowLongA/W, Get/SetWindowWord: must set
241 last error to ERROR_INVALID_WINDOW_HANDLE if window not found.
242 (verified in NT4, SP6)
243 Must also return ERROR_INVALID_INDEX if index is out of range.
244 (used to return ERROR_INVALID_PARAMETER) (verified in NT4, SP6)
245 o Temporary hack to force focus to newly created window
246 (if no Odin window has focus after sending WM_ACTIVATE, set
247 focus to window that received the activate message)
248 (fixes wrong keyboard focus in RealPlayer 8)
249
250 2001-02-02: Sander van Leeuwen <sandervl@xs4all.nl>
251 - USER32: o DrawEdge bugfixes (signed/unsigned char mismatches)
252 (fixes lines in properties dialog of RealPlayer 8)
253 o Fixed incorrect rounding in dialog control size calculation
254 (fixes wrong height of some dialog controls (rp8 pref. dialog lines))
255 o Don't unregister class if there are still windows that use it.
256
257 2001-02-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
258 - Win32k: o Added option for the All-In-One-Object fix to be able
259 to debug PE executables thru the ICAT. Works with pe2lx
260 and win32k.sys.
261 -1<+|-|[*]>
262 +: Applied when needed. (checked)
263 -: Never applied (use this to debug). (not checked)
264 *: Allways applied. (default) (gray)
265 It's also added to Win32kCC as a three state checkbutton.
266
267 WARNING! This option should only be used for debugging
268 and will cause your system to crash if used with based
269 images!
270 - tools\Common:
271 o Minor changes in the fileformat classes to use kFile.
272
273 2001-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
274 - GDI32: o LineDDA fix (wrong calling convention)
275 (fixes crash in Solitaire)
276 - USER32: o clientHeight bugfix. Check hwnd instead of pHps->hwnd.
277 (pHps can be NULL)
278 (fixes crash in Solitaire)
279 - INSTALL: o Include ChangeLog-2001 in daily build
280 - COMDLG32: o Merged some changes from Wine (extra notification in
281 FileOpenDlgProc95 & OFN_NOCHANGEDIR support (also added
282 to Unicode version of file open dialog))
283 o Removed workaround for Acrobat Reader file open dialog
284 (Wine update fixed it)
Note: See TracBrowser for help on using the repository browser.