码迷,mamicode.com
首页 > 其他好文 > 详细

VC 检测计算机是否安装有摄像头

时间:2019-01-01 11:11:52      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:rip   code   iostream   end   设备信息   get   index   stdio.h   std   

#include <windows.h>
#include <stdio.h>
#include <iostream.h>
#include "vfw.h"
#pragma comment( lib, "vfw32.lib" )

void main()
{
   
    char strDeviceVersion[80];    //设备版本信息
    char strDeviceAndVersion[160];  //设备名和版本信息
    int nIndex;
    int nDriverCount = 0;                //支持的设备驱动程序个数
   
   
    for(nIndex=0; nIndex <9; nIndex++) 
    { 
        if(capGetDriverDescription(nIndex,(LPSTR)strDeviceAndVersion,sizeof(strDeviceAndVersion),(LPSTR)strDeviceVersion,sizeof(strDeviceVersion))) 
        { 
            strcat(strDeviceAndVersion,","); 
            strcat(strDeviceAndVersion,strDeviceVersion); 
            nDriverCount++;                  //得到vfw设备信息及连的设备数量
        } 
        else 
            break; 
    } 
    if (nDriverCount==0)
        cout <<"没有摄像头"<<endl; 
    else
        cout <<"有摄像头"<<endl; 
}

 

VC 检测计算机是否安装有摄像头

标签:rip   code   iostream   end   设备信息   get   index   stdio.h   std   

原文地址:https://www.cnblogs.com/daggex/p/10204055.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!