source: trunk/changelog@ 5268

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

* empty log message *

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