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 |