source: trunk/changelog@ 7460

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

* empty log message *

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