source: trunk/changelog@ 5190

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

* empty log message *

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