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