Funzione AcxStreamGetElementById (acxstreams.h)
La funzione AcxStreamGetElementById restituisce l'handle dell'oggetto ACXELEMENT per l'ID elemento richiesto. Per altre informazioni sugli oggetti ACX, vedere ACX - Riepilogo degli oggetti ACX.
Sintassi
ACXELEMENT AcxStreamGetElementById(
ACXSTREAM Stream,
ULONG ElementId
);
Parametri
Stream
Oggetto ACXSTREAM esistente. Un oggetto ACXSTREAM rappresenta un flusso audio creato da un circuito.
ElementId
ID dell'elemento richiesto.
Valore restituito
Handle dell'oggetto ACXELEMENT dell'elemento richiesto o NULL se ACXSTREAM non ha un OGGETTO ACXELEMENT con l'ID specificato.
Commenti
Esempio
Di seguito è riportato l'esempio di utilizzo.
ULONGLONG index = GetMessageContext(Event); // Context is an index.
ACXELEMENT element = nullptr;
//
// Get the ACX element.
//
element = AcxStreamGetElementById(Stream, (ULONG)index);
Requisiti ACX
Versione minima DI ACX: 1.0
Per altre informazioni sulle versioni ACX, vedere Panoramica della versione di ACX.
Requisiti
Requisito | Valore |
---|---|
Intestazione | acxstreams.h |
IRQL | <= DISPATCH_LEVEL |