AcxCircuitInitSetCircuitType 函式 (acxcircuit.h)
AcxCircuitInitSetCircuitType 函式可用來設定 ACXCIRCUIT 的線路類型。
語法
void AcxCircuitInitSetCircuitType(
PACXCIRCUIT_INIT CircuitInit,
ACX_CIRCUIT_TYPE CircuitType
);
參數
CircuitInit
定義線路初始化的ACXCIRCUIT_INIT結構。 ACXCIRCUIT_INIT是用於線路初始化的不透明物件。 使用 AcxCircuitInitAllocate 初始化ACXCIRCUIT_INIT結構。
CircuitType
用來定義線路類型的 ACX_CIRCUIT_TYPE列舉 。 例如,AcxCircuitTypeRender、AcxCircuitTypeCapture 或 AcxCircuitTypeOther。
傳回值
無
備註
範例
範例使用方式如下所示。
ACX_CIRCUIT_TYPE circuitType = AcxCircuitTypeRender;
// The driver uses this DDI to specify the circuit type. The
// circuit type can be AcxCircuitTypeRender, AcxCircuitTypeCapture,
// AcxCircuitTypeOther, or AcxCircuitTypeMaximum (for validation).
//
AcxCircuitInitSetCircuitType(circuitInit, AcxCircuitTypeRender);
ACX 需求
最小 ACX 版本: 1.0
如需 ACX 版本的詳細資訊,請參閱 ACX 版本概觀。
規格需求
需求 | 值 |
---|---|
標頭 | acxcircuit.h |
IRQL | <= DISPATCH_LEVEL |