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