source: trunk/changelog@ 7766

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

* empty log message *

File size: 12.9 KB
Line 
1/* $Id: changelog,v 1.1948 2002-01-12 14:10:13 sandervl Exp $ */
2
3 2002-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o CreateFakeWindowEx change; need to specifiy window class
5 Added DestroyFakeWindow for deleting fake window object.
6 - KERNEL32: o Custom device driver changes for driver instance pointer
7
8 2002-01-09: knut st. osmundsen <bird@anduin.net>
9 - Tools/CmdQd:
10 o Corrected bad fix from 2002-01-01.
11
12 2002-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
13 - KERNEL32: o Add driver data parameter to custom device driver calls
14
15 2002-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
16 - KERNEL32: o Fixes for DosQueryAffinity & DosSetAffinity on non-SMP
17 systems (set default/ignore)
18 - USER32: o Fixed restoring of windows after minimizing/maximizing
19 o Allocate more memory for 40x40 icon generation
20 o Fixed SetClipboardData for CF_UNICODETEXT (translate to
21 ascii and use CF_TEXT)
22
23 2002-01-06: knut st. osmundsen <bird@anduin.net>
24 - DailyBuild:
25 o - Do not distribute odin.ini.
26
27 2002-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
28 - KERNEL32: o Changed HeapAlloc/HeapReAlloc:
29 - round up size to next 8 bytes boundary
30 - when reallocating memory block, don't use different
31 memory block unless new size is larger than old size
32 (rounded up to next 8 bytes boundary)
33 (Verified this behaviour in NT4 (Global/Heap(Re)Alloc);
34 fixes crashes in Opera 5.12 which relies on this 'feature')
35 - GDI32: o Print handle type name in SelectObject
36 o EnumFontProcExW -> must restore FS in enum handler
37
38 2002-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
39 - KERNEL32: o Rewrote GetDriveType (fixes detection of LAN drives)
40
41 2002-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
42 - GDI32: o Better logging for some text functions
43
44 2002-01-01: knut st. osmundsen <bird@anduin.net>
45 - Tools/CmdQd:
46 o Ignore the CmdQd kill returncode in clean2.
47
48 2001-12-31: Sander van Leeuwen <sandervl@xs4all.nl>
49 - GDI32: o Use critical section in dibsection class instead of vmutex
50
51 2001-12-31: knut st. osmundsen <bird@anduin.net>
52 - Tools/CmdQd:
53 o Corrected bad statement in the clean2 rule.
54
55 2001-12-30: Sander van Leeuwen <sandervl@xs4all.nl>
56 - KERNEL32: o Fixed some wrong return values for disk functions (hmdisk)
57 o GetVolumeInformation: use original volume name to
58 determine maximum file name length
59 - USER32: o Enforce WS_EX_WINDOWEDGE style (Wine)
60 (fixes Opera 6 menu)
61 - GDI32: o BitBlt, StretchBlt: sync dib section if selected into
62 destination HDC
63 (fixes Opera 6 background)
64
65 2001-12-28: Sander van Leeuwen <sandervl@xs4all.nl>
66 - USER32: o Do not send WM_SETCURSOR when mouse is captured (SDK docs)
67
68 2001-12-26: Achim Hasenmueller <achimha@innotek.de>
69 - USER32: o don't use hardcoded font height values for menu fonts. Query
70 graphics driver instead (DevQueryCaps) so that we correctly
71 take font settings into account (small, medium, large)
72
73 2001-12-26: Sander van Leeuwen <sandervl@xs4all.nl>
74 - USER32: o Use Wine version of DrawText(Ex)A/W
75 (fixes underscore painting & positioning of text)
76 o (Auto)Check, (Auto)Radio & (Auto)3State buttons send
77 WM_CTLCOLORSTATIC instead of WM_CTLCOLORBTN (verified in NT4)
78 (fixes opening dialog buttons in Opera 6 (choose interface))
79 o RedrawWindow change: call UpdateWindow if window has invalid
80 rectangle and RDW_UPDATENOW flag set
81 - GDI32: o Removed InternalDrawTextExA/W
82 - ODINBUG: o Update by Herwig Bauernfeind (0.5.5)
83
84 2001-12-23: Sander van Leeuwen <sandervl@xs4all.nl>
85 - WINMM: o DisableWaveAudio function added to disable wave audio (custom build)
86 - GDI32: o CreateFont call wrong for DEFAULT_GUI_FONT (pointsize)
87
88 2001-12-22: Sander van Leeuwen <sandervl@xs4all.nl>
89 - KERNEL32: o Print more information when a missing api is called
90 (image that is responsible)
91
92 2001-12-20: Sander van Leeuwen <sandervl@xs4all.nl>
93 - KERNEL32: o Allow all sections to be accessed when loading an executable/dll
94 with LOAD_LIBRARY_AS_DATAFILE
95 (fixes crashes when accessing resources outside the resource
96 section in Opera 6 binaries)
97 - GDI32: o DIB Section blit: don't check source & destination sizes
98 with DC size (GpiDrawBits does that for us)
99 (fixes the two bitmaps in the opening window of Opera 6
100 (choice between MDI & SDI interface))
101 - USER32: o GetClassNameW: return size in characters and truncate name
102 if buffer not large enough
103 (fixes crash in Opera 6 during startup)
104
105 2001-12-19: knut st. osmundsen <kosmunds@csc.com>
106 - MAKEFILES:o Changed inference rules in /src/mesa/3dfx to support MULTIJOBS.
107 o Fixed some problems with /tools/cmdqd while MULTIJOBS is enabled.
108 - TOOLS: o Created a tiny preload script, PreloadTools.cmd, which preload
109 the tools which will be invoked during a make. (Too bad we can't
110 do this with rexx scripts too...)
111
112 2001-12-17: Sander van Leeuwen <sandervl@xs4all.nl>
113 - KERNEL32: o GetVolumeInformation changes:
114 - report JFS as NTFS
115 - report UDF & CDFS as UDF & CDFS (no change)
116 - report everthing else as FAT16
117 (some applications make assumptions about maximium file size
118 based on the volume name)
119
120 2001-12-16: Sander van Leeuwen <sandervl@xs4all.nl>
121 - USER32: o Fixed memory DC leak in DrawIcon & DrawIconEx
122
123 2001-12-15: Sander van Leeuwen <sandervl@xs4all.nl>
124 - GDI32: o Added statistics for font, bitmap, pen, brush & region objects.
125
126 2001-12-14: Sander van Leeuwen <sandervl@xs4all.nl>
127 - KERNEL32: o CancelIo & GetOverlappedResult added for custom device drivers
128 o Enabled overlapped IO for custom device drivers
129
130 2001-12-13: Sander van Leeuwen <sandervl@xs4all.nl>
131 - USER32: o Added function to override name of the PM keyboard hook dll
132 (custombuild)
133 - WINTRUST: o Added stub dll
134 - KERNEL32/USER32/ODINCRT:
135 o Collect some simple statistics about memory & DC usage
136 (will be extended & enhanced in the future)
137
138 2001-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
139 - USER32: o Put back old windows key scancodes
140 o Fix for handling Alt-F4 in default window handler
141 o SendInput fix; send message and clear extra info
142 afterwards
143 - COMCTL32: o Comboex, rebar, tooltips, toolbar bugfixes: (Wine)
144 NEVER delete the font object received by WM_SETFONT
145
146 2001-12-11: Sander van Leeuwen <sandervl@xs4all.nl>
147 - USER32: o Swallow message if WH_KEYBOARD_LL hook returns TRUE
148 o Fixed windows key scancodes
149 o Do no generate a left control key message when Alt-Gr
150 is pressed (experimental change)
151
152 2001-12-11: Patrick Haller <patrick.haller@innotek.de>
153 - PMKBDHK: o Interception of PM Window Hoteys (i. e. Alt-F7)
154 TODO: generate accelerators in Odin
155
156 2001-12-10: Sander van Leeuwen <sandervl@xs4all.nl>
157 - KERNEL32: o Overlapped IO updates
158
159 2001-12-09: Sander van Leeuwen <sandervl@xs4all.nl>
160 - KERNEL32: o Overlapped IO fix (poll & half or full duplex support)
161 - MAKEFILES:o Delete dummy.c after copying custom library (CUSTOMBUILD=1)
162
163 2001-12-08: Sander van Leeuwen <sandervl@xs4all.nl>
164 - KERNEL32: o Added read & write functions to custom driver interface
165 o OdinSetVersion added to override windows version reported by
166 Odin (Win98, WinME, NT4, Win2000, WinXP)
167 o NEW DEFAULT WINDOWS VERSION IS WINDOWS 2000 SP2 (!)
168 o New versions available for odin.ini version override
169 [WinVersion]
170 Version=Win98 -> Windows 98
171 Version=WinME -> Windows ME
172 Version=NT4 -> Windows NT4 SP6
173 Version=Win2000 -> Windows 2000 SP2 (default)
174 Version=WinXP -> Windows XP
175 o IOCTL_STORAGE_GET_MEDIA_TYPES is identical to
176 IOCTL_DISK_GET_MEDIA_TYPES
177 o Support for Windows 2000 GetVersionEx extension (OSVERSIONINFOEX
178 structure) added
179 o Added symbolic link for Windows 2000 device driver names
180 \\.\Global -> \\.
181 o Clear GENERIC_WRITE flag if application tries to open
182 readonly device (e.g. cdrom). This is not allowed in OS/2.
183 - INSTALL: o Add font mapping for 'MS Shell Dlg 2' to WarpSans
184
185 2001-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
186 - KERNEL32: o GetFileType for parallel port device returns FILE_TYPE_PIPE
187 (verified in NT4, SP6)
188 o Comm functions not valid for parallel port handles
189 o Overlapped IO updates
190 o Com port now uses new overlapped class for overlapped IO
191 o Call ExitProcess when executable entrypoint returns (LX images)
192 o Be careful when cleaning up threads after ExitProcess has
193 been called
194
195 2001-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
196 - KERNEL32: o Added FindFirstFileExA/FindFirstFileExW
197 o Overlapped IO updates (still untested)
198 - DINPUT: o Link with guidlib.lib
199 - GUIDLIB: o Include dinput.h for DirectInput GUIDs
200
201 2001-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
202 - KERNEL32: o Merged WriteFile & WriteFileEx, ReadFile & ReadFileEx
203 handle manager functions
204 o Removed dwType handle manager structure member; added
205 win32 handle to structure
206 (NOTE: All work in progress for new framework for overlapped IO)
207 o ReadFileEx/WriteFileEx: lpOverlapped->Offset & lpOverlapped->OffsetHigh
208 must be 0 if used with named pipes
209
210 2001-12-04: Patrick Haller <patrick.haller@innotek.de>
211 - KERNEL32: o parallel port support restricted to physical ports
212 (LAN redirections not supported)
213
214 2001-12-04: Sander van Leeuwen <sandervl@xs4all.nl>
215 - COMCTL32: o Hack added for proper resizing of wizard property sheet in
216 CVP. Not sure if it's always correct or whether it has a
217 bad effect on other apps (none found so far).
218 - WININET: o HttpSendRequestA fix: strlen(NULL) crashes
219
220 2001-12-03: Patrick Haller <patrick.haller@innotek.de>
221 - KERNEL32: o put in correct ioctl identifiers for parport support
222 in winioctl.h
223 o parallel port support (hardware configuration) enabled
224
225 2001-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
226 - KERNEL32: o Use DosSleep in Sleep (don't call WGSS)
227 o GetThreadPriority: return priority stored in TEB
228 o Rewrote SetThreadPriority; allow it to change priority
229 classes too. WGSS only changes delta in SetThreadPriority
230 and class in SetPriorityClass (but that one affects the whole
231 process, so it is rarely used by applications)
232 THREAD_PRIORITY_IDLE -> PRTYC_IDLETIME, 0
233 THREAD_PRIORITY_LOWEST -> PRTYC_REGULAR, PRTYD_MINIMUM
234 THREAD_PRIORITY_BELOW_NORMAL -> PRTYC_REGULAR, -15
235 THREAD_PRIORITY_NORMAL -> PRTYC_REGULAR, 0
236 THREAD_PRIORITY_ABOVE_NORMAL -> PRTYC_REGULAR, 15
237 THREAD_PRIORITY_HIGHEST -> PRTYC_REGULAR, PRTYD_MAXIMUM
238 THREAD_PRIORITY_TIME_CRITICAL -> PRTYC_TIMECRITICAL, 0
239 o SetPriorityClass; just return success for now
240
241 2001-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
242 - USER32: o Don't send WM_SIZE message to dialog before it receives
243 WM_INITDIALOG
244 (winzip 8.0 and Opera crash when sending this message too soon)
245 (TODO: check in NT if this is really correct)
246 - COMCTL32: o Restored old property sheet code as latest Wine version
247 causes too many new problems.
248
249 2001-12-01: knut st. osmundsen <kosmunds@csc.com>
250 - CRTDLL: o Include ctype.h from dir.c and string.c. (Noted by Ye][ow.)
251
252 2001-12-01: Sander van Leeuwen <sandervl@xs4all.nl>
253 - KERNEL32: o Fixed GetThreadTEB macro & GetCurrentThreadId
254 (completely broke debug build among other things)
255
256 2000-12-01: Yuri Dario <mc6530@mclink.it>
257 - USER32: o MENU_FindItem: extra check added for loops in menus
258
Note: See TracBrowser for help on using the repository browser.