source: trunk/changelog@ 7619

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

* empty log message *

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