source: trunk/changelog@ 5161

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

* empty log message *

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