source: trunk/changelog@ 7486

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

* empty log message *

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