source: trunk/changelog@ 7638

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

* empty log message *

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