On Wed, 16 Apr 2008, Juan Lang wrote:
> > The CapsA test doesn't fail, probably since winmm wraps CapsA calls with
> > CapsW calls and then does memcpy. In either case, calling
> > waveOutGetDevCaps sith size=4 is not valid, as far as I can tell.
> > Theoretically, it might be in the future, t
> The CapsA test doesn't fail, probably since winmm wraps CapsA calls with
> CapsW calls and then does memcpy. In either case, calling
> waveOutGetDevCaps sith size=4 is not valid, as far as I can tell.
> Theoretically, it might be in the future, though, if some small caps
> structure is inven
winmm/tests/wave.c currently contains:
rc=waveOutGetDevCapsA(device,&capsA,4);
ok(rc==MMSYSERR_NOERROR,
"waveOutGetDevCapsA(%s): MMSYSERR_NOERROR expected, got %s\n",
dev_name(device),wave_out_error(rc));
rc=waveOutGetDevCapsW(device,&capsW,4);
ok(rc==MMSYSERR_NOERR