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