source: trunk/changelog@ 5265

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

* empty log message *

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