ChangeSet ID: 6865
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/02 17:11:56
Modified files:
dlls/oleaut32 : variant.c
Log message:
Marcus Meissner <marcus(a)jet.franken.de>
Handle VT_ERROR->VT_I4/VT_R4 coercion.
VariantCopy does not need to check the return of VariantClear.
VariantCopyInd now copies VT_UNKNOWN and VT_DISPATCH too.
VarCmp handles VT_BOOL.
VarFormat handles VT_BSTR.
coerce_array fixed for VT_ARRAY|VT_UI1 -> VT_BSTR and VT_ARRAY|x ->
VT_SAFEARRAY cases.
VarCat tries to coerce types into VT_BSTR to do cat.
Patch: http://cvs.winehq.com/patch.py?id=6865
Old revision New revision Changes Path
1.50 1.51 +131 -98 wine/dlls/oleaut32/variant.c
ChangeSet ID: 6864
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/02 17:11:19
Modified files:
dlls/oleaut32 : typelib.h typelib.c
Log message:
Marcus Meissner <marcus(a)jet.franken.de>
Process TKIND_ALIAS in SLTG typelibs, 0x14 in the tail is the
tdescAlias.vt entry.
Added a small handler for TKIND_DISPATCH in SLTG.
ITypeLib_Release can have a NULL pointer as ITypeInfo*.
Split out _copy_arg function for both DispCall and ITypeInfo_fnInvoke,
added some more functionality.
ITypeInfo_fnInvoke can handle VT_USERDEFINED variants.
Patch: http://cvs.winehq.com/patch.py?id=6864
Old revision New revision Changes Path
1.13 1.14 +8 -1 wine/dlls/oleaut32/typelib.h
1.84 1.85 +221 -40 wine/dlls/oleaut32/typelib.c
ChangeSet ID: 6863
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/02 17:08:58
Modified files:
dlls/dsound/tests: dsound.c
Log message:
Francois Gouget <fgouget(a)codeweavers.com>
Add the ability of playing a test tone when in interactive mode.
Test both primary and secondary buffers.
Patch: http://cvs.winehq.com/patch.py?id=6863
Old revision New revision Changes Path
1.2 1.3 +360 -59 wine/dlls/dsound/tests/dsound.c
ChangeSet ID: 6860
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/02 17:07:41
Modified files:
tools : winewrap.c
Log message:
Dimitrie O. Paun <dpaun(a)rogers.com>
Support C++ linking with a new -C switch.
Modify the app launcher to pass all options but --debugmsg and --dll
to the app.
Link the wrapper against all of the app's libs.
Drop support for passing the dll names to the launcher.
Patch: http://cvs.winehq.com/patch.py?id=6860
Old revision New revision Changes Path
1.5 1.6 +26 -14 wine/tools/winewrap.c
ChangeSet ID: 6858
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/02 14:13:48
Modified files:
dlls/ddraw/direct3d: mesa.c
dlls/ddraw/d3ddevice: mesa.c
dlls/ddraw : mesa.c
Log message:
Lionel Ulmer <lionel.ulmer(a)free.fr>
- added enumeration of the Reference device (some games seems to need
it to work and they want it enumerated first..)
- some comments about potential problems with Z masking
Patch: http://cvs.winehq.com/patch.py?id=6858
Old revision New revision Changes Path
1.22 1.23 +2 -1 wine/dlls/ddraw/direct3d/mesa.c
1.66 1.67 +15 -4 wine/dlls/ddraw/d3ddevice/mesa.c
1.25 1.26 +10 -2 wine/dlls/ddraw/mesa.c