source: trunk/changelog@ 7450

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

* empty log message *

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