source: trunk/changelog@ 5284

Last change on this file since 5284 was 5284, checked in by bird, 25 years ago

* empty log message *

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