VC语言

本类阅读TOP10

·VC++ 学习笔记(二)
·用Visual C++打造IE浏览器(1)
·每个开发人员现在应该下载的十种必备工具
·教你用VC6做QQ对对碰外挂程序
·Netmsg 局域网聊天程序
·Windows消息大全
·VC++下使用ADO编写数据库程序
·VC++学习笔记(四)
·非法探取密码的原理及其防范
·怎样在VC++中访问、修改注册表

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
枚举系统中已经安装的所有硬件设备

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

实现的主要部分代码:

#include <setupapi.h>
#include <devguid.h>
#include <regstr.h>
#pragma comment(lib,"Setupapi.lib")

 CListBox m_strList;

........

枚举所有硬件设备的主要实现代码:

    m_strList.ResetContent();
 
    HDEVINFO hDevInfo;
    SP_DEVINFO_DATA DeviceInfoData;
    DWORD i;
 
    // Create a HDEVINFO with all present devices.
    hDevInfo = SetupDiGetClassDevs(NULL,
        0, // Enumerator
        0,
        DIGCF_PRESENT | DIGCF_ALLCLASSES );
   
    if (hDevInfo == INVALID_HANDLE_VALUE)
    {
        // Insert error handling here.
        return ;
    }
   
    // Enumerate through all devices in Set.
   
    DeviceInfoData.cbSize = sizeof(SP_DEVINFO_DATA);
    for (i=0;SetupDiEnumDeviceInfo(hDevInfo,i,
        &DeviceInfoData);i++)
    {
        DWORD DataT;
        LPTSTR buffer = NULL;
        DWORD buffersize = 0;
       
        //
        // Call function with null to begin with,
        // then use the returned buffer size
        // to Alloc the buffer. Keep calling until
        // success or an unknown failure.
        //
        while (!SetupDiGetDeviceRegistryProperty(
            hDevInfo,
            &DeviceInfoData,
            SPDRP_DEVICEDESC,
            &DataT,
            (PBYTE)buffer,
            buffersize,
            &buffersize))
        {
            if (GetLastError() ==
                ERROR_INSUFFICIENT_BUFFER)
            {
                // Change the buffer size.
                if (buffer) LocalFree(buffer);
                buffer = (char*)LocalAlloc(LPTR,buffersize);
            }
            else
            {
                // Insert error handling here.
                break;
            }
        }

  m_strList.AddString(buffer);
               
        if (buffer) LocalFree(buffer);
    }
   
   
    if ( GetLastError()!=NO_ERROR &&
  GetLastError()!=ERROR_NO_MORE_ITEMS )
    {
        // Insert error handling here.
        return ;
    }
   
    //  Cleanup
    SetupDiDestroyDeviceInfoList(hDevInfo); 

 

测试环境:

WINXP,WIN2000以上操作系统!

 

 

 




相关文章

相关软件