Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 551 of file mixer.c.
Referenced by LoadDialogCtrls(), MainWindowProc(), and UpdatePrefDlgControls().
{ if (Mixer->hmx) { PSND_MIXER_DESTINATION Line; for (Line = Mixer->Lines; Line != NULL; Line = Line->Next) { if (Line->Info.dwLineID == LineID) { PSND_MIXER_CONNECTION Connection; if (Line->DisplayControls != 0) { if (!EnumProc(Mixer, LineID, &Line->Info, Context)) { return FALSE; } } for (Connection = Line->Connections; Connection != NULL; Connection = Connection->Next) { if (!EnumProc(Mixer, LineID, &Connection->Info, Context)) { return FALSE; } } return TRUE; } } } return FALSE; }