source: trunk/changelog@ 5288

Last change on this file since 5288 was 5288, checked in by mike, 25 years ago

Changes/fixes/updates for building with Watcom

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