解决使用#include setupapi.h报出错误的问题

Posted YJCCN

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决使用#include setupapi.h报出错误的问题相关的知识,希望对你有一定的参考价值。

在使用windows驱动与应用程序进行交互时,可能会用到常用的SetupApi,SetupApi被包含在#include <setupapi.h>头文件中,如果大家直接使用这个头文件的话,会报错很多错误。

因为setupapi.h依赖这些头文件:

1 #include <windows.h>    // Includes basic windows functionality.
2 #include <stdio.h>      // Includes the standard i/o functions.
3 #include <string.h>     // Includes the string functions.
4 #include <tchar.h>      // Includes the string functions.
5 #include <setupapi.h>   // Includes the SetupAPI.

另外还要调用setupapi.lib

1 // Link with SetupAPI.Lib.
2 #pragma comment (lib, "setupapi.lib")

然后就可以正常使用Setup API了。

以上是关于解决使用#include setupapi.h报出错误的问题的主要内容,如果未能解决你的问题,请参考以下文章

Windows设备驱动判断

解决Tax discount configure 报出异常

在SpringMVC中使用@RequestBody注解处理json时,报出HTTP Status 415的解决方案

解决Myeclipse启动Spring Boot项目报出莫名异常

使用Qt的dumpcpp时重复的函数名称

在SpringMVC中使用@RequestBody和@ResponseBody注解处理json时,报出HTTP Status 415的解决方案