Re: Strange waveOutGetDevCaps calls in winmm/tests/wave.c

2008-04-18 Thread Peter Åstrand
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

Re: Strange waveOutGetDevCaps calls in winmm/tests/wave.c

2008-04-16 Thread Juan Lang
> 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

Strange waveOutGetDevCaps calls in winmm/tests/wave.c

2008-04-16 Thread Peter Åstrand
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