source: trunk/changelog@ 3085

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

* empty log message *

File size: 49.8 KB
Line 
1 /* $Id: changelog,v 1.798 2000-03-11 15:11:36 sandervl Exp $ */
2
3 2000-03-11: Sander van Leeuwen <sandervl@xs4all.nl>
4 - OPENGL\GLUT: Fixed compile problems + cleanup
5 (use C(XX)FLAGS_WIN32APP so you don't have to
6 explicitely specify which api type you use (ascii or unicode)!)
7
8 - OPENGL\GLIDE: Fixed wrong binary path for voodoo1 glide
9
10 2000-03-11: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
11 - OPENGL: Fixed error preventing build to complete
12
13 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
14 - KERNEL32: Set initial max nr of file handles to 256 during kernel32 init
15 Create DDRAW & DSOUND registry keys in InitRegistry
16 (NOTE: Must be done in install program!)
17 Added some win95 stubs
18 - GDI32: Added 16 bits device apis stubs
19
20 2000-03-10: Michal Necasek <mike@mendelu.cz>
21 - dsound\new: Changed DART buffer size calcualation, hopefully
22 WinAmp will sound better now.
23
24
25 2000-03-09: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
26 - include\pdwin32.tools: New tool, EXISTS --> \tools\bin\Exists.cmd
27 - tools\bin\Exists.cmd: New tool which checks if the file passed in
28 exists. If the file exists it returns 0, else 1. This is
29 used to check if .depend and other files exists in the
30 makefiles. (See pdwin32.post to see how.)
31 - include\pdwin32.post: .depend is only included if it exists. You'll
32 get a warning if it don't, but the makefile works fine.
33 Added a check on OBJDIR not being empty in the clean rule.
34 $(RM) $(OBJDIR)\* is will remove all files in the root dir if
35 OBJDIR is empty.
36 - win32k: Updated makefile with the use of EXISTS for both .depend and
37 makfile.inc. An update check for makefile.inc <-> configure.cmd
38 was also added.
39 Added checks for empty variables in clean rule, and we no longer
40 deletes * in any directory.
41
42 A CVS tip:
43 When new directories are added you have to to a 'cvs checkout .'
44 from the root.
45 A 'cvs update' don't get the new directories it seems
46 (There have been added some dirs under win32k lately so please do this.)
47
48 2000-03-09: Sander van Leeuwen <sandervl@xs4all.nl>
49 - KERNEL32: Major rewrite of PE loader classes to correctly support
50 dll dependencies
51 TODO: Circular dependencies only partly working
52 (a->b->a works, but a->b->c->a doesn't)
53 - USER32: Fixed bug in dialog constructor (class name translation)
54 (only showed up in release build)
55 Dinput mouse changes/fixes
56
57 2000-03-08: Michal Necasek <mike@mendelu.cz>
58 - dsound\new: Fixed volume and panning calculation that
59 sometimes caused ugly noise
60
61 2000-03-08: Michal Necasek <mike@mendelu.cz>
62 - dsound\new: Completely new DART-based DirectSound. Works fine
63 for me with Quake 3, Moorhuhn and WinAmp.
64
65 2000-03-07: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
66 - makefiles and include\pdwin32.*:
67 * Updated nearly all makefiles to the new makefile style.
68 Win32k, pe2lx and some subdirs of Winmm
69 * Odin32 resource files are now to have the extention .orc
70 All files have, save some under WinMM and in old/new dirs,
71 been renamed. There are now new interference rules in
72 pdwin32.tools which will create the resource assembly and
73 assemble it into an object file. So you simply have to
74 specify the output object file for Odin32 resources along
75 with the other object files.
76 * A little not on forwarders. ILINK returns a warning code of
77 4 when aliases are generated. An errorcode <> 0 stops NMAKE
78 normally. To workaround these problem we simply tell NMAKE to
79 accespt all error codes in the range 0-4. This is done by
80 putting '-4 ' in front of the $(LD2) statement.
81 I don't want to see _any_ '-$(LD2)'!!!
82
83
84 2000-03-06: Sander van Leeuwen <sandervl@xs4all.nl>
85 - USER32: Fixed bug in edit control
86 If nyoff > nr lines in control -> bottom line in control
87 window should show last line of control
88 Wine code shows last line at the top of the control
89 (Quake 3 startup edit control shows the problem)
90
91 2000-03-05: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
92 - include\pdwin32.vac*: Added OS2RC and OS2RCFLAGS. This defines the
93 OS/2 resource compiler and the flags used during compilation.
94 When it comes to linking we should assume NO flags and simply
95 invoke the it like this: $(OS2RC) <source>.res <target>.dll.
96 (See src\kernel32\makefile for an example.)
97
98 2000-03-05: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
99 - GLUT32: Really fixed optimized build now. Was not a VACPP bug but
100 error in calling convention prototype in glutint.h
101
102 2000-03-04: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
103 - GLUT32: Added logic to escape from optimizer bug in VACPP
104
105 2000-03-04: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
106 - fastdep: Simple preprocessor. Commments and #if 0/1.
107 - OPENGL: Corrected makefiles. using LD2 and LD2FLAGS. Many makefiles
108 Didn't concider the NODEBUGINFO macro causing daily builds
109 to become enormous. Daily build of 6MB is not good!.
110 - include\pdwin32.v*.*:
111 *Alternate linker tool, LD2. This is ilink for VAC.
112 (See src\kernel32\makefile for hints how to use it).
113 *Synced configuration for the two VAC versions.
114
115 NOTE that NODEBUGINFO and DEBUGALL is handled within these
116 files. You don't have to test for them to set the correct
117 compiler and linker flags, this is allready done!
118
119 2000-03-04: Sander van Leeuwen <sandervl@xs4all.nl>
120 - INCLUDE\pdwin32.tools, pdwin.vac*
121 Added new build rules (conditional at this time)
122 For each dll a subdir bin\release & bin\debug is created
123 in which the object files of the release & build version
124 are saved.
125 - INCLUDE\pdwin32.post
126 Common makefile rules to be included by all makefiles
127 - USER32\KERNEL32: Switched to new build rules
128 - WSOCK32: Fixed bug in setsockopt for SO_LINGER (options size wasn't
129 adjusted)
130 - KERNEL32: Fixed shell dirs (now all created in odin\bin dir)
131 Partially fixed destruction of loaded dlls in ExitProcess
132 (TODO: dependencies are not yet right; needs new design)
133 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
134 to hmdevio.cpp
135 - USER32: Pass on keyboard messages if dinput handler returns TRUE
136 Also send non-client mouse messages to dinput
137 (TODO: always returns true after calling dinput handler)
138 - OPENGL\GLIDE:
139 Added check and fix for DosOpen (ERROR_TOO_MANY_OPEN_FILES)
140 to hmdevio.cpp (reported by Michal Necasek)
141
142 2000-03-03: Markus Montkowski <mmontkowski@gmx.de>
143 - DDRAW: Fixed bug in CreateSurface and QueryInterface
144 (Moorhuhn now starts fine with ddraw)
145 - USER32: Changed VirtualKey for VK_NEWLINE from 0x0A to 0x0D
146 in the virtualKeyTable
147
148 2000-03-03: Sander van Leeuwen <sandervl@xs4all.nl>
149 - KERNEL32: Create shell dirs in odin\bin directory
150 Cleanup (never call Open32 apis directly if the proc
151 isn't a wrapper; include win32api.h and call Odin api)
152 Fixed FS corruption for DosAliasMem
153 Fixed bug in Win32PeLdrImage::commitPage (quake 3 screensaver's
154 fixup section doesn't start on page boundary)
155 - ADVAPI32/KERNEL32: Moved registry apis in kernel32 as we need them
156 there (importing them directly creates a circular
157 dependency (kernel32->advapi32->kernel32))
158 Should probably be moved to ntdll
159 - WINMM: Fixed typo in DartWaveOut::init to determine bits per sample
160 (Realplayer 7 audio now works (when playing .rm files))
161
162 2000-03-03: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
163 - KERNEL32: Fixed calling convention bug in conprop2.cpp
164 (caused crashes with release build)
165
166 2000-03-02: Sander van Leeuwen <sandervl@xs4all.nl>
167 - OPENGL\GLIDE: Use Odin OS/2 api wrappers in fxos2.cpp
168 - OPENGL\MESA: Reapplied TLS fixes
169 Check for null pointer in wglSetPixelFormat
170 - OPENGL\MESA\3dfx: Use c files from Mesa dir
171 Check for null pointer in wglSetPixelFormat
172 - WINMM: Fixed DartWaveOut::getPosition (overflow)
173 (fixes mp3 playback in RealPlayer 7)
174 - KERNEL32: Fixed SetCurrentDirectory (don't remove backslash
175 if app wants to change dir to "\")
176 Create shell folders + shell keys
177 (NOTE: This has to be done in the odin install program
178 once we have one)
179 - ADVAPI32: Added crypt api stubs
180
181 2000-03-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
182 - OPENGL: Implemented DIVE support in Mesa
183
184 2000-03-01: Sander van Leeuwen <sandervl@xs4all.nl>
185 - USER32: Fixes for FindWindow(ExA/W) - now more like Wine
186 (FindWindowExW was not working correctly either)
187 First send WM_NCACTIVATE, then WM_ACTIVATE
188 Fixed focus problems with Odin apps
189 (Call WinSetFocus in OSLibWinSetActiveWindow instead of
190 WinSetActiveWindow when a user clicks on the titlebar
191 of an inactive window & after sending WM_MOUSEACTIVATE)
192 TODO: Does WinSetActiveWindow work properly or should we
193 always call WinSetFocus???
194 Call Dinput handler when translating mouse & keyboard
195 messages (during Get/PeekMessage)
196 - OPENGL: Always build release version of glide, mesa, glu32 & glut
197 Build mesa software & 3dfx dlls; don't build OS/2 opengl
198 wrapper anymore
199 - OPENGL\GLIDE\CVG\GLIDE:
200 Disable instruction scheduling in release build -> messed up
201 colors when turned on (most likely VAC optimizer bug)
202 TODO: Somebody should also check this for the voodoo 1 glide dll.
203 - OPENGL\GLIDE\CVG:
204 Fixed makefile
205 - OPENGL\MESA\GL\gl.h
206 Removed circular header dependency (breaks build)
207 - OPENGL\MESA\3dfx:
208 Copy 3dfx opengl32.dll to bin\glide
209
210 2000-03-01: Edgar Buerkle <Edgar.Buerkle@gmx.net>
211 - USER32: Fixed dprintf in CreateWindowExW
212 Added left & right cursor keys to Win32BaseWindow::setExtendedKey
213
214 2000-02-29: Edgar Buerkle <Edgar.Buerkle@gmx.net>
215 - USER32: Added support for keyboard hooks (fixes Moorhuhn)
216 in PeekMessage & GetMessage
217
218 2000-02-29: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
219 - TOOLS\FASTDEP: Restructured it a little. Support for multiple
220 languages:
221 C and C++ (as earlier)
222 Assembly
223 Resource files (OS/2 resources at least...)
224 COBOL (just for fun! - I'll use it at job)
225 Things seems to work ok, but if an error occurs, please
226 fix it or send me a note and I'll fix it ASAP.
227
228 2000-02-29: Sander van Leeuwen <sandervl@xs4all.nl>
229 - OPENGL\MESA: Added Odin port of Mesa Opengl library
230 (Ported by Jeroen van den Horn)
231 NOTE: The Mesa 3D graphics library has a different license
232 (see LICENSE.TXT in the Mesa directory)
233 - OPENGL\MESA\3DFX:
234 Added Odin port of 3dfx Voodoo Mesa GL
235 (tested with simple opengl samples only, but
236 this is the first hardware accelerated Opengl
237 implementation for OS/2!)
238 NOTE: The Mesa 3dfx graphics library has a different license
239 (see LICENSE.TXT in the Mesa\3dfx directory)
240 - KERNEL32: Only call ExitProcess the first time KillWin32Process
241 is executed. Call DosExit otherwise.
242 Fix for GpdDev device io (needed for native glide dll)
243
244 2000-02-28: Sander van Leeuwen <sandervl@xs4all.nl>
245 - KERNEL32: Call ExitProcess in KillWin32Process to make sure
246 the dll libmain handlers are called after a crash.
247 (i.e. Glide needs this to restore the display)
248 - INCLUDE\WIN: Added wgl definitions to wingdi.h
249
250 2000-02-27: Sander van Leeuwen <sandervl@xs4all.nl>
251 - WINMM: Implemented waveOutGetPosition
252
253 2000-02-27: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
254 - pdwin32.tools: "New" tool, MAKE_CMD. Passes on the DEBUG and
255 NODEBUGINFO macros variables to the next make job.
256 (It's better to have it here than to have it in nearly
257 all makefiles, and forgetting to put it there...)
258 - WIN32K: *The dep rule will make a makefile.inc if not present. It
259 will also make dependencies for pe2lx and lib.
260 *Have created a lib rule.
261 *The all rule will now make Pe2Lx.
262 - src/makefile: win32k makes pe2lx, no need for special pe2lx stuff.
263
264 Sander, have a look the build and rebuild rules please.
265
266 2000-02-26: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
267 - WIN32K: *Symbol Database is implemented. Contains symbols for most
268 retail kernels. (see win32k.txt or readme.txt)
269 *No scanning of the os2krnl file, the loaded image is now
270 scanned to determin which build, debug/retail and smp/uni.
271 *16-bit logging.
272 *Extract.exe rule. Extract.exe program generates the
273 SymDb.c source file found in dev16 from a collections of
274 kernel symbol files.
275
276 2000-02-25: Christoph Bratschi <cbratschi@datacomm.ch>
277 - COMCTL32: added listview unicode support
278 fixed treeview WM_VSCROLL, trap in UNILIB
279
280 2000-02-24: Achim Hasenmueller <achimha@innotek.de>
281 - COMCTL32: Added infoPtr == NULL checks in tooltips control
282 to prevent crashes when tooltip creation fails
283
284 2000-02-25: Sander van Leeuwen <sandervl@xs4all.nl>
285 - OPENGL\GLIDE: Added Odin version of Glide based on the OS/2 port
286 written by Craig Ballantyne. (Voodoo 1 & Voodoo 2)
287 NOTE: Includes 3dfx Glide license
288
289 2000-02-24: Sander van Leeuwen <sandervl@xs4all.nl>
290 - USER32: WS_MAXIMIZE & WS_MINIMIZE flags updated when necessary
291 Changed/fixed RedrawWindow -> fixes lack of erase background
292 msg in AbiWord rebar control & Papyrus start dialog
293 TODO: Pingpong.exe broken again. Need to fix this correctly
294 Hide caret in BeginPaint, show it in EndPaint
295 - GDI32: CreateICA/W bugfix (Open32 tests lpszDriver for NULL even though it's ignored)
296 (fixes Papyrus error message about CreateIC)
297 - COMCTL32: Fixed wrong calling convention for property sheet handlers
298 (prsht.h in include\win)
299 This fixes crashes in VPBUDDY (preferences dialog) AND (!)
300 fixes the empty preferences dialog in both debug & release
301 builds.
302 NOTE: I've fixed similar bugs before. Somebody should verify
303 all comctl32 handlers...
304
305 2000-02-23: Christoph Bratschi <cbratschi@datacomm.ch>
306 - USER32: export 55AA pattern functions for COMCTL32
307 fixed EN_CHANGED
308 - COMCTL32: converted to C++ -> needs nmake dep
309 ported animate control
310
311 2000-02-22: Sander van Leeuwen <sandervl@xs4all.nl>
312 - WINMM/GDI32/KERNEL32/USER32: Fixed compile problems for release build
313 - USER32: Fixed bug in window class ctor (windowProc not set to 0)
314 (only showed up in release build)
315 - KERNEL32: Fixed bug in commitPage (winimagepeldr.cpp)
316 (only showed up in release build)
317 Fixed wrong calling convention for SetLastError calls
318 in OSLibiGetModuleHandleA
319 (only showed up in release build)
320 Fixed wrong calling convention for SetLastError calls
321 in oslibdos.cpp.
322
323 2000-02-22: Christoph Bratschi <cbratschi@datacomm.ch>
324 - COMCTL32: merged with Corel WINE 20000212
325 added common base functions
326
327 2000-02-21: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
328 - CRTDLL: Added wtol, wtoi, setsystime, getsystime
329
330 2000-02-21: Christoph Bratschi <cbratschi@datacomm.ch>
331 - USER32: merged controls and nc code with Corel WINE 20000212
332 added WS_EX_CONTEXTHELP button
333
334 2000-02-21: knut st. osmundsen <knut.stange.osmundse@pmsc.no>
335 - WIN32K: *Initial support for UNIX-styled scripts
336 (files starting with an #!<interpreter> [args...])
337 This is a _very_ big hack! But never the less it's working.
338 (or at least it seems like working...)
339 *The kernel symbol importer is enhanced to support more
340 generic function prologs and to import variables and
341 16-bit functions.
342 *Segments are now locked in physical memory.
343 (Note, last changes have not been tested on Aurora yet,
344 but it will hopefully work just fine.)
345
346 2000-02-21: Sander van Leeuwen <sandervl@xs4all.nl>
347 - GDI32: SetDIBits bugfix (for dib sections)
348 - USER32: Ported all Wine accelerator apis (fixes keys in calc)
349
350 2000-02-21: Jens Wiessner <wiessnej@rfi.de>
351 - RASAPI32: Added stubs
352 - OLEPRO32: Ported Corel Wine stub dll
353 - CRTDLL: Replaced some stubs
354
355 2000-02-18: Sander van Leeuwen <sandervl@xs4all.nl>
356 - OPENGL\GLIDE: Added Odin version of Glide based on the OS/2 port
357 written by Craig Ballantyne. (Voodoo 1)
358 NOTE: Includes 3dfx Glide license
359
360 2000-02-17: Sander van Leeuwen <sandervl@xs4all.nl>
361 - KERNEL32: Fixed memory map view bug (main map deleted when there
362 were still views left) -> fixes crash when playing Realplayer
363 video (.rm) files
364 - WINMM: Added new logging feature + fixed waveout query format bug
365
366 2000-02-16: Christoph Bratschi <cbratschi@datacomm.ch>
367 - COMCTL32: treeview: switched to unicode, fixed many bugs
368
369 2000-02-16: Sander van Leeuwen <sandervl@xs4all.nl>
370 - KERNEL32/USER32/GDI32: Added new logging feature which allows users
371 to disable or enable logging for separate source
372 files. (see Logging.txt for details)
373 - GDI32: SetDIBitsToDevice fix for RealPlayer 7 (store the right bitmap
374 size in the BITMAPINFO structure before calling Open32)
375
376 2000-02-15: Sander van Leeuwen <sandervl@xs4all.nl>
377 - USER32: SetWindowPos bugfix (returned before hiding or showing windows)
378 Fixes Delphi apps
379 - KERNEL32: Fixed Release method of LX dlls (didn't delete object)
380 Fixed cpuhlp assembly functions (compiler changes calling
381 convention with optimizations on (stores parameter in eax
382 instead of on the stack)
383
384 2000-02-14: Sander van Leeuwen <sandervl@xs4all.nl>
385 - COMCTL32: Added Wine license
386 - KERNEL32: Search in path for dlls if the pe loader can't find them
387 (RP7 loads pngu3264.dll by changing PATH and then calling
388 LoadLibrary)
389
390 2000-02-14: Christoph Bratschi <cbratschi@datacomm.ch>
391 - USER32: merged combobox with Corel 20000212
392 - COMCTL32: merged treeview with Corel 20000212 and continued rewrite
393
394 2000-02-12: Christoph Bratschi <cbratschi@datacomm.ch>
395 - USER32: added v5.00 messages to wndmsg.cpp
396 - GDI32: LineDDA fix
397
398 2000-02-12: David Raison <djr@lemur.co.uk>
399 - OLE32: Fixed IsEqualIID issue
400
401 2000-02-11: Vit Timchishin <tvv@sbs.kiev.ua>
402 - KERNEL32: Fix for OpenFile; fill in OFSTRUCT even if api fails
403 (needed for Acrobat Reader 4.0)
404
405 2000-02-10: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
406 - /tools/database/ + /src/makefile: Odin32 API DB.
407
408 2000-02-10: Christoph Bratschi <cbratschi@datacomm.ch>
409 - USER32: added some stubs
410 fixed wrong pixels at the right side of menu items
411 - COMCTL32: implemented LVS_NOSORTHEADER
412 increased statusbar height (temporal hack)
413 first steps of treeview rewrite
414
415 2000-02-10: Sander van Leeuwen <sandervl@xs4all.nl>
416 - GDI32: Added support for memory map handles in CreateDIBSection
417 Fixed CreateICA/W; Open32's version is case sensitive whereas
418 win32's apparently isn't.
419 - TOOLS\makefile: fixed clean build
420 - src\makefile: fixed clean build
421 - src\makefile.smp: fixed incorrect dir change
422
423 2000-02-10: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
424 - *: Updated the source tree to use autogenerated dependencies.
425 You will have to do a 'nmake dep' from either /src or / before
426 being able to make anything.
427 -All makefiles is required to have a 'dep' rule.
428 -All dll makefiles is now required to have a 'lib' rule which
429 makes the libraries for the module. This rule should also
430 check that the library in $(PDWIN32_LIB) is up-to-date.
431 - Tools/FastDep: Dependency tool. (Fast=Quick-and-Dirty)
432 Moved from /src/win32k. This is currently used to generate
433 dependency information.
434 Note that it doesn't have any precompiler logic! This is causeing
435 some warnings...
436 - include/pdwin32.tool: Two new tools DEPEND and DOWITHDIRS.
437 - src/makefile: used the DOWITHDIRS to do cleanup, lib and dep.
438
439 2000-02-10: Edgar Buerkle <Edgar.Buerkle@gmx.net>
440 - GDI32: Fix alignment for 1 & 4 bits bitmaps (dibsection)
441 - NTDLL: Pretend no debugger is active in NtQueryInformationProcess
442
443 2000-02-09: Sander van Leeuwen <sandervl@xs4all.nl>
444 - USER32: Implemented WaitForInputIdle
445 ScrollWindow fix; don't call InvalidateRect as WinScrollWindow
446 already invalidates the area (and the call to InvalidateRect was
447 wrong as it has to include the erase flag; should have called
448 RedrawWindow instead)
449 - KERNEL32: WinExec: Wait for process to block on input before
450 returning
451 - OpenGL base, GLUT, GLU: Added version resource, removed dll exitlist
452 handlers
453
454 2000-02-09: Knut Stange Osmundsen (knut.stange.osmundsen@pmsc.no)
455 - OpenGL base, GLUT, GLU: NODEBUGINFO implemented in the makefiles.
456
457 2000-02-09: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
458 - ODIN.INI: OPENGL32.DLL <--> OPENGL.DLL translation, since
459 WinXX OpenGL apps can be dynamically linked with
460 MS OpenGL (OPENGL32.DLL) *or* SGI OpenGL (OPENGL.DLL).
461
462 2000-02-09: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
463 - OpenGL base: Various minor fixes
464 - OpenGL GLUT: Various minor fixes
465 - OpenGL GLU: 'Native' port of SGI GLU
466
467 2000-02-08: Knut Stange Osmundsen <knut.stange.osmundsen>
468 - Win32k: Temporarily disabled some unused imported kernelfunctions.
469 Corrected a problem with overloading _ldrEnum32bitRelRecs;
470 it failed on WS4eB. (Message 'DosDevIOCtl failed')
471
472 2000-02-08: Sander van Leeuwen <sandervl@xs4all.nl>
473 - USER32: Don't use shell positioning for child windows (breaks Notes)
474 Turn of WM_BACKERASEBKGND when calling RedrawWindow to
475 invalidate a window (without erase flag set; but also without
476 noerase) -> fixes flickering in pingpong Opengl sample
477 - KERNEL32: Search path for executables when they can't be found in
478 the current directory.
479
480 2000-02-07: Christoph Bratschi <cbratschi@datacomm.ch>
481 - KERNEL32: Ported more Wine thunk apis
482
483 2000-02-07: Sander van Leeuwen <sandervl@xs4all.nl>
484 - USER32: Fix for DCX_INTERSECTRGN in GetDCEx (use ExtSelectClipRgn
485 to combine current & new clip region)
486 - ADVAPI32: Ported Wine LookupAccountSidA/W (semi-stubs now)
487
488 2000-02-06: Jens Wiessner <wiessnej@rfi.de>
489 - WINMM: Updated MCI dlls (added version info)
490
491 2000-02-06: Sander van Leeuwen <sandervl@xs4all.nl>
492 - KERNEL32: Changed GetProcessDword ordinal to 18
493 - USER32: Temporarily commented out shellposition changes
494 (breaks i.e. calc & Notes)
495 Started rewriting BeginPaint/EndPaint + DC apis
496
497 2000-02-06: Christoph Bratschi <cbratschi@datacomm.ch>
498 - USER32: ported WinHelpA from WINE
499
500 2000-02-05: Christoph Bratschi <cbratschi@datacomm.ch>
501 - USER32: WM_SETHOTKEY: save data
502 prototype for WS_EX_CONTEXTHELP button
503 check WS_EX_RIGHT in button control
504 fixed tasklist entry
505 implemented CW_USEDEFAULT with FCF_SHELLPOSITION
506
507 2000-02-05: Sander van Leeuwen <sandervl@xs4all.nl>
508 - KERNEL32: Memory map fixes (file maps)
509 - USER32: mdi child creation fix (child still not activated when created)
510 Default WM_ERASEBKGND handler change (only erase invalid area)
511 (note: might be wrong; have to check this in NT; probably
512 need to rewrite code that sends those messages)
513 -> fixes redraws for i.e. windows behind menu windows
514 - GDI32: Don't use Open32 apis to load opengl32 (nor for GetProcAddress)
515 Import wgl* apis
516 - OPENGL: Removed OS2wgl apis (they had the wrong calling convention
517 -> causes crashes in gdi32 when compiled with optimizations on)
518
519 2000-02-04: Markus Montkowski <mmontkowski@gmx.de>
520 - DDRAW: Many minor/major bugfixes at numerous places
521 - DSOUND: Fixed GetCurrentBufferPos in the virtual player
522
523 2000-02-04: Sander van Leeuwen <sandervl@xs4all.nl>
524 - ALL: Added version resource (if not already present)
525 Link with dllentry.obj (those dlls that don't need custom dll
526 entrypoints)
527 Clean up in process detach handler of win32 libmain
528 (except for a few core dlls (gdi32/user32/kernel32))
529 - DLLENTRY: Standard dll entrypoint
530
531 2000-02-04: Christoph Bratschi <cbratschi@datacomm.ch>
532 - COMCTL32: merged with WINE 20000130
533
534 2000-02-03: Jens Wiessner <wiessnej@rfi.de>
535 - NTDLL: Ported Wine security apis
536 - CRTDLL: Update
537
538 2000-02-03: Christoph Bratschi <cbratschi@datacomm.ch>
539 - USER32: merged controls with WINE 20000130
540
541 2000-02-03: Daniela Engert <dani@ngrt.de>
542 - GDI32: Implement RGB 555 to RGB 565 conversion in assembler
543
544 2000-02-03: Sander van Leeuwen <sandervl@xs4all.nl>
545 - WININET: Ported Wininet code from Corel Wine tree
546 - INCLUDE\WINSOCK: MS Winsock compatible header
547 - GDI32: Prelimary RGB 555 to RGB 565 conversion in SetDIBitsToDevice
548 (will be rewritten in assembly for better performance)
549 (for RealPlayer videos in 16 bits mode)
550 BitBlt fix (return after dibsection blit -> fixes Quake 2)
551 Added MMX RGB conversion.
552 - USER32: Added export for OS2ToWin32Handle
553 - COMDLG32: Merged with latest Wine version (20000109)
554 - INCLUDE\WIN: Fixes to compile comdlg32 in C mode
555 (will be rewritten in assembly for better performance)
556 (for RealPlayer videos in 16 bits mode)
557 BitBlt fix (return after dibsection blit -> fixes Quake 2)
558
559 2000-02-01: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
560 - OPENGL: Ported SGI GLUT sources + Opengl update
561
562 2000-02-01: Sander van Leeuwen <sandervl@xs4all.nl>
563 - GDI32: Cleaned up
564 Fixes for dib section apis. RealPlayer 7 can play videos
565 now (correct in 24 bps mode; upside down and wrong colors
566 in 16 bps mode)
567
568 2000-02-01: Knut Stange Osmundsen <knut.stange.osmundsen>
569 - Pe2Lx: Makefile should be working again.
570 - KERNEL32: RegisterPe2LxDll - no detach is done for Pe2Lx/Win32k DLLs.
571 This is a temporary fix.
572
573 2000-02-01: Patrick Haller <phaller@gmx.net>
574 - SHELL32: Added PathSkipRootAW
575
576 2000-02-01: Jens Wiessner <wiessnej@rfi.de>
577 - NTDLL: Updated .def file (similar to NT 4 SP6) + bugfix for impdef
578
579 2000-01-31: Sander van Leeuwen <sandervl@xs4all.nl>
580 - USER32: GetDCEx with window handle 0 fails in Windows 98; now it also
581 returns an error in Odin.
582 GetWindowDC & GetDC use the desktop window handle if hwnd == 0
583 (before calling GetDCEx)
584 - GDI32: Set dibsection bitmap data to 0 when allocating it.
585
586 2000-01-30: Sander van Leeuwen <sandervl@xs4all.nl>
587 - PELDR: Fixed error messages for images without fixups (peldr.dll no
588 longer required)
589 - GDI32: Removed wrong bugfix for GetDIBits (breaks Lotus Notes)
590 - USER32: Don't check for window visibility when calling SetWindowPos
591 in SetMenu. (fixes menu in standard minesweeper)
592 (NOTE: May need to call SetWindowPos with SWP_FRAMECHANGED
593 when showing a window (see Wine code))
594 Put back GetMenuStringA fix (return length of string if string pointer
595 or size parameter == 0) (almost fixes Realplayer 7 menu)
596
597 2000-01-29: Sander van Leeuwen <sandervl@xs4all.nl>
598 - GDI32: Save and restore FPU control word when calling
599 Open32's DrawText. DrawText trashes it which causes drawing
600 problems in RealPlayer 7.
601 - USER32: Call DrawTextA in uitools.cpp, not Open32's DrawText.
602 Fix for SetWindowPos for showing hidden windows
603 (call ShowWindow) -> fixed non-visible button bar in mIRC
604 Don't set WS_VISIBLE on by default. Windows are made visible
605 during creation by calling ShowWindow.
606 Call UpdateWindow for client window, not the frame.
607 - INCLUDE\WIN\wingdi.h: Added GdiFlush declaration
608 - INCLUDE\makefiles: Added c/c++ definitions for win32 apps (without
609 -D__WINE__ so you don't need to specify whether you use the ascii
610 or unicode version of a win32 api)
611
612 2000-01-29: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
613 - KERNEL32: Added GlobalWire/GlobalUnwire
614
615 2000-01-28: Sander van Leeuwen <sandervl@xs4all.nl>
616 - GDI32: Wrong return values for GetDIBits & SetDIBitsToDevice
617 (nr of scan lines copied; not true/false)
618 - USER32: Don't call default frame handler for WM_ADJUSTWINDOWPOS
619 (fixes window resize when playing videos in RealPlayer v7 &
620 dragging titlebar in Professional Mine Sweeper)
621
622 2000-01-28: Knut St. Osmundsen <knut.stange.osmundsen@pmsc.no>
623 - Win32k: Heap is splitted into a swappable and a resident heap.
624 Fixups are now applied when a page is loaded from disk.
625 This is done by overloading the kernel function called
626 (_)ldrEnum32bitRelRecs. This should improve performance a lot!
627
628 2000-01-27: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
629 - OPENGL: First version of opengl implementation
630
631 2000-01-27: Sander van Leeuwen <sandervl@xs4all.nl>
632 - USER32: Fixed FS corruption in OSLibPostThreadMessage
633 Send WM_CHILDACTIVATE to child windows (not only
634 to MDI children) instead of WM_ACTIVATE
635 - SHELL32: Fixed FS corruption in DragAcceptFiles
636
637 2000-01-26: Yuri Dario <mc6530@mclink.it>
638 - INCLUDE\WIN: Additions & changes for compiling Opera.
639 - many dlls: create correct library (impdef)
640
641 2000-01-26: Jeroen van den Horn <J.vandenHorn@fibre.a2000.nl>
642 - GDI32: Changes for Opengl support
643
644 2000-01-26: Christoph Bratschi <cbratschi@datacomm.ch>
645 - USER32: fixed WM_MOVE, MsgFormatFrame and WM_WINDOWPOS* to use parent
646 coordinates
647 changed min frame size
648 - COMCTL32: fixed wrong progress frame
649
650 2000-01-26: Sander van Leeuwen <sandervl@xs4all.nl>
651 - OLEAUT32: Don't create logfile when logging is turned off
652 - PELDR: Don't modify cmd line in PIB structure
653 - INCLUDE: Removed string.h.
654 - KERNEL32: Added workaround for OS/2 DosSetMem bug in VirtualAlloc
655 (if memory is reserved, set read & write page flags)
656
657 2000-01-25: Sander van Leeuwen <sandervl@xs4all.nl>
658 - PELDR/KERNEL32: Allocate low memory at right address and with right size
659 in peldr.dll (fixes install of Windows Media Player)
660 - KERNEL32: Print thread id for each log message
661
662 2000-01-22: Michal Necasek <mike@mendelu.cz>
663 - DINPUT: Fixes + basic functionality is complete; enough for many games
664
665 2000-01-21: Sander van Leeuwen <sandervl@xs4all.nl>
666 - USER32: Put back old WM_MOVE, MsgFormatChanged & OSLibSWPToWINDOWPOSFrame
667 Previous changes broke many apps (VPBuddy, MIrc32)
668 Don't update window if style changes (responsibility of the app)
669 Store window menu & id in same variable (fixes clock ->
670 double click on analog window -> titlebar & menu gone; menu
671 used to stay there)
672 Put back WM_CALCVALIDRECT code in pmwindow. Fixes updates
673 of clock window (who's class has CS_H/VREDRAW style).
674 - KERNEL32: Fixed image loading for resource lookup only (don't care
675 where those images are loaded as we only use it to query
676 the version resource; so base address doesn't matter)
677 (-> RealPlayer 7 installs now)
678
679 2000-01-20: Sander van Leeuwen <sandervl@xs4all.nl>
680 - KERNEL32: Disabled creation of pe_x.log if logging disabled
681 Only get codepage once from odin.ini.
682
683 2000-01-20: Vit Timchishin <tvv@sbs.kiev.ua>
684 - KERNEL32: Codepage bugfix & unicode translation changes (heapstring.cpp)
685 - GDI32: Added codepage support for CreateCompatibleDC
686
687 2000-01-20: Christoph Bratschi <cbratschi@datacomm.ch>
688 - USER32: fixed WM_CONTEXTMENU
689 dispatch WM_MOUSEMOVE in menu loop
690
691 2000-01-18: Sander van Leeuwen <sandervl@xs4all.nl>
692 - USER32: Removed 'old' user32 and replaced it with the new one
693 Call default window proc when DefMDIChildProcA/W is called
694 for a non-MDI window.
695 Fixed menu check & submenu marks painting
696 - KERNEL32: Increased shared heap reserve size to 512 kb
697 - SHELL32: Display Odin logo in Shell about dialog box
698
699 2000-01-18: Jens Wiessner <wiessnej@rfi.de>
700 - WINMM\WAVEMAP
701 Updated to Wine level 20000109 + corrected compile
702 - MCICDA: ported MCICDA.DLL from Wine 20000901 (Linux cdrom calls stubbed
703 so it doesn't work)
704
705 2000-01-17: Sander van Leeuwen <sandervl@xs4all.nl>
706 - USER32\NEW: Added basic support for DInput WM_CHAR notification
707 (the rest needs to be done in dinput.dll)
708 Use KEYBOARD_Enable user32 export to (un)register WM_CHAR
709 handler. (WNDPROC type) It's called when a WM_CHAR message
710 arrives for an Odin window with hwnd, msg, wParam & lParam.
711 - DINPUT: Fixed bugs reported by Michal Necasek
712
713 2000-01-16: Christoph Bratschi <cbratschi@datacomm.ch>
714 - USER32/NEW: implemented sysmenu commands: SC_SIZE and SC_TASKLIST
715 fixed WM_MOVE
716 changed HTCAPTION system menu position
717 changed maximized window position
718 don't move/size maximized windows
719
720 2000-01-15: Jens Wiessner <wiessnej@rfi.de>
721 - TWAIN_32: Update
722 - WINMM\MCIANIM,MCIAVI32,MCISEQ,MCIWAVE,MIDIMAP
723 Updated to Wine level 20000109 + corrected compile errors
724 - WINMM: Ported Wine wave mapper.
725
726 2000-01-15: Sander van Leeuwen <sandervl@xs4all.nl>
727 - USER32\NEW: Fixed scroll repaints (never use GetMessage with window
728 handle as that can prevent WM_PAINTs from being dispatched)
729 (may need reworking of Get/PeekMessage instead)
730 ScrollWindow changes
731 Removed frame drawing 'bugfix'.
732 Fixed system menu position for child windows (i.e. MDI)
733 Fixed titlebar tracking for child windows (i.e. MDI)
734 - KERNEL32: Check for null pointers in lstrcmpA
735
736 2000-01-15: Christoph Bratschi <cbratschi@datacomm.ch>
737 - USER32/NEW: cache menu and caption drawing
738 changed minimize button position
739 don't redraw system menu icon in menu.cpp
740 hilighted menubar items don't have an edge in Win9x
741 don't open system menu on mouseover if menubar is used and vice versa
742 show sysmenu on WM_NCRBUTTONUP with HTCAPTION set (todo: position)
743 use WIN32_STDCLASS2 for windows with CS_SAVEBITS class style
744
745 2000-01-14: Christoph Bratschi <cbratschi@datacomm.ch>
746 - USER32/NEW: added caption clipping for faster window text updates
747
748 2000-01-14: Sander van Leeuwen <sandervl@xs4all.nl>
749 - USER32\NEW: Fixed min/max bug for mdi child windows
750 Fixed DrawMenuBar (invalidate frame rectangle in
751 FrameUpdateClient if client rectangle wasn't changed)
752 Fixed bugs in MsgFormatFrame & SendNCCalcSize
753 Fixed WM_WINDOWPOSCHANGED translation for frame window (not done yet)
754 (Winamp works now)
755 Removed code that's no longer used (subclassed OS/2 frame
756 controls & OS/2 scrollbar functions etc)
757
758 2000-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
759 - USER32\NEW: WM_ACTIVATEAPP should be sent when another process' window
760 is activated or deactivated
761 Send correct thread id for non-Odin windows in WM_ACTIVATEAPP
762 Set window handle of non-Odin window to window desktop in WM_ACTIVATE
763 Return window desktop handle for window handle returned by
764 SetActiveWindow if window is non-Odin.
765 Fixed activation of windows. (send WM_ACTIVATE when receiving
766 a WM_WINDOWPOSCHANGED message in pmframe.cpp)
767 Fixed DrawFrame; bottom & right frame borders now drawn correctly
768 Fixed scrollbar positioning (style.exe)
769 Fixed CS_OWNDC for GetDCEx (DCX_WINDOW); don't use a window
770 DC to save/restore a window's own dc.
771 Fixed client rectangle problems. Client rectangles
772 are always in frame coordinates; window rectangles in
773 screen coordinates. Whenever necessary (i.e WM_MOVE)
774 client coordinates are converted to coordinates relative
775 to it's parent client window.
776 Changed WM_MOVE -> client coordinates relative to parent origin
777 if child; otherwise relative to screen origin. (needs testing)
778 (WM_NCCALCSIZE needs to be done as well)
779 - COMCTL32: Version resource version nrs changed (based on NT 4 SP3)
780 - KERNEL32: Added DisableLogging & EnableLogging functions to
781 disable logging in parts of code. Logging will only be
782 done if the logcount is bigger than 0.
783
784 2000-01-12: Christoph Bratschi <cbratschi@datacomm.ch>
785 - USER32/NEW: fixed WM_CALCVALIDRECTS
786 activated WM_NCPAINT clipping
787 added improved frame redraw mechanism
788
789 2000-01-12: Sander van Leeuwen <sandervl@xs4all.nl>
790 - USER32\NEW: Changed client rectangle positioning (not done by PM frame
791 handler anymore) -> fixes problems with Shell About dialog
792 and jumping controls when resizing (Winhlp32)
793 Fixed menu tracking for different submenus
794 Fixed delayed repaints of invalidated menu rectangles
795 Ported Wine messagebox code. (for GUI consistency)
796 Fixed bugs in ShowScrollBar. (vert. scrollbar wasn't enabled
797 in notepad)
798 Fixed 'frame' control updates (resizing client window in
799 SetWindowPos for SWP_FRAMECHANGED)
800
801 2000-01-11: Jens Wiessner <wiessnej@rfi.de>
802 - TWAIN_32: Bugfix (removed test code)
803
804 2000-01-11: Christoph Bratschi <cbratschi@datacomm.ch>
805 - USER32/NEW: fixed AdjustWindowRectEx
806
807 2000-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
808 - USER32\NEW: Put nonclient code in win32wbasenonclient.cpp
809 Removed hardcoded dependancy on shell32; load it on-demand
810 Fixed LoadBitmap (OBM_RADIOCHECK was missing from system bitmap list)
811 Fixed wrong return value for OSLibWinGetMsg
812 Workaround for bug in GDI32 FillRect (menu items painted
813 black instead of gray) (menu.cpp, MENU_DrawMenuItem)
814 Applied patch to Wine menu code for RealPlayer
815 Fixed default return value of DefWndProc (0)
816 Fixed SetMenu (menus should be set when a window is no child)
817 Call correct SetMenu function from MsgCreate Win32BaseWindow method
818 Use WIN32_INNERFRAME frame class for top level windows again.
819 (VPBuddy repaint problems were solved by using this class)
820
821 2000-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
822 - USER32: Fixed message translation for WM_TIMER with no window handle or timer proc
823 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
824 - WINMM: Fixed wrong error code for waveOutOpen & waveOutGetDevCaps when
825 there's no audio device
826 - USER32\NEW: Fixed message translation for WM_TIMER with no window handle or timer proc
827 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
828 or button down/up message translation.
829 Fixed LoadBitmap (only load from user32 if it's a system bitmap)
830 Added WM_NCACTIVATE message generation
831 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
832 Changed GetSystemMenu; added method to Win32BaseWindow class
833 (destroy old menu if present and switch back to default system
834 menu if bRevert = TRUE; needs changes in non-client code)
835
836 2000-01-10: Christoph Bratschi <cbratschi@datacomm.ch>
837 - USER32/NEW: activated menu code
838
839 2000-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
840 - USER32: Added border size for top-level windows in OSLibWinConvertStyle
841 (borders are not drawn correctly)
842 Fixed bug in pmframe WM_WINDOWPOSCHANGED handler (don't update
843 client/window rectangle when size nor position have changed)
844 Fixed out of sync rectWindow. (children don't get notified of
845 parent position change -> rectWindow (in screen coord.) not updated)
846 Fixed LoadBitmap for system bitmaps
847 Fixes for win32 titlebar + added win32 system menu
848 System menu commands now work
849 Fixed repaint problem for win32 titlebar
850 Added Christoph's gradient filled title bars code
851 For (experimental) win32-like windows add this to odin.ini:
852 [CUSTOMIZATION]
853 OS2Look=0
854
855 [COLORS]
856 UseWinColors=1
857
858 2000-01-09: David Raison <djr@lemur.co.uk>
859 - OLEAUT32: Typelib - Updated TKIND_ALIAS handling.
860
861 2000-01-09: Christoph Bratschi <cbratschi@datacomm.ch>
862 - USER32/NEW: implemented scrollbar nc handling
863 windows without menus work now fine
864 implemented gradient filled title bars
865
866 2000-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
867 - USER32: ModifyMenuA bugfix (changing menu ids didn't work)
868 OSLibGetMsg bugfix + WM_QUIT translation fix
869 OSLibGetMenuItemRect fix (y coordinate conversion)
870 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
871 or button down/up message translation.
872 - OLE32/OLEAUT32/OLESVR32/OLEDLG/OLECLI32:
873 Added Wine-like license that supercedes the main Odin license
874 - CRTDLL: Fixed many register based floating point exports (CRTDLL__CIcos,
875 CRTDLL__CIatan etc etc)
876
877 2000-01-08: Jens Wiessner <wiessnej@rfi.de>
878 - CRTDLL: Compile fix
879
880 2000-01-08: Patrick Haller <phaller@gmx.net>
881 - SHELL32: Update: to WINE level 2000/01/08
882 - KERNEL32: Add: stub for GetDiskFreeSpaceExAW
883
884 2000-01-06: Christoph Bratschi <cbratschi@datacomm.ch>
885 - GDI32: added PatBlt support for negative width/height
886
887 2000-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
888 - ADVAPI32: Implemented StartServiceCtrlDispatcherA/W
889 Faked RegisterServiceCtrlHandlerA/W (TODO)
890 Partly implemented SetServiceBits/SetServiceStatus
891 Improved QueryServiceStatus
892 Call RtlCreateAcl in InitializeAcl
893 - LZ32: Create correct library
894 - CRTDLL: Fixed CRTDLL__wcsnicmp (use Wine version)
895 - VERSION: Fixed VerQueryValue32A and merged with latest Wine sources
896 (991212) (-> fixes errors in RealPlayer)
897 - USER32: GetMenuStringA fix (return length of string if string pointer
898 or size parameter == 0)
899
900 2000-01-05: Jens Wiessner <wiessnej@rfi.de>
901 - TWAIN_32: Update
902
903 2000-01-05: Christoph Bratschi <cbratschi@datacomm.ch>
904 - USER32/NEW: single window works now
905
906 2000-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
907 - KERNEL32/NTDLL: Partially implemented NtOpenThreadToken
908 (should be changed)
909 MS Office 2000 install (first part) almost working.
910 (installs windows installer as system service)
911 - OLEAUT32: Typelib bugfix for MS Office 2k install
912 - odin_ini.txt: Added information about CODEPAGES & TWAIN section
913
914 2000-01-05: David Raison <djr@lemur.co.uk>
915 - OLEAUT32: LHashValOfNameSys(A)
916
917 2000-01-04: Jens Wiessner <wiessnej@rfi.de>
918 - TWAIN_32: Created twain dll for usage with CFM Twain for OS/2.
919
920 2000-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
921 - USER32: InsertMenu bugfix (RealPlayer calls InsertMenu with flag 0 & pos -1)
922 Delete old region in SetWindowRegion
923
924 2000-01-03: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
925 - KERNEL32: Named pipe updates & bugfixes
926
927 2000-01-03: Jens Wiessner <wiessnej@rfi.de>
928 - LZ32/TAPI32: Updated def files to match NT 4 SP6
929 - MSVCRT: Updated def files + MSVCRT40 version info
930 - WINMM: Added Wine's MCI dlls (not compiled as this requires
931 a working MCI subsystem in winmm and a redesign of
932 wave & midi)
933
934 2000-01-03: Sander van Leeuwen <sandervl@xs4all.nl>
935 - LZ32: Cleaned up .def file (don't import directly) & removed
936 debugtools.h
937 - USER32: Fixed PostThreadMessage + bugs in GetMessage
938 - KERNEL32: Set hmq & hab THDB values for newly created
939 threads (hmq not correct now)
940
941 2000-01-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
942 - KERNEL32: Started implementing named pipe apis
943
944 2000-01-02: David Raison <djr@lemur.co.uk>
945 - OLEAUT32: Typelib fixes - Custom Data & Default values.
946 Added private logging to tlib_n.log when reading a TLIB.
947 (Should clarify what is being read & why)
948 Now supports embedded named TLIBS in the format
949 <path>\<libname>\<id> (required for VB6, etc.)
950 Preparatory work to reduce dependance on
951 current file position to enable delaying parsing
952 data until it is requested by user.
953
954 2000-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
955 - USER32: Implemented Set/GetWindowRgn (not activated)
956 - KERNEL32: Fixed Odin zombie processes when there's a trap inside
957 vfprintf during logging.
958 Cleaned up file io procedures in oslibdos.cpp
959
960 2000-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
961 - USER32: Workaround for crash in Lotus Notes when switching to a new
962 view (PM sends WM_WINDOWPOSCHANGED msg after DestroyWindow
963 has been called for a window -> don't dispatch this msg)
964
Note: See TracBrowser for help on using the repository browser.