source: trunk/changelog@ 7676

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

* empty log message *

File size: 9.1 KB
Line 
1/* $Id: changelog,v 1.1923 2001-12-23 16:41:39 sandervl Exp $ */
2
3 2001-12-23: Sander van Leeuwen <sandervl@xs4all.nl>
4 - WINMM: o DisableWaveAudio function added to disable wave audio (custom build)
5 - GDI32: o CreateFont call wrong for DEFAULT_GUI_FONT (pointsize)
6
7 2001-12-22: Sander van Leeuwen <sandervl@xs4all.nl>
8 - KERNEL32: o Print more information when a missing api is called
9 (image that is responsible)
10
11 2001-12-20: Sander van Leeuwen <sandervl@xs4all.nl>
12 - KERNEL32: o Allow all sections to be accessed when loading an executable/dll
13 with LOAD_LIBRARY_AS_DATAFILE
14 (fixes crashes when accessing resources outside the resource
15 section in Opera 6 binaries)
16 - GDI32: o DIB Section blit: don't check source & destination sizes
17 with DC size (GpiDrawBits does that for us)
18 (fixes the two bitmaps in the opening window of Opera 6
19 (choice between MDI & SDI interface))
20 - USER32: o GetClassNameW: return size in characters and truncate name
21 if buffer not large enough
22 (fixes crash in Opera 6 during startup)
23
24 2001-12-19: knut st. osmundsen <kosmunds@csc.com>
25 - MAKEFILES:o Changed inference rules in /src/mesa/3dfx to support MULTIJOBS.
26 o Fixed some problems with /tools/cmdqd while MULTIJOBS is enabled.
27 - TOOLS: o Created a tiny preload script, PreloadTools.cmd, which preload
28 the tools which will be invoked during a make. (Too bad we can't
29 do this with rexx scripts too...)
30
31 2001-12-17: Sander van Leeuwen <sandervl@xs4all.nl>
32 - KERNEL32: o GetVolumeInformation changes:
33 - report JFS as NTFS
34 - report UDF & CDFS as UDF & CDFS (no change)
35 - report everthing else as FAT16
36 (some applications make assumptions about maximium file size
37 based on the volume name)
38
39 2001-12-16: Sander van Leeuwen <sandervl@xs4all.nl>
40 - USER32: o Fixed memory DC leak in DrawIcon & DrawIconEx
41
42 2001-12-15: Sander van Leeuwen <sandervl@xs4all.nl>
43 - GDI32: o Added statistics for font, bitmap, pen, brush & region objects.
44
45 2001-12-14: Sander van Leeuwen <sandervl@xs4all.nl>
46 - KERNEL32: o CancelIo & GetOverlappedResult added for custom device drivers
47 o Enabled overlapped IO for custom device drivers
48
49 2001-12-13: Sander van Leeuwen <sandervl@xs4all.nl>
50 - USER32: o Added function to override name of the PM keyboard hook dll
51 (custombuild)
52 - WINTRUST: o Added stub dll
53 - KERNEL32/USER32/ODINCRT:
54 o Collect some simple statistics about memory & DC usage
55 (will be extended & enhanced in the future)
56
57 2001-12-12: Sander van Leeuwen <sandervl@xs4all.nl>
58 - USER32: o Put back old windows key scancodes
59 o Fix for handling Alt-F4 in default window handler
60 o SendInput fix; send message and clear extra info
61 afterwards
62 - COMCTL32: o Comboex, rebar, tooltips, toolbar bugfixes: (Wine)
63 NEVER delete the font object received by WM_SETFONT
64
65 2001-12-11: Sander van Leeuwen <sandervl@xs4all.nl>
66 - USER32: o Swallow message if WH_KEYBOARD_LL hook returns TRUE
67 o Fixed windows key scancodes
68 o Do no generate a left control key message when Alt-Gr
69 is pressed (experimental change)
70
71 2001-12-11: Patrick Haller <patrick.haller@innotek.de>
72 - PMKBDHK: o Interception of PM Window Hoteys (i. e. Alt-F7)
73 TODO: generate accelerators in Odin
74
75 2001-12-10: Sander van Leeuwen <sandervl@xs4all.nl>
76 - KERNEL32: o Overlapped IO updates
77
78 2001-12-09: Sander van Leeuwen <sandervl@xs4all.nl>
79 - KERNEL32: o Overlapped IO fix (poll & half or full duplex support)
80 - MAKEFILES:o Delete dummy.c after copying custom library (CUSTOMBUILD=1)
81
82 2001-12-08: Sander van Leeuwen <sandervl@xs4all.nl>
83 - KERNEL32: o Added read & write functions to custom driver interface
84 o OdinSetVersion added to override windows version reported by
85 Odin (Win98, WinME, NT4, Win2000, WinXP)
86 o NEW DEFAULT WINDOWS VERSION IS WINDOWS 2000 SP2 (!)
87 o New versions available for odin.ini version override
88 [WinVersion]
89 Version=Win98 -> Windows 98
90 Version=WinME -> Windows ME
91 Version=NT4 -> Windows NT4 SP6
92 Version=Win2000 -> Windows 2000 SP2 (default)
93 Version=WinXP -> Windows XP
94 o IOCTL_STORAGE_GET_MEDIA_TYPES is identical to
95 IOCTL_DISK_GET_MEDIA_TYPES
96 o Support for Windows 2000 GetVersionEx extension (OSVERSIONINFOEX
97 structure) added
98 o Added symbolic link for Windows 2000 device driver names
99 \\.\Global -> \\.
100 o Clear GENERIC_WRITE flag if application tries to open
101 readonly device (e.g. cdrom). This is not allowed in OS/2.
102 - INSTALL: o Add font mapping for 'MS Shell Dlg 2' to WarpSans
103
104 2001-12-07: Sander van Leeuwen <sandervl@xs4all.nl>
105 - KERNEL32: o GetFileType for parallel port device returns FILE_TYPE_PIPE
106 (verified in NT4, SP6)
107 o Comm functions not valid for parallel port handles
108 o Overlapped IO updates
109 o Com port now uses new overlapped class for overlapped IO
110 o Call ExitProcess when executable entrypoint returns (LX images)
111 o Be careful when cleaning up threads after ExitProcess has
112 been called
113
114 2001-12-06: Sander van Leeuwen <sandervl@xs4all.nl>
115 - KERNEL32: o Added FindFirstFileExA/FindFirstFileExW
116 o Overlapped IO updates (still untested)
117 - DINPUT: o Link with guidlib.lib
118 - GUIDLIB: o Include dinput.h for DirectInput GUIDs
119
120 2001-12-05: Sander van Leeuwen <sandervl@xs4all.nl>
121 - KERNEL32: o Merged WriteFile & WriteFileEx, ReadFile & ReadFileEx
122 handle manager functions
123 o Removed dwType handle manager structure member; added
124 win32 handle to structure
125 (NOTE: All work in progress for new framework for overlapped IO)
126 o ReadFileEx/WriteFileEx: lpOverlapped->Offset & lpOverlapped->OffsetHigh
127 must be 0 if used with named pipes
128
129 2001-12-04: Patrick Haller <patrick.haller@innotek.de>
130 - KERNEL32: o parallel port support restricted to physical ports
131 (LAN redirections not supported)
132
133 2001-12-04: Sander van Leeuwen <sandervl@xs4all.nl>
134 - COMCTL32: o Hack added for proper resizing of wizard property sheet in
135 CVP. Not sure if it's always correct or whether it has a
136 bad effect on other apps (none found so far).
137 - WININET: o HttpSendRequestA fix: strlen(NULL) crashes
138
139 2001-12-03: Patrick Haller <patrick.haller@innotek.de>
140 - KERNEL32: o put in correct ioctl identifiers for parport support
141 in winioctl.h
142 o parallel port support (hardware configuration) enabled
143
144 2001-12-03: Sander van Leeuwen <sandervl@xs4all.nl>
145 - KERNEL32: o Use DosSleep in Sleep (don't call WGSS)
146 o GetThreadPriority: return priority stored in TEB
147 o Rewrote SetThreadPriority; allow it to change priority
148 classes too. WGSS only changes delta in SetThreadPriority
149 and class in SetPriorityClass (but that one affects the whole
150 process, so it is rarely used by applications)
151 THREAD_PRIORITY_IDLE -> PRTYC_IDLETIME, 0
152 THREAD_PRIORITY_LOWEST -> PRTYC_REGULAR, PRTYD_MINIMUM
153 THREAD_PRIORITY_BELOW_NORMAL -> PRTYC_REGULAR, -15
154 THREAD_PRIORITY_NORMAL -> PRTYC_REGULAR, 0
155 THREAD_PRIORITY_ABOVE_NORMAL -> PRTYC_REGULAR, 15
156 THREAD_PRIORITY_HIGHEST -> PRTYC_REGULAR, PRTYD_MAXIMUM
157 THREAD_PRIORITY_TIME_CRITICAL -> PRTYC_TIMECRITICAL, 0
158 o SetPriorityClass; just return success for now
159
160 2001-12-02: Sander van Leeuwen <sandervl@xs4all.nl>
161 - USER32: o Don't send WM_SIZE message to dialog before it receives
162 WM_INITDIALOG
163 (winzip 8.0 and Opera crash when sending this message too soon)
164 (TODO: check in NT if this is really correct)
165 - COMCTL32: o Restored old property sheet code as latest Wine version
166 causes too many new problems.
167
168 2001-12-01: knut st. osmundsen <kosmunds@csc.com>
169 - CRTDLL: o Include ctype.h from dir.c and string.c. (Noted by Ye][ow.)
170
171 2001-12-01: Sander van Leeuwen <sandervl@xs4all.nl>
172 - KERNEL32: o Fixed GetThreadTEB macro & GetCurrentThreadId
173 (completely broke debug build among other things)
174
175 2000-12-01: Yuri Dario <mc6530@mclink.it>
176 - USER32: o MENU_FindItem: extra check added for loops in menus
177
Note: See TracBrowser for help on using the repository browser.