source: trunk/changelog@ 5377

Last change on this file since 5377 was 5375, checked in by mike, 25 years ago

Fixed keyboard input a little

File size: 6.9 KB
Line 
1/* $Id: changelog,v 1.1320 2001-03-25 20:06:12 mike Exp $ */
2
3 2001-03-25: Michal Necasek <michalnec@volny.cz>
4 - DINPUT: o Fixed keyboard handling. Now arrow keys should work right
5 on both numpad and the separate arrow block among other things.
6
7 2001-03-25: Sander van Leeuwen <sandervl@xs4all.nl>
8 - USER32: o If a static window has children, then we can't return HTTRANSPARENT
9 for WM_NCHITTEST. For some reason PM then sends all mouse messages
10 to the parent of the static window; even if they are intended
11 for the children of the static window.
12 TODO: This could break some win32 apps (parent not receiving mouse
13 message for static window (non-child) area)
14 Rewrite NCHITTEST handling. (don't use PM)
15 (fixes Roger Wilco config window input)
16 o Call GlobalAddAtomA/W in RegisterWindowMessageA/W
17 (don't use Open32)
18
19 2001-03-24: Sander van Leeuwen <sandervl@xs4all.nl>
20 - WINMM: o mmsystemGetVersion returned wrong version. Should be 0x030A.
21 (returned in NT4, SP6)
22 o Ported Wine's PlaySoundA/W, sndPlaySoundA/W
23 o Enabled DirectAudio interface code for wave playback
24 (available in upcoming SB Live driver version 0.70)
25 (works well with WinAmp 2.72)
26 - USER32: o GetAsyncKeyState implemented (calls Open32)
27
28 2001-03-23: Sander van Leeuwen <sandervl@xs4all.nl>
29 - WINMM: o Wrong calling convention for timer thread handler (os2timer.cpp)
30 o Preliminary code for DirectAudio wave playback (new audio
31 interface in the upcoming SB Live driver)
32 o Rewrote DART wave playback & recording classes
33 o Added support for more callback types (event, thread)
34 o Fixed wrong callback parameter (window callback) for waveIn/OutReset
35 Note: Untested code. Will be tested & fixed tomorrow.
36
37 2001-03-22: Sander van Leeuwen <sandervl@xs4all.nl>
38 - KERNEL32: o Ported Wine's GetBinaryTypeA/W
39 o Wrote assembly wrapper for thread handler calling to cope with
40 buggy applications that use the wrong calling convention for
41 thread handlers. (like @#$@#% PowerDVD)
42 (fixes crash in PowerDVD with release build of kernel32)
43
44 (should restore the mouse pointer after a game crashes)
45
46 2001-03-21: Sander van Leeuwen <sandervl@xs4all.nl>
47 - KERNEL32: o Added support for disabling logging for a specific thread
48 - WINMM: o Pause playback after underrun & restart it properly when
49 new buffers arrive.
50
51 2001-03-20: Michal Necasek <michalnec@volny.cz>
52 - include/DDRAW:
53 o Cleaned up so that it builds with Watcom. Still lots
54 of warnings and Watcom build doesn't seem to work right now.
55
56 2001-03-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
57 - Odin32Api:
58 o Added sample makefile (from the Generic SDK sample)
59 (Just remeber to rename the generic.rc to resource.orc.)
60
61 2001-03-20: Sander van Leeuwen <sandervl@xs4all.nl>
62 - DPLAYX: o Fix for nameless unions & VAC 3.6.5 (makefile)
63
64 2001-03-19: Sander van Leeuwen <sandervl@xs4all.nl>
65 - KERNEL32: o Fail properly when dll can't be found (pe loader)
66 - WINMM: o Do not pause wave stream after underrun. Stop it instead.
67 (writing audio buffers to a paused stream crashes MMPM2)
68 (fixes crash while playing movie in PowerDVD)
69 o Added level 2 logging support.
70 o Recording callback bugfix
71 o Several playback changes & fixes
72 o Do not use TIB selector of thread that issues waveOut/InOpen.
73 Instead query selector of main thread in DART callback thread.
74 (fixes crash in WinAmp when pressing stop; thread that opened
75 the playback stream is terminated before the stream is stopped)
76 - GDI32: o Check y inversion when resyncing dib section
77
78
79 2001-03-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
80 - Pe2Lx: o Convert CUI subsystem to VIO apps. CUI applications will
81 now work as executed thru pec.exe.
82 - Kernel32: o Init VIO Console for Pe2Lx CUI images.
83
84 2001-03-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
85 - tools/dailbuild:
86 o Added jade and DocBook to the environment.
87 - include/win32k.h:
88 o Defines OBJ_ANY on demand. (For use with DosAllocMemEx().)
89 - tools/fastdep:
90 o Ported to NT by faking the necessary OS/2 APIs.
91 Tested with Watcom C/C++ v11.0.
92 Makefile target: fastdepnt.exe
93
94 2001-03-14: Markus Montkowski <mmontkowski@gmx.de>
95 - DPLAYX: o Sync with latest WINE stuff
96 - include\win\dplay.h o Syncd with WINE
97 - include\win\dplobby.h o Syncd with WINE
98
99 2001-03-14: Bart van Leeuwen <Bart_van_Leeuwen@netage.nl>
100 - USER32: o Wrong setting of fErase in PAINTSTRUCT (BeginPaint)
101 (fixes background in CDRLabel)
102
103 2001-03-13: Sander van Leeuwen <sandervl@xs4all.nl>
104 - KERNEL32: o Removed include <builtin.h> from several files. (no longer necessary)
105 - KERNEL32/USER32/GDI32/Dllentry/SHELL32/WINMM/WSOCK32
106 o Dll entrypoint changes for Watcom
107 - USER32: o Set last error to ERROR_INVALID_WINDOW_HANDLE if application
108 passes invalid window handle to BeginPaint.
109 (verified in NT4, SP6)
110
111 2001-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
112 - KERNEL32: o Fix for SearchPathA with NULL parameter for output buffer
113 (reported by Ahti Heinla)
114 - USER32: o Fail if BeginPaint is called with NULL PAINTSTRUCT pointer
115 (verified in NT4, SP6)
116 - DDRAW/DSOUND:
117 o Removed #ifdef IBMCPP statements (moved into initdll.h).
118
119 2001-03-11: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
120 - Win32k, Pe2Lx, Elf2Lx, Xx2Lx:
121 o Made generic Xx2Lx util for both Pe2Lx and Elf2Lx
122 (and any future loaders).
123 Pe2Lx.exe is now named Xx2Lx.exe!
124 o Makefile fixes.
125 o Elf2Lx compiles (non-working dummy).
126 o Fixed vprint and vprintf16 to not skip multiple LF/CRs.
127
128 - Configure.cmd:
129 o Changed to configure Win32k as well. Re-run Configure.cmd!!!
130
131
132 2001-03-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
133 - Win32k: o Fixed trap in k32QuerySystemMemInfo when
134 VIRTUALADDRESSLIMIT=512.
135
136 2000-03-06: Michal Necasek <michalnec@volny.cz>
137 - include o More changes and fixes for Watcom
138
139 2001-03-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
140 - Win32k: o Fixed some 16-bit compiler problems.
141 o Fixed 4.51 toolkit problems.
142
Note: See TracBrowser for help on using the repository browser.