source: trunk/changelog@ 5153

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

* empty log message *

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