source: trunk/changelog@ 4286

Last change on this file since 4286 was 4286, checked in by hugh, 25 years ago

COMport implementation

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