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