source: trunk/changelog@ 7540

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

* empty log message *

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