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