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