source: trunk/changelog@ 7536

Last change on this file since 7536 was 7536, checked in by phaller, 24 years ago

.

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