Defines a destination voice that is the target of a send from another voice and specifies whether a filter should be used.
typedef struct XAUDIO2_SEND_DESCRIPTOR {
UINT32 Flags;
IXAudio2Voice *pOutputVoice;
} XAUDIO2_SEND_DESCRIPTOR;
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.
Header: Declared in xaudio2.h.
Library: Use xaudio2.lib.