source: trunk/changelog@ 5151

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

* empty log message *

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