source: trunk/changelog@ 5174

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

* empty log message *

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