source: trunk/changelog@ 5216

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

* empty log message *

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