XAUDIO2_SEND_DESCRIPTOR Structure

Defines a destination voice that is the target of a send from another voice and specifies whether a filter should be used.

Syntax

typedef struct XAUDIO2_SEND_DESCRIPTOR {
    UINT32 Flags;
    IXAudio2Voice *pOutputVoice;
} XAUDIO2_SEND_DESCRIPTOR;  

Members

Flags
Indicates whether a filter should be used on data sent to the voice pointed to by pOutputVoice. Flags can be 0 or XAUDIO2_SEND_USEFILTER.

pOutputVoice
A pointer to an IXAudio2Voice that will be the target of the send. The pOutputVoice member cannot be NULL.

Remarks

Requirements

Header: Declared in xaudio2.h.

Library: Use xaudio2.lib.