source: trunk/changelog@ 5241

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

* empty log message *

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