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