source: trunk/changelog@ 5414

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

* empty log message *

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