source: trunk/changelog@ 5374

Last change on this file since 5374 was 5374, checked in by sandervl, 25 years ago

* empty log message *

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