ChangeSet ID: 7060
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/15 18:21:04
Modified files:
memory : global.c
Log message:
Michael Stefaniuc <mstefani(a)redhat.de>
The Minolta DiMAGE Image Viewer relies on Global{,Re}Alloc called with
the GMEM_MOVEABLE flag set, to allocate the exact specified size and
no byte more when size is a multiple of 8. To achieve this align the
storage needed for the HGLOBAL in the heap to 8byte boundary.
Patch: http://cvs.winehq.com/patch.py?id=7060
Old revision New revision Changes Path
1.75 1.76 +19 -13 wine/memory/global.c
ChangeSet ID: 7059
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/15 18:20:07
Modified files:
dlls/dsound : mixer.c
Log message:
Francois Gouget <fgouget(a)codeweavers.com>
Use the same 8/16bit conversion routines as in pcmconverter.c.
Reorder the two ifs in the first part of cp_fields to simplify the
code.
Patch: http://cvs.winehq.com/patch.py?id=7059
Old revision New revision Changes Path
1.5 1.6 +28 -43 wine/dlls/dsound/mixer.c
ChangeSet ID: 7058
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/15 18:19:49
Modified files:
dlls/dsound/tests: dsound.c
Log message:
Francois Gouget <fgouget(a)codeweavers.com>
SetFormat may not change the primary buffer format as requested.
Dump the effective format and prepare the tone signal accordingly.
Play tones from the secondary buffers at -3dB rather than -12dB.
Always print the volume the tone is going to be played at.
Remove the gamedev URL.
Patch: http://cvs.winehq.com/patch.py?id=7058
Old revision New revision Changes Path
1.3 1.4 +16 -17 wine/dlls/dsound/tests/dsound.c
ChangeSet ID: 7056
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/01/15 18:19:04
Modified files:
dlls/winmm/wineoss: audio.c
Log message:
Francois Gouget <fgouget(a)codeweavers.com>
Return MMSYS_NOERROR even if we don't open the device with the
requested format, otherwise OSS_OpenDevice will not increment
open_count.
Use -1 to signal OSS_RawOpenDevice not to do ioctls because 0 is
ambiguous (also means mono as opposed to stereo).
Patch: http://cvs.winehq.com/patch.py?id=7056
Old revision New revision Changes Path
1.72 1.73 +33 -28 wine/dlls/winmm/wineoss/audio.c