source: trunk/changelog@ 7462

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

* empty log message *

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