source: trunk/changelog@ 5396

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

* empty log message *

File size: 9.4 KB
RevLine 
[5396]1/* $Id: changelog,v 1.1327 2001-03-29 17:38:55 sandervl Exp $ */
[5313]2
[5396]3 2001-03-29: Sander van Leeuwen <sandervl@xs4all.nl>
4 - KERNEL32: o CreateFile (disk): disable error popus. NT allows an app to
5 open a cdrom/dvd drive without a disk inside.
6 OS/2 fails in that case with error ERROR_NOT_READY
7 Ignore that error and return success.
8 (removes annoying popups when starting windvd without DVD
9 disk in drive)
10
[5394]11 2001-03-28: Sander van Leeuwen <sandervl@xs4all.nl>
12 - KERNEL32: o GetSystemPowerStatus fix; SYSTEM_POWER_STATUS structure
13 definition was wrong.
14 (fixes crash in WinDVD)
15 o Added translation for ERROR_NOT_READY to error2WinError
16 - DDRAW: o Return proper error code for unsupported FOURCC surface
17 creation
18
[5389]19 2001-03-27: Sander van Leeuwen <sandervl@xs4all.nl>
[5384]20 - USER32: o Rewrote cursor handling. No longer use Open32, but convert
21 cursor to OS/2 format during creation.
22 (also fixes crash during WinDVD startup)
23 o Ported Wine's cursor/icon cache code. Odin no longer
[5389]24 leaks memory when apps reload icons/cursors.
25 o Check for DIB section selection in ReleaseDC and unselect it.
26 (only for non-CS_OWNDC hdcs)
[5384]27 - KERNEL32: o Removed cursor & cursor group conversion code
[5389]28 - GDI32: o SelectObject fixes for DIB sections
29 o Check for DIB section selection in DeleteDC and unselect it.
30 (fixes crash in WinDVD)
[5384]31
32 2001-03-27: Michal Necasek <michalnec@volny.cz>
33 - OPENGL: o Less stict parameter checking in wglSetPixelFormat
34 (fixes the game Hitman)
35
[5375]36 2001-03-25: Michal Necasek <michalnec@volny.cz>
[5378]37 - KERNEL32: o Turn off all optimizations for exceptions.cpp in release build (!)
[5381]38 - DINPUT/USER32:
39 o Fixed keyboard handling. Now arrow keys should work right
[5375]40 on both numpad and the separate arrow block among other things.
41
[5374]42 2001-03-25: Sander van Leeuwen <sandervl@xs4all.nl>
43 - USER32: o If a static window has children, then we can't return HTTRANSPARENT
[5378]44 for WM_NCHITTEST. For some reason PM then sends all mouse messages
45 to the parent of the static window; even if they are intended
[5374]46 for the children of the static window.
47 TODO: This could break some win32 apps (parent not receiving mouse
48 message for static window (non-child) area)
49 Rewrite NCHITTEST handling. (don't use PM)
50 (fixes Roger Wilco config window input)
51 o Call GlobalAddAtomA/W in RegisterWindowMessageA/W
52 (don't use Open32)
[5379]53 - KERNEL32: o OSLibStripPath bugfix (wrong comparison if path contains
54 both back- and forward slashes)
[5374]55
[5365]56 2001-03-24: Sander van Leeuwen <sandervl@xs4all.nl>
57 - WINMM: o mmsystemGetVersion returned wrong version. Should be 0x030A.
[5370]58 (returned in NT4, SP6)
[5365]59 o Ported Wine's PlaySoundA/W, sndPlaySoundA/W
[5370]60 o Enabled DirectAudio interface code for wave playback
61 (available in upcoming SB Live driver version 0.70)
62 (works well with WinAmp 2.72)
63 - USER32: o GetAsyncKeyState implemented (calls Open32)
[5365]64
[5361]65 2001-03-23: Sander van Leeuwen <sandervl@xs4all.nl>
66 - WINMM: o Wrong calling convention for timer thread handler (os2timer.cpp)
67 o Preliminary code for DirectAudio wave playback (new audio
68 interface in the upcoming SB Live driver)
69 o Rewrote DART wave playback & recording classes
70 o Added support for more callback types (event, thread)
71 o Fixed wrong callback parameter (window callback) for waveIn/OutReset
72 Note: Untested code. Will be tested & fixed tomorrow.
73
[5352]74 2001-03-22: Sander van Leeuwen <sandervl@xs4all.nl>
75 - KERNEL32: o Ported Wine's GetBinaryTypeA/W
76 o Wrote assembly wrapper for thread handler calling to cope with
77 buggy applications that use the wrong calling convention for
78 thread handlers. (like @#$@#% PowerDVD)
79 (fixes crash in PowerDVD with release build of kernel32)
80
[5378]81 2001-03-22: Michal Necasek <michalnec@volny.cz>
82 - USER32: o Show the mouse pointer in the exitlist handler of user32.
[5352]83 (should restore the mouse pointer after a game crashes)
84
[5350]85 2001-03-21: Sander van Leeuwen <sandervl@xs4all.nl>
86 - KERNEL32: o Added support for disabling logging for a specific thread
87 - WINMM: o Pause playback after underrun & restart it properly when
88 new buffers arrive.
89
[5344]90 2001-03-20: Michal Necasek <michalnec@volny.cz>
91 - include/DDRAW:
92 o Cleaned up so that it builds with Watcom. Still lots
93 of warnings and Watcom build doesn't seem to work right now.
94
[5343]95 2001-03-21: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
96 - Odin32Api:
[5350]97 o Added sample makefile (from the Generic SDK sample)
[5343]98 (Just remeber to rename the generic.rc to resource.orc.)
99
[5339]100 2001-03-20: Sander van Leeuwen <sandervl@xs4all.nl>
101 - DPLAYX: o Fix for nameless unions & VAC 3.6.5 (makefile)
102
[5337]103 2001-03-19: Sander van Leeuwen <sandervl@xs4all.nl>
104 - KERNEL32: o Fail properly when dll can't be found (pe loader)
105 - WINMM: o Do not pause wave stream after underrun. Stop it instead.
106 (writing audio buffers to a paused stream crashes MMPM2)
107 (fixes crash while playing movie in PowerDVD)
108 o Added level 2 logging support.
109 o Recording callback bugfix
110 o Several playback changes & fixes
111 o Do not use TIB selector of thread that issues waveOut/InOpen.
112 Instead query selector of main thread in DART callback thread.
113 (fixes crash in WinAmp when pressing stop; thread that opened
114 the playback stream is terminated before the stream is stopped)
115 - GDI32: o Check y inversion when resyncing dib section
116
[5331]117
[5329]118 2001-03-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
119 - Pe2Lx: o Convert CUI subsystem to VIO apps. CUI applications will
120 now work as executed thru pec.exe.
121 - Kernel32: o Init VIO Console for Pe2Lx CUI images.
122
[5378]123 [DirectDraw]
124 Fullscreen=[True|False|0|1]
125
126 Don't blame me if your machine goes up in smoke after you've
127 turned fullscreen on ;-)
128 Note: It seems that fullscreen currently doesn't work right
129 with newer SDD releases for 8bpp apps, though 16/24/32bpp
130 should be OK (palette setting problems)
131
[5320]132 2001-03-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
133 - tools/dailbuild:
134 o Added jade and DocBook to the environment.
135 - include/win32k.h:
136 o Defines OBJ_ANY on demand. (For use with DosAllocMemEx().)
137 - tools/fastdep:
138 o Ported to NT by faking the necessary OS/2 APIs.
139 Tested with Watcom C/C++ v11.0.
140 Makefile target: fastdepnt.exe
141
[5312]142 2001-03-14: Markus Montkowski <mmontkowski@gmx.de>
143 - DPLAYX: o Sync with latest WINE stuff
144 - include\win\dplay.h o Syncd with WINE
145 - include\win\dplobby.h o Syncd with WINE
[5285]146
[5313]147 2001-03-14: Bart van Leeuwen <Bart_van_Leeuwen@netage.nl>
148 - USER32: o Wrong setting of fErase in PAINTSTRUCT (BeginPaint)
149 (fixes background in CDRLabel)
150
[5306]151 2001-03-13: Sander van Leeuwen <sandervl@xs4all.nl>
152 - KERNEL32: o Removed include <builtin.h> from several files. (no longer necessary)
153 - KERNEL32/USER32/GDI32/Dllentry/SHELL32/WINMM/WSOCK32
154 o Dll entrypoint changes for Watcom
155 - USER32: o Set last error to ERROR_INVALID_WINDOW_HANDLE if application
156 passes invalid window handle to BeginPaint.
157 (verified in NT4, SP6)
158
[5301]159 2001-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
160 - KERNEL32: o Fix for SearchPathA with NULL parameter for output buffer
161 (reported by Ahti Heinla)
[5304]162 - USER32: o Fail if BeginPaint is called with NULL PAINTSTRUCT pointer
[5301]163 (verified in NT4, SP6)
[5304]164 - DDRAW/DSOUND:
165 o Removed #ifdef IBMCPP statements (moved into initdll.h).
[5301]166
[5300]167 2001-03-11: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
168 - Win32k, Pe2Lx, Elf2Lx, Xx2Lx:
169 o Made generic Xx2Lx util for both Pe2Lx and Elf2Lx
170 (and any future loaders).
171 Pe2Lx.exe is now named Xx2Lx.exe!
172 o Makefile fixes.
173 o Elf2Lx compiles (non-working dummy).
174 o Fixed vprint and vprintf16 to not skip multiple LF/CRs.
175
176 - Configure.cmd:
177 o Changed to configure Win32k as well. Re-run Configure.cmd!!!
178
[5291]179
[5290]180 2001-03-07: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
181 - Win32k: o Fixed trap in k32QuerySystemMemInfo when
182 VIRTUALADDRESSLIMIT=512.
183
[5285]184 2000-03-06: Michal Necasek <michalnec@volny.cz>
[5288]185 - include o More changes and fixes for Watcom
186
[5284]187 2001-03-02: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
188 - Win32k: o Fixed some 16-bit compiler problems.
[5285]189 o Fixed 4.51 toolkit problems.
[4454]190
Note: See TracBrowser for help on using the repository browser.