source: trunk/changelog@ 7470

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

* empty log message *

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