source: trunk/changelog@ 3305

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

* empty log message *

File size: 24.7 KB
Line 
1 /* $Id: changelog,v 1.860 2000-04-02 14:52:23 sandervl Exp $ */
2
3 2000-04-02: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: dc.cpp cleanup
5 - GDI32: Dib section sync bugfix (todo: rgb 565 to 555 conversion if bpp == 16)
6 Set y inversion to 0 if dib section isn't flipped
7 (fixes upside down flash videos in RealPlayer 7)
8 - WINMM: Faked mixer apis
9
10 2000-04-01: Sander van Leeuwen <sandervl@xs4all.nl>
11 - GDI32: Fixed dibsection bitblits. (wrong updates of realplayer 7
12 videos)
13
14 2000-04-01: Christoph Bratschi <cbratschi@datacomm.ch>
15 - USER32: added WYSIWYGOFOA interface
16
17 2000-04-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
18 - USER32: Fixed track frame width & height (now you can actually
19 see the tracking frame when moving a window)
20
21 2000-03-31: Christoph Bratschi <cbratschi@datacomm.ch>
22 - USER32: readded CS_HITTEST for HT_TRANSPARENT handling, transparent
23 tooltips are now supported
24 (why is HT_TRANSPARENT in the groupbox control commented out?)
25 - COMCTL32: treeview: added TTF_TRANSPARENT tooltip style
26
27 2000-03-30: Christoph Bratschi <cbratschi@datacomm.ch>
28 - KERNEL32:
29 - SHLWAPI: added stubs for explorer.exe
30 - COMCTL32: treeview: finished info tip
31
32 2000-03-30: Sander van Leeuwen <sandervl@xs4all.nl>
33 - KERNEL32: Also double thread stack in release build
34 (RealPlayer 7 runs out of stack sometimes)
35 - WSOCK32: Fixed bugs in WSAStartup/Cleanup & select (fixes Gnutella)
36
37 2000-03-29: Sander van Leeuwen <sandervl@xs4all.nl>
38 - KERNEL32: Throw exception when critical section times out
39 - USER32: Fixed bugs in PeekMessageA/W (fixes connection failures
40 & hangs after warning dialogs in RealPlayer 7)
41 - GDI32: Check for NULL region in GetRgnBox; can cause a crash
42 in Open32
43
44 2000-03-29: Christoph Bratschi <cbratschi@datacomm.ch>
45 - KERNEL32: added FindFileFirstMultiA for internal usage
46
47 2000-03-28: Markus Montkowski <mmontkowski@gmx.de>
48 - KERNEL32: Added workaround for GetDiskFreeSpaceA; Open32 api doesn't
49 like NULL pointers
50
51 2000-03-28: Sander van Leeuwen <sandervl@xs4all.nl>
52 - KERNEL32: Fixed VirtualQuery; cbLength is length of memory structure,
53 not range of pages
54 Fixed compare of imported api names with length < 4
55 Fixed OpenFile; if filename doesn't contain path, look for
56 it in:
57 1: dir from which the app loaded
58 2: current dir
59 3: windows system dir
60 4: windows dir
61 5: dirs in path path environment variable
62 NOTE: Icon extraction in shell32 is broken; expects PE
63 images even when looking for icons in shell32.
64 (it should use FindResourceExA/W when looking for resources
65 in that case)
66 - USER32: Fixed combobox focus changes when showing dropdown window
67 - WSOCK32: Added support for warp 4 error messages (0 based)
68 Fixed FD_CLOSE async notification (fixes telnet ability
69 to detect lost connections)
70
71 2000-03-28: Christoph Bratschi <cbratschi@datacomm.ch>
72 - SHELL32: don't use pdump() in release build
73 - GDI32: dump ROP2 mode
74
75 2000-03-27: Sander van Leeuwen <sandervl@xs4all.nl>
76 - USER32: Fixed SetParent; remove child from parent's list (previously
77 didn't happen for children of the desktop)
78
79 2000-03-27: Christoph Bratschi <cbratschi@datacomm.ch>
80 - SHELL32: only scan dir once in CreateFolderEnumList
81 floppy drives have a fixed name
82 NOTE: delete 'bin\debug(release)\shres.*' or the resources
83 won't be updated
84
85 2000-03-26: Christoph Bratschi <cbratschi@datacomm.ch>
86 - COMDLG32:
87 - SHELL32: merged with Corel WINE 20000324
88
89 2000-03-25: Sander van Leeuwen <sandervl@xs4all.nl>
90 - KERNEL32: Fixes for GetStdHandle
91 - WSOCK32: Fixes for getservbyname & getservbyport
92
93 2000-03-24: Sander van Leeuwen <sandervl@xs4all.nl>
94 - KERNEL32: Fixed typo in pe loader (check for < 512 MB)
95 - USER32: Add size of space between two menu items when calculating
96 size of ownerdrawn menu item (fixes RealPlayer 7 menu)
97 - GDI32: Default format of 16 bits dibsection is RGB555
98 (fixes wrong colors when (sometimes) playing flash files
99 in RealPlayer 7)
100 - WSOCK32\NEW: Bugfixes
101 - WSOCK32: Replaced with new wsock32
102
103 2000-03-24: Achim Hasenmueller <achimha@innotek.de>
104 - WSOCK32\NEW: Made it compile with the TCP/IP V5
105 header files.
106 NOTE: should we rely on the 32bit
107 stack, is there any benefit for us?
108 - DPLAY: Added ordinals 2 and 3 to the def file, APIs
109 already seem to be implemented?!?
110 - COMDLG32: Fixed correct (Win95/OS2) dialog invocation
111
112 2000-03-24: Christoph Bratschi <cbratschi@datacomm.ch>
113 - USER32: fixed GetClipboardFormatNameW
114 fixed scrollbar memory leak
115 - SHELL32: fixed IDataObject_fnGetData return value (file dialog
116 is now usable)
117
118 2000-03-23: Sander van Leeuwen <sandervl@xs4all.nl>
119 - KERNEL32: Fixed shared global mutex
120 Added VSemaphore class
121 - USER32: Fixed shared global mutex
122 TODO:
123 ---->> Compiler bug: during __ctordtorInit it calls the constructor
124 of global objects, even if the dll has already
125 been loaded!
126 Replaced WriteLogs by dprintfs
127 - WSOCK32\NEW: Added WSAAsyncSelect + bugfixes
128
129 2000-03-23: Christoph Bratschi <cbratschi@datacomm.ch>
130 - COMDLG32: improved file dialog combobox
131 - COMCTL32: removed static WINMM linking
132 several listview fixes
133
134 2000-03-22: Sander van Leeuwen <sandervl@xs4all.nl>
135 - WSOCK32\NEW: Completely rewritten (removed dependancy on pmwsock)
136 Untested and unfinished (WSAAsyncSelect)
137
138 2000-03-21: Sander van Leeuwen <sandervl@xs4all.nl>
139 - GDI32: Added RGB 555 to 565 conversion in dibsection blit.
140 (fixes wrong colors in RealPlayer 7 Update 1 (rm videos
141 only))
142 - include\odinwrap.h: Disable heap checking by default for debug
143 build -> kills performance!
144
145 2000-03-21: Edgar Buerkle <Edgar.Buerkle@gmx.net>
146 - MSVCRT: Adding logging statement to _EH_prolog
147
148 2000-03-21: Christoph Bratschi <cbratschi@datacomm.ch>
149 - COMCTL32: optimized header/treeview for AMD cpuid
150 fixed dispinfo callbacks
151 reduced listview redraws
152 fixed wrong ASCII definitions in commctrl.h
153
154 2000-03-20: David Raison <djr@lemur.co.uk>
155 - OLE32: Ported OleQueryCreateFromData, OleCreateFromData from
156 wine/corel sources.
157 - OLEAUT32: Bugfix in ITypeLibImpl_GetDocumentation
158
159 2000-03-20: Sander van Leeuwen <sandervl@xs4all.nl>
160 - WSOCK32: Fixed relay bug in WSAAsyncSelect (delete relay slot
161 with same socket nr & window handle; there can
162 be more selects per window)
163
164 2000-03-19: David Raison <djr@lemur.co.uk>
165 - OLE32: Bugfixes.
166 Ported changes from wine/corel sources.
167 Created ReadClassStm, WriteClassStm, ProgIDFromCLSID
168
169 2000-03-19: Sander van Leeuwen <sandervl@xs4all.nl>
170 - ODINCRT: Fixed FS wrapper for _fdopen & others in file.cpp
171 (missing SetFS)
172
173 2000-03-19: Michal Necasek <mike@mendelu.cz>
174 - DINPUT: Few fixes, now Fallout 1/2 almost works
175
176 2000-03-18: Michal Necasek <mike@mendelu.cz>
177 - DDRAW: Fixed messed up DPA callback calling convention
178 Added some transparent blit code which was
179 mysteriously missing
180
181 2000-03-18: Edgar Buerkle <Edgar.Buerkle@gmx.net>
182 - MSVCRT: Implemented _EH_prolog
183
184 2000-03-18: Christoph Bratschi <cbratschi@datacomm.ch>
185 - USER32: merged with Corel WINE 20000317
186 added GCL_HICONSM support
187 fixed messagebox with no icon
188 - COMCTL32: merged with Corel WINE 20000317 + bug fixes
189
190 2000-03-18: Sander van Leeuwen <sandervl@xs4all.nl>
191 - ODINCRT: Added FS wrapper for _fdopen
192 (fixes crash at exit in Professional MineSweeper when
193 selection About Odin from the system menu)
194
195 2000-03-17: Christoph Bratschi <cbratschi@datacomm.ch>
196 - COMCTL32: fixed trackbar buddy alignment
197 added useful internal tooltip styles
198
199 2000-03-17: Sander van Leeuwen <sandervl@xs4all.nl>
200 - WSOCK32: Semaphore protection for relay slot alloc/free
201 Fixed bug in WSAAsyncSelect. Allow more than one
202 async call per window for RelayAlloc call. If it's not
203 alloced, pmwsock will return an error. Previously it was
204 overwriting slots for other async calls. (WSAAsyncGetHostName
205 in RealPlayer 7)
206 - KERNEL32: Fixed handle creation for thread 0.
207
208 2000-03-16: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
209 - TOOLS\FASTDEP:
210 Speed optimizations: using AVL trees, include dir caching,
211 dependencies stored in AVL tree until all files has been
212 processes, buffered write.
213 Cyclic dependency check.
214 All files but the objectfiles now should have fully qualified paths.
215
216 - INCLUDE\PDWIN32.TOOLS:
217 DEPEND: Enabled cyclic check.
218
219 2000-03-16: Sander van Leeuwen <sandervl@xs4all.nl>
220 - USER32: Fixed virtual keycode of return key
221 TODO: Not done for all keys. Should probably looks at the
222 scancode (not virtual char) to translate keys.
223 - GDI32: RP7 calls CreateDIBSection with HDC 0; Call
224 GetWindowDC(GetDesktopWindow()) in that case
225 -> fixes crash (result of CreateDIBSection failure)
226 TODO: Looks like this is allowed in NT, but need to check
227 this to be sure nothing else caused this problem.
228 (Note: most recent RealPlayer 7 version only)
229 - KERNEL32: Semaphore protection of handle alloc
230 Added handlemanager class for thread handles
231 Added workaround for Open32 WaitForSingleObject bug
232 (if thread is terminated and WaitForSingleObject is
233 called with the thread's handle -> never returns
234 (new rp7 hang at exit))
235 TODO: WaitForMultipleObjects can still hang ->
236 Event, semaphore, mutex & wait apis need to
237 be redesigned (not using Open32)
238
239 2000-03-14: Christoph Bratschi <cbratschi@datacomm.ch>
240 - USER32: implemented much faster LB_SETCOUNT
241
242 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
243 - USER32: Put back check (oldsel == newsel) in LISTBOX_SetSelection
244 (why was this commented out?)
245 Fixed combobox: Clear CBF_SELCHANGE flag before calling
246 CBUpdateEdit
247 Don't send CBN_EDITUPDATE when CBF_NOEDITNOTIFY
248 flag is set (by combo_handletext)
249 -> fixes infinite loops in RealPlayer 7 (type name of file
250 previously used in edit box; last letter entered -> crash)
251 AdjustWindowRectEx bugfix (reported by Robert Lalla)
252 Don't clear WS_POPUP flag. (HAS_THINFRAME depends on it)
253 -> fixes wrong resolution changes in Quake 2
254 Don't clear WS_CHILD flag either. (HAS_THICKFRAME depends on it)
255
256 - KERNEL32: Clear FILE_SHARE_DELETE flag before calling Open32's
257 CreateFile. (otherwise it fails) -> fixes RealPlayer 7
258 Basic (new update).
259
260 - WSOCK32: Changed workaround for setsockopt bug (SO_SNDBUF/SO_RCVBUF (OS/2's
261 winsock returns WSAEINVAL if size > 64k))
262 Only change size if setsockopt returns WSAINVAL (32 bits stack
263 should support size > 64 kb (?))
264 Added selective logging feature.
265
266 2000-03-12: Markus Montkowski <mmontkowski@gmx.de>
267 - KERNEL32: Added fix for GetFileAttributes. Open32 doesn't like
268 i.e. 'c:'; needs to be changed into 'c:\'
269
270 2000-03-12: Sander van Leeuwen <sandervl@xs4all.nl>
271 - include\winconst.h: Fixed KEY_ALL_ACCESS definition
272 (reported by Yuri Dario)
273 - DSOUND: Replaced dsound by new version
274 - USER32: Replaced os2.h includes by os2wrap.h
275 Set message nr, wParam & lParam to 0 for dummy messages
276 (to prevent keyboard or mouse messages swallowed by dinput
277 from being dispatched)
278 - KERNEL32: Replaced os2.h includes by os2wrap.h (cvtcursorgrp & oslibdebug)
279 - WSOCK32: Fixed bug in setsockopt for SO_SNDBUF/SO_RCVBUF (OS/2's
280 winsock returns WSAEINVAL if size > 64k)
281
282 2000-03-12: Michal Necasek <mike@mendelu.cz>
283 - dsound\new: Fixed sound in Heroes of M&M III
284
285 2000-03-11: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
286 - OPENGL\GLIDE: Fix for Voodoo 1 glide (missing io ports)
287
288 2000-03-11: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
289 - OPENGL\GLUT: Fix for gettimeofday. This is defined conflicting in
290 the toolkit sys\time.h.
291 - TOOLS\BIN: Implemented an optional directory locking in
292 dowithdirs.cmd. (Useful for SMP builds.)
293
294 2000-03-11: Sander van Leeuwen <sandervl@xs4all.nl>
295 - OPENGL\GLUT: Fixed compile problems + cleanup
296 (use C(XX)FLAGS_WIN32APP so you don't have to
297 explicitely specify which api type you use (ascii or unicode)!)
298
299 - OPENGL\GLIDE: Fixed wrong binary path for voodoo1 glide
300 - include\win\debugtools.h: Disable TRACE, WARN etc when DEBUG is not defined
301
302 2000-03-11: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
303 - OPENGL: Fixed error preventing build to complete
304
305 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
306 - KERNEL32: Set initial max nr of file handles to 256 during kernel32 init
307 Create DDRAW & DSOUND registry keys in InitRegistry
308 (NOTE: Must be done in install program!)
309 Added some win95 stubs
310 - GDI32: Added 16 bits device apis stubs
311
312 2000-03-10: Michal Necasek <mike@mendelu.cz>
313 - dsound\new: Changed DART buffer size calcualation, hopefully
314 WinAmp will sound better now.
315
316 2000-03-09: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
317 - include\pdwin32.tools: New tool, EXISTS --> \tools\bin\Exists.cmd
318 - tools\bin\Exists.cmd: New tool which checks if the file passed in
319 exists. If the file exists it returns 0, else 1. This is
320 used to check if .depend and other files exists in the
321 makefiles. (See pdwin32.post to see how.)
322 - include\pdwin32.post: .depend is only included if it exists. You'll
323 get a warning if it don't, but the makefile works fine.
324 Added a check on OBJDIR not being empty in the clean rule.
325 $(RM) $(OBJDIR)\* is will remove all files in the root dir if
326 OBJDIR is empty.
327 - win32k: Updated makefile with the use of EXISTS for both .depend and
328 makfile.inc. An update check for makefile.inc <-> configure.cmd
329 was also added.
330 Added checks for empty variables in clean rule, and we no longer
331 deletes * in any directory.
332
333 A CVS tip:
334 When new directories are added you have to to a 'cvs checkout .'
335 from the root.
336 A 'cvs update' don't get the new directories it seems
337 (There have been added some dirs under win32k lately so please do this.)
338
339 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
340 - KERNEL32: Major rewrite of PE loader classes to correctly support
341 dll dependencies
342 TODO: Circular dependencies only partly working
343 (a->b->a works, but a->b->c->a doesn't)
344 - USER32: Fixed bug in dialog constructor (class name translation)
345 (only showed up in release build)
346 Dinput mouse changes/fixes
347
348 2000-03-08: Michal Necasek <mike@mendelu.cz>
349 - dsound\new: Fixed volume and panning calculation that
350 sometimes caused ugly noise
351
352 2000-03-08: Michal Necasek <mike@mendelu.cz>
353 - dsound\new: Completely new DART-based DirectSound. Works fine
354 for me with Quake 3, Moorhuhn and WinAmp.
355
356 2000-03-07: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
357 - makefiles and include\pdwin32.*:
358 * Updated nearly all makefiles to the new makefile style.
359 Win32k, pe2lx and some subdirs of Winmm
360 * Odin32 resource files are now to have the extention .orc
361 All files have, save some under WinMM and in old/new dirs,
362 been renamed. There are now new interference rules in
363 pdwin32.tools which will create the resource assembly and
364 assemble it into an object file. So you simply have to
365 specify the output object file for Odin32 resources along
366 with the other object files.
367 * A little not on forwarders. ILINK returns a warning code of
368 4 when aliases are generated. An errorcode <> 0 stops NMAKE
369 normally. To workaround these problem we simply tell NMAKE to
370 accespt all error codes in the range 0-4. This is done by
371 putting '-4 ' in front of the $(LD2) statement.
372 I don't want to see _any_ '-$(LD2)'!!!
373
374
375 2000-03-06: Sander van Leeuwen <sandervl@xs4all.nl>
376 - USER32: Fixed bug in edit control
377 If nyoff > nr lines in control -> bottom line in control
378 window should show last line of control
379 Wine code shows last line at the top of the control
380 (Quake 3 startup edit control shows the problem)
381
382 2000-03-05: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
383 - include\pdwin32.vac*: Added OS2RC and OS2RCFLAGS. This defines the
384 OS/2 resource compiler and the flags used during compilation.
385 When it comes to linking we should assume NO flags and simply
386 invoke the it like this: $(OS2RC) <source>.res <target>.dll.
387 (See src\kernel32\makefile for an example.)
388
389 2000-03-05: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
390 - GLUT32: Really fixed optimized build now. Was not a VACPP bug but
391 error in calling convention prototype in glutint.h
392
393 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
394 - GLUT32: Added logic to escape from optimizer bug in VACPP
395
396 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
397 - fastdep: Simple preprocessor. Commments and #if 0/1.
398 - OPENGL: Corrected makefiles. using LD2 and LD2FLAGS. Many makefiles
399 Didn't concider the NODEBUGINFO macro causing daily builds
400 to become enormous. Daily build of 6MB is not good!.
401 - include\pdwin32.v*.*:
402 *Alternate linker tool, LD2. This is ilink for VAC.
403 (See src\kernel32\makefile for hints how to use it).
404 *Synced configuration for the two VAC versions.
405
406 NOTE that NODEBUGINFO and DEBUGALL is handled within these
407 files. You don't have to test for them to set the correct
408 compiler and linker flags, this is allready done!
409
410 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
411 - INCLUDE\pdwin32.tools, pdwin.vac*
412 Added new build rules (conditional at this time)
413 For each dll a subdir bin\release & bin\debug is created
414 in which the object files of the release & build version
415 are saved.
416 - INCLUDE\pdwin32.post
417 Common makefile rules to be included by all makefiles
418 - USER32\KERNEL32: Switched to new build rules
419 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
420 adjusted)
421 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir)
422 Partially fixed destruction of loaded dlls in ExitProcess
423 (TODO: dependencies are not yet right; needs new design)
424 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
425 to hmdevio.cpp
426 - USER32: Pass on keyboard messages if dinput handler returns TRUE
427 Also send non-client mouse messages to dinput
428 (TODO: always returns true after calling dinput handler)
429 - OPENGL\GLIDE:
430 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
431 to hmdevio.cpp (reported by Michal Necasek)
432
433 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
434 - DDRAW: Fixed bug in CreateSurface and QueryInterface
435 (Moorhuhn now starts fine with ddraw)
436 - USER32: Changed VirtualKey for VK_NEWLINE from 0x0A to 0x0D
437 in the virtualKeyTable
438
439 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
440 - KERNEL32: Create shell dirs in odin\bin directory
441 Cleanup (never call Open32 apis directly if the proc
442 isn't a wrapper; include win32api.h and call Odin api)
443 Fixed FS corruption for DosAliasMem
444 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
445 fixup section doesn't start on page boundary)
446 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
447 there (importing them directly creates a circular
448 dependency (kernel32->advapi32->kernel32))
449 Should probably be moved to ntdll
450 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
451 (Realplayer 7 audio now works (when playing .rm files))
452
453 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
454 - KERNEL32: Fixed calling convention bug in conprop2.cpp
455 (caused crashes with release build)
456
457 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
458 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp
459 - OPENGL\MESA: Reapplied TLS fixes
460 Check for null pointer in wglSetPixelFormat
461 - OPENGL\MESA\3dfx: Use c files from Mesa dir
462 Check for null pointer in wglSetPixelFormat
463 - WINMM: Fixed DartWaveOut::getPosition (overflow)
464 (fixes mp3 playback in RealPlayer 7)
465 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
466 if app wants to change dir to "\")
467 Create shell folders + shell keys
468 (NOTE: This has to be done in the odin install program
469 once we have one)
470 - ADVAPI32: Added crypt api stubs
471
472 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
473 - OPENGL: Implemented DIVE support in Mesa
474
475 2000-03-01: Sander van Leeuwen <sandervl@xs4all.nl>
476 - USER32: Fixes for FindWindow(ExA/W) - now more like Wine
477 (FindWindowExW was not working correctly either)
478 First send WM_NCACTIVATE, then WM_ACTIVATE
479 Fixed focus problems with Odin apps
480 (Call WinSetFocus in OSLibWinSetActiveWindow instead of
481 WinSetActiveWindow when a user clicks on the titlebar
482 of an inactive window & after sending WM_MOUSEACTIVATE)
483 TODO: Does WinSetActiveWindow work properly or should we
484 always call WinSetFocus???
485 Call Dinput handler when translating mouse & keyboard
486 messages (during Get/PeekMessage)
487 - OPENGL: Always build release version of glide, mesa, glu32 & glut
488 Build mesa software & 3dfx dlls; don't build OS/2 opengl
489 wrapper anymore
490 - OPENGL\GLIDE\CVG\GLIDE:
491 Disable instruction scheduling in release build -> messed up
492 colors when turned on (most likely VAC optimizer bug)
493 TODO: Somebody should also check this for the voodoo 1 glide dll.
494 - OPENGL\GLIDE\CVG:
495 Fixed makefile
496 - OPENGL\MESA\GL\gl.h
497 Removed circular header dependency (breaks build)
498 - OPENGL\MESA\3dfx:
499 Copy 3dfx opengl32.dll to bin\glide
500
501 2000-03-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
502 - USER32: Fixed dprintf in CreateWindowExW
503 Added left & right cursor keys to Win32BaseWindow::setExtendedKey
504
Note: See TracBrowser for help on using the repository browser.