source: trunk/changelog@ 7615

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

* empty log message *

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