source: trunk/changelog@ 7507

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

* empty log message *

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