source: trunk/changelog@ 5166

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

* empty log message *

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