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