开发者

How do I install hardware driver using C++ on Win32?

开发者 https://www.devze.com 2022-12-20 04:06 出处:网络
How do I install a hard开发者_StackOverflowware driver (inf file) using C++? Platform : Win32The process is usually called pre-installation. (The normal install process is triggered by the arrival of

How do I install a hard开发者_StackOverflowware driver (inf file) using C++?

Platform : Win32


The process is usually called pre-installation. (The normal install process is triggered by the arrival of an hardware device.)

The relevant functions can be found in <DIFxAPI.h> from the DDK. You probably want to call DriverPackageInstall(). The expected return value is ERROR_NO_SUCH_DEVINST [sic] as there won't be such a device yet.

There's some 64 bit funkyness: you can't install a 64 bits driver from a Win32 app (at least not in XP/Vista/Windows7/2003/2008). Hence, your Win32 installer must check if DriverPackageInstall() returns ERROR_IN_WOW64 and then call CreateProcess to start your 64 bits installer.


I would look at using the InstallHinfSection function, in the setupapi.dll. Here's the related docs:

http://msdn.microsoft.com/en-us/library/aa376957%28VS.85%29.aspx

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号