Sound Component Link Structure
The third parameter passed toSndSetInfo
for thesiPreMixerSoundComponent
information selector is a pointer to a sound component link structure. A sound component link structure is defined by theSoundComponentLink
data type.
struct SoundComponentLink { ComponentDescription description; SoundSource mixerID; SoundSource * linkID; }; typedef struct SoundComponentLink SoundComponentLink; typedef SoundComponentLink *SoundComponentLinkPtr;
Field Description
description
- A component description record.
mixerID
- A mixer ID.
linkID
- A link ID. Set this value to
NULL
.- Note
- The ComponentDescription structure is described in Inside Macintosh: More Macintosh Toolbox.