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