source: trunk/changelog@ 3141

Last change on this file since 3141 was 3141, checked in by sandervl, 26 years ago

* empty log message *

File size: 16.3 KB
Line 
1 /* $Id: changelog,v 1.813 2000-03-17 16:13:07 sandervl Exp $ */
2
3 2000-03-17: Sander van Leeuwen <sandervl@xs4all.nl>
4 - WSOCK32: Semaphore protection for relay slot alloc/free
5 Fixed bug in WSAAsyncSelect. Allow more than one
6 async call per window for RelayAlloc call. If it's not
7 alloced, pmwsock will return an error. Previously it was
8 overwriting slots for other async calls. (WSAAsyncGetHostName
9 in RealPlayer 7)
10 - KERNEL32: Fixed handle creation for thread 0.
11
12 2000-03-16: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
13 - TOOLS\FASTDEP:
14 Speed optimizations: using AVL trees, include dir caching,
15 dependencies stored in AVL tree until all files has been
16 processes, buffered write.
17 Cyclic dependency check.
18 All files but the objectfiles now should have fully qualified paths.
19
20 - INCLUDE\PDWIN32.TOOLS:
21 DEPEND: Enabled cyclic check.
22
23 2000-03-16: Sander van Leeuwen <sandervl@xs4all.nl>
24 - USER32: Fixed virtual keycode of return key
25 TODO: Not done for all keys. Should probably looks at the
26 scancode (not virtual char) to translate keys.
27 - GDI32: RP7 calls CreateDIBSection with HDC 0; Call
28 GetWindowDC(GetDesktopWindow()) in that case
29 -> fixes crash (result of CreateDIBSection failure)
30 TODO: Looks like this is allowed in NT, but need to check
31 this to be sure nothing else caused this problem.
32 (Note: most recent RealPlayer 7 version only)
33 - KERNEL32: Semaphore protection of handle alloc
34 Added handlemanager class for thread handles
35 Added workaround for Open32 WaitForSingleObject bug
36 (if thread is terminated and WaitForSingleObject is
37 called with the thread's handle -> never returns
38 (new rp7 hang at exit))
39 TODO: WaitForMultipleObjects can still hang ->
40 Event, semaphore, mutex & wait apis need to
41 be redesigned (not using Open32)
42
43 2000-03-14: Christoph Bratschi <cbratschi@datacomm.ch>
44 - USER32: implemented much faster LB_SETCOUNT
45
46 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
47 - USER32: Put back check (oldsel == newsel) in LISTBOX_SetSelection
48 (why was this commented out?)
49 Fixed combobox: Clear CBF_SELCHANGE flag before calling
50 CBUpdateEdit
51 Don't send CBN_EDITUPDATE when CBF_NOEDITNOTIFY
52 flag is set (by combo_handletext)
53 -> fixes infinite loops in RealPlayer 7 (type name of file
54 previously used in edit box; last letter entered -> crash)
55 AdjustWindowRectEx bugfix (reported by Robert Lalla)
56 Don't clear WS_POPUP flag. (HAS_THINFRAME depends on it)
57 -> fixes wrong resolution changes in Quake 2
58 Don't clear WS_CHILD flag either. (HAS_THICKFRAME depends on it)
59
60 - KERNEL32: Clear FILE_SHARE_DELETE flag before calling Open32's
61 CreateFile. (otherwise it fails) -> fixes RealPlayer 7
62 Basic (new update).
63
64 - WSOCK32: Changed workaround for setsockopt bug (SO_SNDBUF/SO_RCVBUF (OS/2's
65 winsock returns WSAEINVAL if size > 64k))
66 Only change size if setsockopt returns WSAINVAL (32 bits stack
67 should support size > 64 kb (?))
68 Added selective logging feature.
69
70 2000-03-12: Markus Montkowski <mmontkowski@gmx.de>
71 - KERNEL32: Added fix for GetFileAttributes. Open32 doesn't like
72 i.e. 'c:'; needs to be changed into 'c:\'
73
74 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
75 - include\winconst.h: Fixed KEY_ALL_ACCESS definition
76 (reported by Yuri Dario)
77 - DSOUND: Replaced dsound by new version
78 - USER32: Replaced os2.h includes by os2wrap.h
79 Set message nr, wParam & lParam to 0 for dummy messages
80 (to prevent keyboard or mouse messages swallowed by dinput
81 from being dispatched)
82 - KERNEL32: Replaced os2.h includes by os2wrap.h (cvtcursorgrp & oslibdebug)
83 - WSOCK32: Fixed bug in setsockopt for SO_SNDBUF/SO_RCVBUF (OS/2's
84 winsock returns WSAEINVAL if size > 64k)
85
86 2000-03-12: Michal Necasek <mike@mendelu.cz>
87 - dsound\new: Fixed sound in Heroes of M&M III
88
89 2000-03-11: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
90 - OPENGL\GLIDE: Fix for Voodoo 1 glide (missing io ports)
91
92 2000-03-11: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
93 - OPENGL\GLUT: Fix for gettimeofday. This is defined conflicting in
94 the toolkit sys\time.h.
95 - TOOLS\BIN: Implemented an optional directory locking in
96 dowithdirs.cmd. (Useful for SMP builds.)
97
98 2000-03-11: Sander van Leeuwen <sandervl@xs4all.nl>
99 - OPENGL\GLUT: Fixed compile problems + cleanup
100 (use C(XX)FLAGS_WIN32APP so you don't have to
101 explicitely specify which api type you use (ascii or unicode)!)
102
103 - OPENGL\GLIDE: Fixed wrong binary path for voodoo1 glide
104 - include\win\debugtools.h: Disable TRACE, WARN etc when DEBUG is not defined
105
106 2000-03-11: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
107 - OPENGL: Fixed error preventing build to complete
108
109 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
110 - KERNEL32: Set initial max nr of file handles to 256 during kernel32 init
111 Create DDRAW & DSOUND registry keys in InitRegistry
112 (NOTE: Must be done in install program!)
113 Added some win95 stubs
114 - GDI32: Added 16 bits device apis stubs
115
116 2000-03-10: Michal Necasek <mike@mendelu.cz>
117 - dsound\new: Changed DART buffer size calcualation, hopefully
118 WinAmp will sound better now.
119
120 2000-03-09: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
121 - include\pdwin32.tools: New tool, EXISTS --> \tools\bin\Exists.cmd
122 - tools\bin\Exists.cmd: New tool which checks if the file passed in
123 exists. If the file exists it returns 0, else 1. This is
124 used to check if .depend and other files exists in the
125 makefiles. (See pdwin32.post to see how.)
126 - include\pdwin32.post: .depend is only included if it exists. You'll
127 get a warning if it don't, but the makefile works fine.
128 Added a check on OBJDIR not being empty in the clean rule.
129 $(RM) $(OBJDIR)\* is will remove all files in the root dir if
130 OBJDIR is empty.
131 - win32k: Updated makefile with the use of EXISTS for both .depend and
132 makfile.inc. An update check for makefile.inc <-> configure.cmd
133 was also added.
134 Added checks for empty variables in clean rule, and we no longer
135 deletes * in any directory.
136
137 A CVS tip:
138 When new directories are added you have to to a 'cvs checkout .'
139 from the root.
140 A 'cvs update' don't get the new directories it seems
141 (There have been added some dirs under win32k lately so please do this.)
142
143 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
144 - KERNEL32: Major rewrite of PE loader classes to correctly support
145 dll dependencies
146 TODO: Circular dependencies only partly working
147 (a->b->a works, but a->b->c->a doesn't)
148 - USER32: Fixed bug in dialog constructor (class name translation)
149 (only showed up in release build)
150 Dinput mouse changes/fixes
151
152 2000-03-08: Michal Necasek <mike@mendelu.cz>
153 - dsound\new: Fixed volume and panning calculation that
154 sometimes caused ugly noise
155
156 2000-03-08: Michal Necasek <mike@mendelu.cz>
157 - dsound\new: Completely new DART-based DirectSound. Works fine
158 for me with Quake 3, Moorhuhn and WinAmp.
159
160 2000-03-07: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
161 - makefiles and include\pdwin32.*:
162 * Updated nearly all makefiles to the new makefile style.
163 Win32k, pe2lx and some subdirs of Winmm
164 * Odin32 resource files are now to have the extention .orc
165 All files have, save some under WinMM and in old/new dirs,
166 been renamed. There are now new interference rules in
167 pdwin32.tools which will create the resource assembly and
168 assemble it into an object file. So you simply have to
169 specify the output object file for Odin32 resources along
170 with the other object files.
171 * A little not on forwarders. ILINK returns a warning code of
172 4 when aliases are generated. An errorcode <> 0 stops NMAKE
173 normally. To workaround these problem we simply tell NMAKE to
174 accespt all error codes in the range 0-4. This is done by
175 putting '-4 ' in front of the $(LD2) statement.
176 I don't want to see _any_ '-$(LD2)'!!!
177
178
179 2000-03-06: Sander van Leeuwen <sandervl@xs4all.nl>
180 - USER32: Fixed bug in edit control
181 If nyoff > nr lines in control -> bottom line in control
182 window should show last line of control
183 Wine code shows last line at the top of the control
184 (Quake 3 startup edit control shows the problem)
185
186 2000-03-05: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
187 - include\pdwin32.vac*: Added OS2RC and OS2RCFLAGS. This defines the
188 OS/2 resource compiler and the flags used during compilation.
189 When it comes to linking we should assume NO flags and simply
190 invoke the it like this: $(OS2RC) <source>.res <target>.dll.
191 (See src\kernel32\makefile for an example.)
192
193 2000-03-05: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
194 - GLUT32: Really fixed optimized build now. Was not a VACPP bug but
195 error in calling convention prototype in glutint.h
196
197 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
198 - GLUT32: Added logic to escape from optimizer bug in VACPP
199
200 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
201 - fastdep: Simple preprocessor. Commments and #if 0/1.
202 - OPENGL: Corrected makefiles. using LD2 and LD2FLAGS. Many makefiles
203 Didn't concider the NODEBUGINFO macro causing daily builds
204 to become enormous. Daily build of 6MB is not good!.
205 - include\pdwin32.v*.*:
206 *Alternate linker tool, LD2. This is ilink for VAC.
207 (See src\kernel32\makefile for hints how to use it).
208 *Synced configuration for the two VAC versions.
209
210 NOTE that NODEBUGINFO and DEBUGALL is handled within these
211 files. You don't have to test for them to set the correct
212 compiler and linker flags, this is allready done!
213
214 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
215 - INCLUDE\pdwin32.tools, pdwin.vac*
216 Added new build rules (conditional at this time)
217 For each dll a subdir bin\release & bin\debug is created
218 in which the object files of the release & build version
219 are saved.
220 - INCLUDE\pdwin32.post
221 Common makefile rules to be included by all makefiles
222 - USER32\KERNEL32: Switched to new build rules
223 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
224 adjusted)
225 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir)
226 Partially fixed destruction of loaded dlls in ExitProcess
227 (TODO: dependencies are not yet right; needs new design)
228 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
229 to hmdevio.cpp
230 - USER32: Pass on keyboard messages if dinput handler returns TRUE
231 Also send non-client mouse messages to dinput
232 (TODO: always returns true after calling dinput handler)
233 - OPENGL\GLIDE:
234 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
235 to hmdevio.cpp (reported by Michal Necasek)
236
237 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
238 - DDRAW: Fixed bug in CreateSurface and QueryInterface
239 (Moorhuhn now starts fine with ddraw)
240 - USER32: Changed VirtualKey for VK_NEWLINE from 0x0A to 0x0D
241 in the virtualKeyTable
242
243 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
244 - KERNEL32: Create shell dirs in odin\bin directory
245 Cleanup (never call Open32 apis directly if the proc
246 isn't a wrapper; include win32api.h and call Odin api)
247 Fixed FS corruption for DosAliasMem
248 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
249 fixup section doesn't start on page boundary)
250 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
251 there (importing them directly creates a circular
252 dependency (kernel32->advapi32->kernel32))
253 Should probably be moved to ntdll
254 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
255 (Realplayer 7 audio now works (when playing .rm files))
256
257 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
258 - KERNEL32: Fixed calling convention bug in conprop2.cpp
259 (caused crashes with release build)
260
261 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
262 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp
263 - OPENGL\MESA: Reapplied TLS fixes
264 Check for null pointer in wglSetPixelFormat
265 - OPENGL\MESA\3dfx: Use c files from Mesa dir
266 Check for null pointer in wglSetPixelFormat
267 - WINMM: Fixed DartWaveOut::getPosition (overflow)
268 (fixes mp3 playback in RealPlayer 7)
269 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
270 if app wants to change dir to "\")
271 Create shell folders + shell keys
272 (NOTE: This has to be done in the odin install program
273 once we have one)
274 - ADVAPI32: Added crypt api stubs
275
276 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
277 - OPENGL: Implemented DIVE support in Mesa
278
279 2000-03-01: Sander van Leeuwen <sandervl@xs4all.nl>
280 - USER32: Fixes for FindWindow(ExA/W) - now more like Wine
281 (FindWindowExW was not working correctly either)
282 First send WM_NCACTIVATE, then WM_ACTIVATE
283 Fixed focus problems with Odin apps
284 (Call WinSetFocus in OSLibWinSetActiveWindow instead of
285 WinSetActiveWindow when a user clicks on the titlebar
286 of an inactive window & after sending WM_MOUSEACTIVATE)
287 TODO: Does WinSetActiveWindow work properly or should we
288 always call WinSetFocus???
289 Call Dinput handler when translating mouse & keyboard
290 messages (during Get/PeekMessage)
291 - OPENGL: Always build release version of glide, mesa, glu32 & glut
292 Build mesa software & 3dfx dlls; don't build OS/2 opengl
293 wrapper anymore
294 - OPENGL\GLIDE\CVG\GLIDE:
295 Disable instruction scheduling in release build -> messed up
296 colors when turned on (most likely VAC optimizer bug)
297 TODO: Somebody should also check this for the voodoo 1 glide dll.
298 - OPENGL\GLIDE\CVG:
299 Fixed makefile
300 - OPENGL\MESA\GL\gl.h
301 Removed circular header dependency (breaks build)
302 - OPENGL\MESA\3dfx:
303 Copy 3dfx opengl32.dll to bin\glide
304
305 2000-03-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
306 - USER32: Fixed dprintf in CreateWindowExW
307 Added left & right cursor keys to Win32BaseWindow::setExtendedKey
308
Note: See TracBrowser for help on using the repository browser.