Displaying 2 results from an estimated 2 matches for "waveoutcaps".
2011 Jan 15
5
Wave audio problem
I have some problems with wave audio in Wine. It sais that my device does not support any format at all. I run the following
Code:
#include <windows.h>
#include <cstdio>
typedef int (*EnumDevicesCallback)(const WAVEOUTCAPS* caps,void* param_through);
int enumDevices(EnumDevicesCallback onDevice,void* param_through)
{
unsigned int n_devs=waveOutGetNumDevs();
unsigned int i=0;
WAVEOUTCAPS caps;
do
{
waveOutGetDevCaps(i,&caps,sizeof(caps));
if(!onDevice(&caps,param_through))
{return i;}
i++;...
2016 Jan 09
0
Wine release 1.9.1
...commdlg: Explicitely initialize remaining fields of CHOOSECOLORA (Coverity).
user.exe: Fully convert MSG16 to MSG in IsDialogMessage() (Coverity).
riched20: Initialize wEffects field before setting bits in it (Coverity).
msacm32.drv: Initialize reserved fields in WAVEINCAPS/WAVEOUTCAPS (Coverity).
riched20: Preserve higher bits of tabstop values (Coverity).
msxml3: Fix cloneNode() for document nodes.
msxml3: Add missing break for text node case (Valgrind).
msxml3/tests: Fix some leaks while testing attribute values (Valgrind).
msxml3/tests: Fix a min...