ChangeSet ID: 12157
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/04/26 18:32:15
Modified files:
include : tchar.h
Log message:
Dimitrie O. Paun <dpaun(a)rogers.com>
Define _T[USX]?CHAR/_TINT/TCHAR types, for compatibility.
Do not depend on other files being included first.
Have the same include graph as the MS headers.
Protect against trying to use libc when not possible.
Cleanups.
Patch: http://cvs.winehq.org/patch.py?id=12157
Old revision New revision Changes Path
1.22 1.23 +53 -14 wine/include/tchar.h
ChangeSet ID: 12155
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/04/26 18:31:11
Modified files:
dlls/winmm/winealsa: audio.c
Log message:
Francois Gouget <fgouget(a)codeweavers.com>
Make sure the 'alsa handle' is initialized to NULL before calling
snd_pcm_open(). Otherwise if it fails we get a crash trying to close
an invalid alsa handle.
Patch: http://cvs.winehq.org/patch.py?id=12155
Old revision New revision Changes Path
1.37 1.38 +3 -1 wine/dlls/winmm/winealsa/audio.c
ChangeSet ID: 12153
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2004/04/26 18:30:26
Modified files:
dlls/winmm/tests: wave.c
Log message:
Francois Gouget <fgouget(a)codeweavers.com>
waveOutGetDevCaps(-1...) must return the capabilities of the Wave
mapper.
DRV_QUERYDEVICEINTERFACE is not supported on all Windows versions.
Check the length returned by DRV_QUERYDEVICEINTERFACESIZE and fix
memory leak.
Some Windows sound drivers allow wild frequencies such as the 2MHz
one. So modify this test to use an invalid number of bits per sample
instead (hopefully that will fail really everywhere).
Patch: http://cvs.winehq.org/patch.py?id=12153
Old revision New revision Changes Path
1.16 1.17 +46 -58 wine/dlls/winmm/tests/wave.c