source: trunk/changelog@ 7520

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

* empty log message *

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