AudioBuffers.Explicit(AudioBuffers to IntPtr) 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
기본 AudioBufferList 구조체의 주소를 반환합니다.
public static explicit operator IntPtr (AudioToolbox.AudioBuffers audioBuffers);
static member op_Explicit : AudioToolbox.AudioBuffers -> nativeint
매개 변수
- audioBuffers
- AudioBuffers
데이터를 추출할 AudioBuffers 클래스입니다.
반환
IntPtr
nativeint
설명
이 개체를 IntPtr로 캐스팅하면 개체에 대한 포인터가 필요한 모든 C API에 전달할 수 있는 기본 데이터 구조로 주소를 가져옵니다.
void ProcessBuffers (AudioBuffers buffers)
{
// Call C-function that takes an AudioBufferList pointer:
// The cast extracts the data.
c_function ((IntPtr) buffers);
}