source: trunk/changelog@ 4306

Last change on this file since 4306 was 4306, checked in by bird, 25 years ago

* empty log message *

File size: 13.5 KB
Line 
1 /* $Id: changelog,v 1.1139 2000-09-22 09:19:58 bird Exp $ */
2
3 2000-09-22: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
4 - Win32k/Pe2Lx:
5 -Always apply all-in-one-object aligment fix. This will
6 solve lots of problems. (Hopefully temporary; I will explore
7 a VMAllocMem flag for VDMs which allows allocation of
8 pagealigned objects in the tiled arenas. The flag works
9 as expected but I get IPEs during process cleanup...)
10 -Corrected bug in applyFixups. Fixups was not applied when
11 the all-in-one-object aligment fix was applied.
12 -The problem with the build 14053 (testcase) kernels is solved.
13 ldrOpenPath have got an addition parameter. Symbols added
14 to the SymDB.
15 -Win32k.sys build now requires h2inc.exe is present in
16 the tools directory of the base DDK.
17 - KERNEL32: Changed Pe2Lx to use module address (address of the header
18 object) as hinstance. Some programs depends on this.
19
20 2000-09-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
21 - INCLUDE\makefiles: Made cleanrule omittable by defining NOCLEAN.
22 - Pe2Lx: Corrected/Made cleanrule.
23 - Win32k: New Microsoft C fix. Invokes it with no environment. Thanks goes to
24 Serge Sterck for this discovery. I hope it works out well.
25
26
27 2000-09-20: Markus Montkowski <mmontkowski@gmx.de>
28 - KERNEL32: Implemented COM-port APIs
29 Enhanced handlemanager to support device and handle data (for COM ports)
30 Added IOCTL to oslibdos
31 - INCLUDE\handlemanager.h os2win.h win32type.h: added COM definitions
32
33 2000-09-19: Michal Necasek <mike@mendelu.cz>
34 - INCLUDE\makefiles: disable C++ exception handling code generation (FS:0 changes)
35
36 2000-09-16: Sander van Leeuwen <sandervl@xs4all.nl>
37 - KERNEL32: Fixed matchModName bugs. (compare name without extension)
38 - WNASPI32: Restore win32 FS selector before calling post procedure
39
40 2000-09-16: David Raison <djr@lemur.co.uk>
41 - OLE32: Further updates from Wine
42 IMessageFilter stubs.
43 - OLEAUT32: Updates from Wine
44 ITypeComp stubs.
45
46 2000-09-16: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
47 - Tools\dbginfo: Solved DosCall1.DLL problem. Successfully creates HLL
48 HLL debuginfo from .SYM files and add it to LX files.
49
50 2000-09-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
51 - KERNEL32: Corrected logging for GetModuleFileNameA/W (a handle and
52 a string pointer was mixed - which proved fatal with
53 logging enabled).
54
55 2000-09-15: David Raison <djr@lemur.co.uk>
56 - OLE32: Updates from Wine
57
58 2000-09-15: Sander van Leeuwen <sandervl@xs4all.nl>
59 - WNASPI32: Open and initialize aspirout during dll load; doing this
60 for *every* aspi command is very inefficient.
61 Not possible to share aspirout now, but that could be fixed
62 later on.
63 - KERNEL32: Bug in recent exception handler changes; nested exception
64 are allowed to be dispatched to Odin's handlers. (PE loader
65 depends on it -> fixes crash in Lotus Notes)
66 Export WriteLogNoEOL
67
68 2000-09-14: Sander van Leeuwen <sandervl@xs4all.nl>
69 - WNASPI32: Fixed uninitialized variables in aspirout class
70 Fixed memory leaks (aspi object not deleted when something goes wrong)
71 - KERNEL32: Implemented IOCTL_SCSI_GET_ADDRESS (not perfect; only works
72 for cdrom/dvd drives and only the first one)
73
74 2000-09-13: Sander van Leeuwen <sandervl@xs4all.nl>
75 - KERNEL32: InitCommandLine corrupted the heap
76 Created HandleManager class for physical disks
77 - GDI32: StretchDIBits: Open32 always returns height of bitmap (regardless of how many
78 scanlines were copied); now corrected
79 - WNASPI32: Fixed FS corruption
80
81 2000-09-13: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
82 - KERNEL32: Added method matchModName to Win32ImageBase.
83 Used matchModName in LoadLibraryExA.
84 Documented and enhanced GetModuleFileNameA/W.
85 - Win32k: Display build time and date on verbose init.
86 Made sure build time and date is updated everytime
87 it's relinked.
88
89 2000-09-12: Sander van Leeuwen <sandervl@xs4all.nl>
90 - KERNEL32: GetCommandLine changes broke LX executable support. Fixed now.
91
92 2000-09-12: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
93 - KERNEL32: Rewrote GetCommandLineA/W. Don't depend on Open32 any longer.
94 The commandline strings are moved to global variables in
95 wprocess.cpp.
96 Added/extended some OSLib calls.
97
98 - Wink32: When invoking PE.EXE the first argument (Win32 exe name)
99 should be in quotes.
100 This is not yet corrected for the other invokers. (Scripts/Java).
101
102 2000-09-09: Sander van Leeuwen <sandervl@xs4all.nl>
103 - KERNEL32: Don't dispatch exceptions after application has called
104 ExitProcess. (fixes endless loop of exception handler calls
105 in RealPlayer 7)
106 Create more registry keys during installation:
107 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager
108 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce
109 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\App Paths\iexplore.exe
110 GetFileAttributesA trashes the stack (EBX register corrupted after return)
111 If CreateFile fails to duplicate the handle, then try DosDupHandle
112 (DuplicateHandle for memory mapped files in IE5)
113 Set dwCreation flag to OPEN_EXISTING for DuplicateHandle (memory mapped files)
114 - PE: Endless loop when it can't find executable with name in quotes
115
116 2000-09-08: Michal Necasek <mike@mendelu.cz>
117 - KERNEL32: Changes and fixes for exception handling (now dispatches
118 exceptions to win32 apps)
119
120 2000-09-08: Sander van Leeuwen <sandervl@xs4all.nl>
121 - KERNEL32: Implemented EnumResourceLanguagesA/W
122 Put back some code that was changed. (environ.cpp & heap.cpp)
123 - GDI32: Fixed FS bug in OSLibDeleteRegion
124 - USER32: Removed wrapper for GetWindow; not required
125
126 2000-09-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
127 - Win32k: Added last FP14 kernel to Symbol database.
128 Splitted extract.c from Probkrnl.c. Removed old debug
129 code from Probkrnl.c (Probkrnl.exe) - use win32ktst.exe
130 for Ring-3 testing now.
131 Added filehandle fix for MSC60a compiler. (fix don't work!)
132
133 2000-09-07: Patrick Haller <phaller@gmx.net>
134 - KERNEL32: Fixed some FS: bugs in time.cpp, environ.cpp, heap.cpp
135 Fixed language support from WINE sync
136 - GDI32: Fixed some FS: bug in DeleteObject(), DeleteDC()
137
138 2000-09-07: Sander van Leeuwen <sandervl@xs4all.nl>
139 - COMCTL32: TOOLBAR_SetBitmapSize & TOOLBAR_SetBitmapSize; do not return
140 FALSE when called after buttons have been created.
141 (failed assertions in MFC applications; this code is from
142 the latest Wine source tree)
143 - SHELL32: Merged more changes made by Christoph into new tree
144 - KERNEL32: InitDirectories must be called before InitializeTIB or else
145 a win.ini file is created in the root dir (InitializeTIB
146 loads ntdll which depends on user32)
147 (reported by Kai Sommerfeld)
148 - USER32: GetWindow was completely wrong. Didn't take Z-order into account.
149 Fixes MFC applications (missing controls + redraw problems)
150
151 2000-09-06: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
152 - install: Added Win32kCC.exe and kRx.EXE to the .wpi distributions.
153
154 2000-09-05: Sander van Leeuwen <sandervl@xs4all.nl>
155 - USER32: WM_PARENTNOTIFY during WM_CREATE was sent to the wrong window
156 WM_FOCUSCHANGE fix; set & kill focus were sent twice
157 Added more logging.
158 Activate window after resizing (WM_WINDOWPOSCHANGED in pmwindow.cpp)
159 - KERNEL32: Workaround for RegSetValueA; a call to this api in Netscape
160 fails with error 8 due to a 0 size of the key data
161 HMOpenFile fix; pHMHandleData->dwCreation must be set
162 to OPEN_EXISTING or else the memory map class will fail
163 to duplicate the handle.
164
165 2000-09-04: Sander van Leeuwen <sandervl@xs4all.nl>
166 - KERNEL32: GetDiskFreeSpaceExA: added support for 64 bits disk size
167 Rewrote GetDiskFreeSpace (no longer uses Open32)
168 - USER32: SetWindowLong GWL_WNDPROC changes/fixes
169 Type of SetWindowLong determines new window proc type
170 UNLESS the new window proc has already been registered
171 (use the old type in that case) (VERIFIED in NT 4, SP6)
172 Return original window procedure if types match (SetWindowLongX & proc type)
173 otherwise window proc wrapper.
174 Fixes wrong strings in Notes 5.0. (new string problems, but they
175 are caused by something else)
176 - COMCTL32: CreateUpDownControl was not exported correctly
177 (reported by Reinhold Kopper)
178
179 2000-09-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
180 - Win32k: Improved error reporting.
181 Corrected fatal bug in the QueryOptionsStatus IOCtl,
182 had forgotten three SSToDS()...
183
184 2000-09-04: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
185 - doc/readme.txt: Updated Win32k sections.
186 - Win32k: Fixed missing object in the 16-bit clib.lib which caused
187 linking of win32k.sys to fail in last daily build.
188 Support for comport 3 and 4.
189 - Win32kCC: Updated dialog to show all information provided by the
190 Win32k IOCtl interface.
191 - Include/HandleManager.h:
192 Added prototype for HMDeviceIoControl which Sander forgot.
193
194 2000-09-03: Patrick Haller <phaller@gmx.net>
195 - KERNEL32: NLS sync with WINE
196
197 2000-09-03: Sander van Leeuwen <sandervl@xs4all.nl>
198 - KERNEL32: More logging;
199 DeviceIoControl didn't have handlemanager wrapper
200 - GDI32: Missing wrapper for WinDrawTabbedText caused FS corruption.
201 PLEASE be more careful in the future!
202
203 2000-09-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
204 - Win32k: Finally. I've merged the new changes into the main branch.
205 The most important things are:
206 - More correct search order for DLLs. The differences are
207 now that _ALL_ DLLs are found using the Windows search
208 order, and that the LIBPATH are also searched (last).
209 - PE.EXE may be invoked by Win32k.sys.
210 Win32k.sys will now operate in three modes:
211 - Pe2Lx mode. Only the Pe2Lx method is used.
212 - Mixed Pe2Lx and Pe.exe mode. Pe.exe is invoked for
213 executables which Pe2Lx don't currently support.
214 (like WinWord, which BTW may trap you PC if invoked
215 in Pe2Lx mode.)
216 This is the default mode.
217 - Pe.exe mode. Pe.exe is allways used.
218 (see readme.txt, I'll update it to ASAP but not to night.
219 (I tired after working 36 hours on finishing this...)
220 - UNIX Shell Scripts are working (now).
221 - JAVA invokation. If you try to load a JAVA class the
222 it is executed using java.exe. (note that the class
223 name is case sensitive!)
224 - Pure REXX. This one is for Nenad. .RX and .REX are
225 loaded using a tiny REXX starter, kRX.exe (found in
226 System32 directory).
227 - Win32k Control Center, Win32kCC.EXE. Simple PM
228 program which allows you to change the Win32k.SYS
229 options while running. It does also show some status
230 information (will be extended).
231 - Support for FP14 in the Symbol database.
232 (use the 09th Aug. kernel please).
233
234 - KERNEL32: Speeded up loading by using Win32k.sys IOCtl to get
235 objecttable entries (OTE) for the Pe2Lx executable images,
236 instead of using DosQuerySysState (which gets OTEs for all
237 modules in the entrie system). (This is the reason for the
238 win32k.lib file - it's made by the 'libs' rule from src.)
239
240 2000-09-02: Sander van Leeuwen <sandervl@xs4all.nl>
241 - USER32: Rewrote IsZoomed
242 Removed winzip invisible button fix; causes many repaint
243 problems. Need to find the real cause.
244 - DDRAW: More debug logging; implemented ClipGetClipList
245 - WINMM: mixerGetID fix (for NULL hmixer)
246
247 2000-09-01: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
248 - INCLUDE: Shut up the OS/2 resource compiler (added -n to OS2RCFLAGS).
249 Added linkage macro for the OS2RC which exepacks the resource
250 object: OS2RCLFLAGS
251
252 2000-09-01: Patrick Haller <phaller@gmx.net>
253 - GDI32: - Open32 fix for CreateDIBitmap: some apps claim they have
254 a bitmap w/o palette color table and then send one in to copy.
255 - USER32: - PMWINDOW.CPP: WM_FOCUSCHANCE - validate GetTopParent() handle
256
Note: See TracBrowser for help on using the repository browser.