source: trunk/changelog@ 7477

Last change on this file since 7477 was 7477, checked in by phaller, 24 years ago

.

File size: 8.7 KB
Line 
1/* $Id: changelog,v 1.1861 2001-11-29 00:23:01 phaller Exp $ */
2
3 2001-11-28: Patrick Haller <patrick.haller@innotek.de>
4 - KERNEL32: o fixes in ::CreateFile calls (return codes must be Win32)
5 o fixes in symbolic link management
6 o marked some important TBDs for phys. disk mgmt!
7 o fixed HMCOMM to accept (what a good idea)
8 \\.\COM1, COM1, COM1: but not "\\.\COM1:" (NT4SP6)
9 o added support for AUX->COM1, PRN->LPT1, CON->CONOUT$
10 o added NUL device
11
12 2001-11-28: Sander van Leeuwen <sandervl@xs4all.nl>
13 - KERNEL32: o WaitCommEvent fixes (must reset overlapped event semaphore &
14 store result of overlapped operation in parameter)
15 o Removed symbolic link for \\.\. Adding this is a very bad idea
16 as CreateFile calls for device driver will be routed to files.
17 Probably causes even more problems.
18 - INCLUDE: o winbase.h: CBR_xxxx definitions wrong
19
20 2001-11-27: Patrick Haller <patrick.haller@innotek.de>
21 - KERNEL32: o added \\.\ as standard symbolic link to the local namespace
22 This is the clean way for alternative device names,
23 local kludges in the device handlers should be avoided.
24 o fix in name resolver
25
26 2001-11-27: Sander van Leeuwen <sandervl@xs4all.nl>
27 - WSOCK32: o Missing FS wrapper macros added
28 - KERNEL32: o Accept \\.\COMx as name for COM ports
29 - USER32: o EnumChildWindow bugfix
30
31 2001-11-26: Sander van Leeuwen <sandervl@xs4all.nl>
32 - KERNEL32: o Implemented CancelIo & GetOverlappedResult for serial comm
33 o Preliminary work on overlapped IO for serial comm
34
35 2001-11-24: Sander van Leeuwen <sandervl@xs4all.nl>
36 - KERNEL32: o Custom build fix; check for double call for inittermKernel32
37 o More informative message when non-existing api is called.
38 Now displays dll + function name or ordinal.
39
40 2001-11-23: Patrick Haller <patrick.haller@innotek.de>
41 - KERNEL32: o minor work in parallel port support (ioctls)
42 o "Kernel Object Namespace" -> handlenames.cpp introduced
43 (yet inactive)
44
45 2001-11-23: knut st. osmundsen <kosmunds@csc.com>
46 - Misc. Makefiles: o Corrected the descriptions (on request from Ye][ow).
47
48 2001-11-22: Sander van Leeuwen <sandervl@xs4all.nl>
49 - KERNEL32: o Check volume label during IOCTL_DISK_GET_DRIVE_GEOMETRY to
50 see if the media has been changed or removed.
51 o Implemented WriteFile & GetFileType for disk handles
52 (write currently only allowed for drive A)
53 - DSOUND: o Renamed DllGetClassObject & DllCanUnloadNow to avoid name
54 conflicts in the custom build.
55
56 2001-11-22: Patrick Haller <patrick.haller@innotek.de>
57 - ODINPROF: o initial version
58 PROFILE images using ODINCRTP generate a <pid>.prof file
59 (the optimized release build of ODINPROF should be used)
60 No source code modification required.
61 Problem: mapsym seems to corrupt kernel32.sym
62 - KERNEL32: o additions to parallel port support
63
64 2001-11-21: knut st. osmundsen <kosmunds@csc.com>
65 - src/makefile:
66 o Added guidlib to NOTDLLS.
67
68 2001-11-21: Sander van Leeuwen <sandervl@xs4all.nl>
69 - COMCTL32: o Tooltips bugfixes (wrong pointer used to free memory)
70 - USER32: o GetMenu: check that window menu is indeed a menu and not an id
71 (fixes failed assertion in ZOC)
72 o Groupbox fix: if text changes; erase top border + old text
73
74 2001-11-20: Sander van Leeuwen <sandervl@xs4all.nl>
75 - USER32: o Destroy CD notification window during dll unload
76 o Focus fix for dialog windows
77 Experiments in NT4 show that dialogs that are children don't
78 receive focus. Not sure if this is always true. (couldn't
79 find any info about this in the SDK docs)
80
81 2001-11-19: Sander van Leeuwen <sandervl@xs4all.nl>
82 - GUIDLIB: o Library with all GUIDs used by Odin
83 - COMDLG32, OLE32, OLEAUT32, SHLWAPI, SHELL32:
84 o Removed guid source files and link with guidlib.lib
85
86 2001-11-18: Sander van Leeuwen <sandervl@xs4all.nl>
87 - WS2_32: o Compile fix
88 - OLEAUT32: o Don't include guid file in custom build library
89
90 2000-11-18: Yuri Dario <mc6530@mclink.it>
91 - USER32: o WM_SETTEXT (unicode) fix
92 (latest changes broke Opera among other things)
93
94 2001-11-16: Sander van Leeuwen <sandervl@xs4all.nl>
95 - COMCTL32: o LISTVIEW_UpdateScroll update (from old control)
96 - USER32: o Disallow nested calls to SetScrollRange. This is most likely
97 not the right fix, but it works so far without negative side
98 effects.
99 (fixes crash in CVP listview with 4+ items)
100 - GDI32: o Removed line draw speedup. If I have to choose between
101 a performance loss of a few clock cycles and a code size
102 increase of 2k, I prefer the 1st option.
103 - WSOCK32: o ODINWRAP changes break winsock. This code still depended
104 on FS save/restore. Now added a wrapper header for all
105 OS/2 socket functions.
106
107 2001-11-16: Patrick Haller <patrick.haller@innotek.de>
108 - ODINWRAP: o don't generate any frame procedure for RELEASE build
109 anymore (even no FS: wrapper (meanwhile superfluous))
110 -> significant performance gain for logged micro functions
111 - KERNEL32: o heap speedup (30%)
112 - GDI32: o minor line drawing speedup
113
114 2001-11-14: Patrick Haller <patrick.haller@innotek.de>
115 - KERNEL32: o fixed infinite loop in PE loader for corrupted or
116 misinterpreted PE images (Opera 6)
117 - OLEAUT32: o fixed Null pointer exception in VariantTimeToDosDate
118
119 2001-11-14: Sander van Leeuwen <sandervl@xs4all.nl>
120 - KERNEL32, USER32, COMCTL32, SHELL32, OLE32:
121 o Removed unnecessary string copy operation changes (heap -> stack)
122 Performance improvement is minimal at best and stack
123 corruption is MUCH harder to locate than heap corruption.
124
125 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
126 - fastdep: o IPF support.
127
128 2001-11-13: Patrick Haller <patrick.haller@innotek.de>
129 - KERNEL32: o provided faster alternatives to HEAP_strdupXXX
130 ... which operate on stack only (STACK_strdupXXX)
131 This could slightly reduce heap pressure.
132 - USER32: o avoid unnecessary strcpy/strlen when get/setting window text
133
134 2001-11-13: Sander van Leeuwen <sandervl@xs4all.nl>
135 - KERNEL32: o Added missing entry in debug log table for hmparport
136 (fixes crash in debug build with selective logging)
137 - GDI32: o CalcBitmapSize bugfix
138 o SetDIBitsToDevice workaround for bug in Matrox driver.
139 When blitting 32 bpp data, the GpiDrawBits call will
140 fail with an insufficient memory error. When that happens,
141 convert data to 24 bpp and try again.
142 (TODO: This can happen in more functions!!)
143 o Fixes for wrong bit masks in several functions (24 & 32 bpp)
144 o Refuse DeleteObject for DEFAULT_GUI_FONT handle
145
146 2001-11-12: Patrick Haller <patrick.haller@innotek.de>
147 - ODINWRAP: o improved thread call path tracking
148 (now collects i. e. HEAP_malloc->HeapAlloc paths)
149
150 2001-11-12: Sander van Leeuwen <sandervl@xs4all.nl>
151 - USER32: o Fix for calculating font size for a dialog box
152
153 2001-11-11: knut st. osmundsen <kosmunds@csc.com>
154 - KERNEL32: o Only declare OS/2 AFFINITY stuff if it isn't there.
155 (Build breaker. Seems like someone has an old toolkit...)
156
157 2001-11-10: Sander van Leeuwen <sandervl@xs4all.nl>
158 - KERNEL32: o Implemented Get/SetProcessAffinityMask & SetThreadAffinityMask
159
160 2001-11-08: Sander van Leeuwen <sandervl@xs4all.nl>
161 - COMCTL32: o Ported latest Wine property sheet control
162 (fixes some, but not all problems in CVP)
163
164 2001-11-08: Patrick Haller <patrick.haller@innotek.de>
165 - KERNEL32: o first shot at parport support
166
167 2001-11-07: Sander van Leeuwen <sandervl@xs4all.nl>
168 - USER32: o EndDialog fix for MFC dialog windows
169 o static control fix: SS_CENTERIMAGE means fill remainder
170 of client area with upper left pixel of bitmap
171 - KERNEL32: o Fix for applications that use CreateFile to open
172 a named pipe
173
174 2001-11-07: Patrick Haller <patrick.haller@innotek.de>
175 - WININET: o http, internet: WINE sync
176
177 2001-11-05: Sander van Leeuwen <sandervl@xs4all.nl>
178 - KERNEL32: o Call old DosOpen if DosOpenL not available
179
Note: See TracBrowser for help on using the repository browser.