source: trunk/changelog@ 5148

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

* empty log message *

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