source: trunk/changelog@ 5158

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

* empty log message *

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