Home > Software engineering >  What is the mainstream drivers writing tools? (such as QQ, tencent's housekeeper, jinshan, 360
What is the mainstream drivers writing tools? (such as QQ, tencent's housekeeper, jinshan, 360

Time:10-13

1. What is the mainstream drivers writing tools? (such as QQ, tencent's housekeeper, jinshan, 360 drivers with what to write?)

2. The driver sys can write after exe calls to other programming tools such as Delphi?

CodePudding user response:

Windows should be used WDK above, WDM to develop,

CodePudding user response:

V + WDK ~ ~

CodePudding user response:

Windows driver development http://www.osronline.com/

CodePudding user response:

reference 1st floor oyljerry response:
Windows above should be used WDK, WDM to develop,


refer to the second floor VisualEleven response:
v + WDK ~ ~


reference zhao4zhong1 reply: 3/f
Windows driver development http://www.osronline.com/

Thank you upstairs each elder, may I recommend the quickstart books?

CodePudding user response:

reference 1st floor oyljerry response:
Windows above should be used WDK, WDM to develop,


reference zhao4zhong1 reply: 3/f
Windows driver development http://www.osronline.com/


Qq_15135691
reference 4 floor response:
Quote: refer to 1st floor oyljerry response:

Windows should be used WDK above, WDM to develop,


refer to the second floor VisualEleven response:
v + WDK ~ ~


reference zhao4zhong1 reply: 3/f
Windows driver development http://www.osronline.com/

Thank you upstairs each elder, may I recommend the quickstart books?

My main development program is Delphi, write the driver can be invoked to Delphi

CodePudding user response:

Can, the application can through the CreateFile/ReadFile WriteFile/DeviceIoControl and driver communication, drive to create a symbolic link or manage the GUID, etc.,
Application by CreateFile () open the symbolic link or through SetupDiXXX interface to get the path, then pass the path to CreateFile to obtain handle, after can ReadFile/WriteFile/DeviceIoControl

CodePudding user response:

refer to 6th floor VisualEleven response:
, the application can through the CreateFile/ReadFile WriteFile/DeviceIoControl and driver communication, drive to create a symbolic link or manage the GUID, and so on,
Application through the CreateFile () open the symbolic link or through SetupDiXXX interface to get the path, and then pass the path to CreateFile to obtain handle, after can ReadFile WriteFile/DeviceIoControl
ok thank you