The DSCCAPS structure describes the capabilities of the capture device. It is used by the IDirectSoundCapture8::GetCaps method.
typedef struct DSCCAPS { DWORD dwSize; DWORD dwFlags; DWORD dwFormats; DWORD dwChannels; } DSCCAPS;
Value | Description |
---|---|
DSCCAPS_CERTIFIED | The driver for the device is a certified WDM driver. |
DSCCAPS_EMULDRIVER | There is no DirectSoundCapture driver for the device, so the standard waveform audio functions are being used. |
DSCCAPS_MULTIPLECAPTURE | Multiple capture objects can be used simultaneously on the capture device. |
Header: Declared in Dsound.h.