source: trunk/changelog@ 7563

Last change on this file since 7563 was 7563, checked in by sandervl, 24 years ago

* empty log message *

File size: 14.4 KB
Line 
1/* $Id: changelog,v 1.1887 2001-12-07 11:27:39 sandervl Exp $ */
2
3 2001-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o GetFileType for parallel port device returns FILE_TYPE_PIPE
5 (verified in NT4, SP6)
6 o Comm functions not valid for parallel port handles
7 o Overlapped IO & comm updates
8
9 2001-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
10 - KERNEL32: o Added FindFirstFileExA/FindFirstFileExW
11 o Overlapped IO updates (still untested)
12 - DINPUT: o Link with guidlib.lib
13 - GUIDLIB: o Include dinput.h for DirectInput GUIDs
14
15 2001-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
16 - KERNEL32: o Merged WriteFile & WriteFileEx, ReadFile & ReadFileEx
17 handle manager functions
18 o Removed dwType handle manager structure member; added
19 win32 handle to structure
20 (NOTE: All work in progress for new framework for overlapped IO)
21 o ReadFileEx/WriteFileEx: lpOverlapped->Offset & lpOverlapped->OffsetHigh
22 must be 0 if used with named pipes
23
24 2001-12-04: Patrick Haller <patrick.haller@innotek.de>
25 - KERNEL32: o parallel port support restricted to physical ports
26 (LAN redirections not supported)
27
28 2001-12-04: Sander van Leeuwen <sandervl@xs4all.nl>
29 - COMCTL32: o Hack added for proper resizing of wizard property sheet in
30 CVP. Not sure if it's always correct or whether it has a
31 bad effect on other apps (none found so far).
32 - WININET: o HttpSendRequestA fix: strlen(NULL) crashes
33
34 2001-12-03: Patrick Haller <patrick.haller@innotek.de>
35 - KERNEL32: o put in correct ioctl identifiers for parport support
36 in winioctl.h
37 o parallel port support (hardware configuration) enabled
38
39 2001-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
40 - KERNEL32: o Use DosSleep in Sleep (don't call WGSS)
41 o GetThreadPriority: return priority stored in TEB
42 o Rewrote SetThreadPriority; allow it to change priority
43 classes too. WGSS only changes delta in SetThreadPriority
44 and class in SetPriorityClass (but that one affects the whole
45 process, so it is rarely used by applications)
46 THREAD_PRIORITY_IDLE -> PRTYC_IDLETIME, 0
47 THREAD_PRIORITY_LOWEST -> PRTYC_REGULAR, PRTYD_MINIMUM
48 THREAD_PRIORITY_BELOW_NORMAL -> PRTYC_REGULAR, -15
49 THREAD_PRIORITY_NORMAL -> PRTYC_REGULAR, 0
50 THREAD_PRIORITY_ABOVE_NORMAL -> PRTYC_REGULAR, 15
51 THREAD_PRIORITY_HIGHEST -> PRTYC_REGULAR, PRTYD_MAXIMUM
52 THREAD_PRIORITY_TIME_CRITICAL -> PRTYC_TIMECRITICAL, 0
53 o SetPriorityClass; just return success for now
54
55 2001-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
56 - USER32: o Don't send WM_SIZE message to dialog before it receives
57 WM_INITDIALOG
58 (winzip 8.0 and Opera crash when sending this message too soon)
59 (TODO: check in NT if this is really correct)
60 - COMCTL32: o Restored old property sheet code as latest Wine version
61 causes too many new problems.
62
63 2001-12-01: knut st. osmundsen <kosmunds@csc.com>
64 - CRTDLL: o Include ctype.h from dir.c and string.c. (Noted by Ye][ow.)
65
66 2001-12-01: Sander van Leeuwen <sandervl@xs4all.nl>
67 - KERNEL32: o Fixed GetThreadTEB macro & GetCurrentThreadId
68 (completely broke debug build among other things)
69
70 2000-12-01: Yuri Dario <mc6530@mclink.it>
71 - USER32: o MENU_FindItem: extra check added for loops in menus
72
73 2001-11-30: Patrick Haller <patrick.haller@innotek.de>
74 - KERNEL32: o heapstring.cpp: improvement on HEAP_malloc, HEAP_free,
75 HEAP_realloc, HEAP_size
76 o acceleration on GetCurrentThreadId()
77 - SHELL32: o use HEAP_xxx functions for frequently called APIs
78 - ODINPROF: o Note: SET PROFILEHOOKS=1 before doing NMAKE PROFILE=1
79 This will enable the profiler in ODINCRTP.DLL
80 (use release build ODINPROF.DLL), generates (pid).prof
81 on process exit.
82 - * o fixed out-of-scope TRACE,FIXME,WARN macros
83
84 2001-11-30: Sander van Leeuwen <sandervl@xs4all.nl>
85 - USER32: o Changed menu hilite background to the color used by PM
86 (OS/2 look)
87 o DIALOG_IsAccelerator resync (Wine)
88 - KERNEL32: o Partly implemented PurgeComm
89 - * o Removed all the TRACE, FIXME & WARN redefinitions
90 (temporary hack for better logging; didn't affect the release
91 build anyway)
92 TODO: we need better logging in Wine code
93
94 2001-11-29: Patrick Haller <patrick.haller@innotek.de>
95 - KERNEL32: o Split dosdevice.cpp from stubs.cpp
96 (DefineDosDevice, QueryDosDevice)
97 o Fixed CDROM ioctls and disk access
98 (previous fix failed or cause possible regression)
99 - OLEAUT32: o olepicture.c: fixed null pointer exception
100 cause: our TRACE, FIXME, etc. debugtools macros all
101 go out of scope of a braceless if-statement before!
102 Therefore, we're getting false (error) messages or
103 even crashes. (to be fixed)
104
105 2001-11-29: Sander van Leeuwen <sandervl@xs4all.nl>
106 - COMCTL32: o Listview: invalidate entire item for ownerdraw control
107 (don't exclude report margin)
108 - KERNEL32: o Fixed disk access (yesterday's changes broke it)
109 - SHELL32: o Removed wrong call to ctordtorInit that caused the disk
110 access problems in the custom build.
111
112 2001-11-28: Patrick Haller <patrick.haller@innotek.de>
113 - KERNEL32: o fixes in ::CreateFile calls (return codes must be Win32)
114 o fixes in symbolic link management
115 o marked some important TBDs for phys. disk mgmt!
116 o fixed HMCOMM to accept (what a good idea)
117 \\.\COM1, COM1, COM1: but not "\\.\COM1:" (NT4SP6)
118 o added support for AUX->COM1, PRN->LPT1, CON->CONOUT$
119 o added NUL device
120
121 2001-11-28: Sander van Leeuwen <sandervl@xs4all.nl>
122 - KERNEL32: o WaitCommEvent fixes (must reset overlapped event semaphore &
123 store result of overlapped operation in parameter)
124 o Removed symbolic link for \\.\. Adding this is a very bad idea
125 as CreateFile calls for device driver will be routed to files.
126 Probably causes even more problems.
127 - INCLUDE: o winbase.h: CBR_xxxx definitions wrong
128
129 2001-11-27: Patrick Haller <patrick.haller@innotek.de>
130 - KERNEL32: o added \\.\ as standard symbolic link to the local namespace
131 This is the clean way for alternative device names,
132 local kludges in the device handlers should be avoided.
133 o fix in name resolver
134
135 2001-11-27: Sander van Leeuwen <sandervl@xs4all.nl>
136 - WSOCK32: o Missing FS wrapper macros added
137 - KERNEL32: o Accept \\.\COMx as name for COM ports
138 - USER32: o EnumChildWindow bugfix
139
140 2001-11-26: Sander van Leeuwen <sandervl@xs4all.nl>
141 - KERNEL32: o Implemented CancelIo & GetOverlappedResult for serial comm
142 o Preliminary work on overlapped IO for serial comm
143
144 2001-11-24: Sander van Leeuwen <sandervl@xs4all.nl>
145 - KERNEL32: o Custom build fix; check for double call for inittermKernel32
146 o More informative message when non-existing api is called.
147 Now displays dll + function name or ordinal.
148
149 2001-11-23: Patrick Haller <patrick.haller@innotek.de>
150 - KERNEL32: o minor work in parallel port support (ioctls)
151 o "Kernel Object Namespace" -> handlenames.cpp introduced
152 (yet inactive)
153
154 2001-11-23: knut st. osmundsen <kosmunds@csc.com>
155 - Misc. Makefiles: o Corrected the descriptions (on request from Ye][ow).
156
157 2001-11-22: Sander van Leeuwen <sandervl@xs4all.nl>
158 - KERNEL32: o Check volume label during IOCTL_DISK_GET_DRIVE_GEOMETRY to
159 see if the media has been changed or removed.
160 o Implemented WriteFile & GetFileType for disk handles
161 (write currently only allowed for drive A)
162 - DSOUND: o Renamed DllGetClassObject & DllCanUnloadNow to avoid name
163 conflicts in the custom build.
164
165 2001-11-22: Patrick Haller <patrick.haller@innotek.de>
166 - ODINPROF: o initial version
167 PROFILE images using ODINCRTP generate a <pid>.prof file
168 (the optimized release build of ODINPROF should be used)
169 No source code modification required.
170 Problem: mapsym seems to corrupt kernel32.sym
171 - KERNEL32: o additions to parallel port support
172
173 2001-11-21: knut st. osmundsen <kosmunds@csc.com>
174 - src/makefile:
175 o Added guidlib to NOTDLLS.
176
177 2001-11-21: Sander van Leeuwen <sandervl@xs4all.nl>
178 - COMCTL32: o Tooltips bugfixes (wrong pointer used to free memory)
179 - USER32: o GetMenu: check that window menu is indeed a menu and not an id
180 (fixes failed assertion in ZOC)
181 o Groupbox fix: if text changes; erase top border + old text
182
183 2001-11-20: Sander van Leeuwen <sandervl@xs4all.nl>
184 - USER32: o Destroy CD notification window during dll unload
185 o Focus fix for dialog windows
186 Experiments in NT4 show that dialogs that are children don't
187 receive focus. Not sure if this is always true. (couldn't
188 find any info about this in the SDK docs)
189
190 2001-11-19: Sander van Leeuwen <sandervl@xs4all.nl>
191 - GUIDLIB: o Library with all GUIDs used by Odin
192 - COMDLG32, OLE32, OLEAUT32, SHLWAPI, SHELL32:
193 o Removed guid source files and link with guidlib.lib
194
195 2001-11-18: Sander van Leeuwen <sandervl@xs4all.nl>
196 - WS2_32: o Compile fix
197 - OLEAUT32: o Don't include guid file in custom build library
198
199 2000-11-18: Yuri Dario <mc6530@mclink.it>
200 - USER32: o WM_SETTEXT (unicode) fix
201 (latest changes broke Opera among other things)
202
203 2001-11-16: Sander van Leeuwen <sandervl@xs4all.nl>
204 - COMCTL32: o LISTVIEW_UpdateScroll update (from old control)
205 - USER32: o Disallow nested calls to SetScrollRange. This is most likely
206 not the right fix, but it works so far without negative side
207 effects.
208 (fixes crash in CVP listview with 4+ items)
209 - GDI32: o Removed line draw speedup. If I have to choose between
210 a performance loss of a few clock cycles and a code size
211 increase of 2k, I prefer the 1st option.
212 - WSOCK32: o ODINWRAP changes break winsock. This code still depended
213 on FS save/restore. Now added a wrapper header for all
214 OS/2 socket functions.
215
216 2001-11-16: Patrick Haller <patrick.haller@innotek.de>
217 - ODINWRAP: o don't generate any frame procedure for RELEASE build
218 anymore (even no FS: wrapper (meanwhile superfluous))
219 -> significant performance gain for logged micro functions
220 - KERNEL32: o heap speedup (30%)
221 - GDI32: o minor line drawing speedup
222
223 2001-11-14: Patrick Haller <patrick.haller@innotek.de>
224 - KERNEL32: o fixed infinite loop in PE loader for corrupted or
225 misinterpreted PE images (Opera 6)
226 - OLEAUT32: o fixed Null pointer exception in VariantTimeToDosDate
227
228 2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
229 - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:
230 o Removed unnecessary string copy operation changes (heap -> stack)
231 Performance improvement is minimal at best and stack
232 corruption is MUCH harder to locate than heap corruption.
233
234 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
235 - fastdep: o IPF support.
236
237 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
238 - KERNEL32: o provided faster alternatives to HEAP_strdupXXX
239 ... which operate on stack only (STACK_strdupXXX)
240 This could slightly reduce heap pressure.
241 - USER32: o avoid unnecessary strcpy/strlen when get/setting window text
242
243 2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
244 - KERNEL32: o Added missing entry in debug log table for hmparport
245 (fixes crash in debug build with selective logging)
246 - GDI32: o CalcBitmapSize bugfix
247 o SetDIBitsToDevice workaround for bug in Matrox driver.
248 When blitting 32 bpp data, the GpiDrawBits call will
249 fail with an insufficient memory error. When that happens,
250 convert data to 24 bpp and try again.
251 (TODO: This can happen in more functions!!)
252 o Fixes for wrong bit masks in several functions (24 & 32 bpp)
253 o Refuse DeleteObject for DEFAULT_GUI_FONT handle
254
255 2001-11-12: Patrick Haller <patrick.haller@innotek.de>
256 - ODINWRAP: o improved thread call path tracking
257 (now collects i. e. HEAP_malloc->HeapAlloc paths)
258
259 2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
260 - USER32: o Fix for calculating font size for a dialog box
261
262 2001-11-11: knut st. osmundsen <kosmunds@csc.com>
263 - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.
264 (Build breaker. Seems like someone has an old toolkit...)
265
266 2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
267 - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask
268
269 2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
270 - COMCTL32: o Ported latest Wine property sheet control
271 (fixes some, but not all problems in CVP)
272
273 2001-11-08: Patrick Haller <patrick.haller@innotek.de>
274 - KERNEL32: o first shot at parport support
275
276 2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>
277 - USER32: o EndDialog fix for MFC dialog windows
278 o static control fix: SS_CENTERIMAGE means fill remainder
279 of client area with upper left pixel of bitmap
280 - KERNEL32: o Fix for applications that use CreateFile to open
281 a named pipe
282
283 2001-11-07: Patrick Haller <patrick.haller@innotek.de>
284 - WININET: o http, internet: WINE sync
285
286 2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
287 - KERNEL32: o Call old DosOpen if DosOpenL not available
288
Note: See TracBrowser for help on using the repository browser.