Partager via


ACX_STREAM_CALLBACKS_INIT fonction (acxstreams.h)

La fonction ACX_STREAM_CALLBACKS_INIT initialise les rappels de flux ACX.

Syntaxe

void ACX_STREAM_CALLBACKS_INIT(
  PACX_STREAM_CALLBACKS Callbacks
);

Paramètres

Callbacks

Structure ACX_STREAM_CALLBACKS .

Valeur de retour

None

Remarques

Exemple


  ACX_STREAM_CALLBACKS        streamCallbacks;

    //
    // Init streaming callbacks.
    //
    ACX_STREAM_CALLBACKS_INIT(&streamCallbacks);
    streamCallbacks.EvtAcxStreamPrepareHardware = EvtStreamPrepareHardware;
    streamCallbacks.EvtAcxStreamReleaseHardware = EvtStreamReleaseHardware;
    streamCallbacks.EvtAcxStreamRun = EvtStreamRun;
    streamCallbacks.EvtAcxStreamPause = EvtStreamPause;
    streamCallbacks.EvtAcxStreamAssignDrmContentId = EvtStreamAssignDrmContentId;

    status = AcxStreamInitAssignAcxStreamCallbacks(StreamInit, &streamCallbacks);


Configuration requise d’ACX

Version minimale d’ACX : 1.0

Pour plus d’informations sur les versions d’ACX, consultez Vue d’ensemble des versions d’ACX.

Configuration requise

Condition requise Valeur
En-tête acxstreams.h

Voir aussi