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