source: trunk/changelog@ 7498

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

* empty log message *

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