source: trunk/changelog@ 5172

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

* empty log message *

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