source: trunk/changelog@ 5197

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

* empty log message *

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