설치된 캡처 드라이버 열거
다음 예제에서는 capGetDriverDescription 함수를 사용하여 설치된 캡처 드라이버의 이름과 버전을 가져옵니다.
char szDeviceName[80];
char szDeviceVersion[80];
for (wIndex = 0; wIndex < 10; wIndex++)
{
if (capGetDriverDescription(
wIndex,
szDeviceName,
sizeof (szDeviceName),
szDeviceVersion,
sizeof (szDeviceVersion)
))
{
// Append name to list of installed capture drivers
// and then let the user select a driver to use.
}
}
관련 항목