source: trunk/changelog@ 5245

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

* empty log message *

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