source: trunk/changelog@ 5422

Last change on this file since 5422 was 5422, checked in by sandervl, 25 years ago

* empty log message *

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