aboutsummaryrefslogtreecommitdiff
path: root/setupapi/setupapi_windows.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Simplify SetupDiEnumDeviceInfo() synopsisSimon Rozman2019-02-051-3/+5
| | | | | | | The SetupDiEnumDeviceInfo() now returns a SP_DEVINFO_DATA rather than taking it on input to fill it on return. Signed-off-by: Simon Rozman <simon@rozman.si>
* Change generic local variable names with meaningful replacementsSimon Rozman2019-02-051-41/+42
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Add support for setupapi.SetupDiClassGuidsFromNameEx()Simon Rozman2019-02-051-0/+37
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Replace SetupDiClassNameFromGuid() with SetupDiClassNameFromGuidEx()Simon Rozman2019-02-051-4/+12
| | | | | | | The former is only a subset of the later. To minimize future maintenance, we'll provide support for extended version only. Signed-off-by: Simon Rozman <simon@rozman.si>
* Add support for setupapi.SetupDiClassNameFromGuid()Simon Rozman2019-02-051-0/+14
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Add support for setupapi.SetupDiCallClassInstaller()Simon Rozman2019-02-051-0/+1
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Add support for setupapi.SetupDi(Get|Set)ClassInstallParams()Simon Rozman2019-02-051-0/+2
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Add support for setupapi.SetupDi(Get|Set)DeviceInstallParams()Simon Rozman2019-02-051-0/+45
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Add support for setupapi.SetupDiOpenDevRegKey()Simon Rozman2019-02-051-14/+11
| | | | | | | | | Furthermore setupapi.DevInfoData has been obsoleted. SetupDiEnumDeviceInfo() fills existing SP_DEVINFO_DATA structure now. As other functions of SetupAPI use SP_DEVINFO_DATA, converting it to DevInfoData and back would hurt performance. Signed-off-by: Simon Rozman <simon@rozman.si>
* Add support for setupapi.SetupDiEnumDeviceInfo()Simon Rozman2019-02-051-2/+20
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Add support for setupapi.SetupDiGetDeviceInfoListDetail()Simon Rozman2019-02-051-29/+24
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Finish support for setupapi.SetupDiGetClassDevsEx()Simon Rozman2019-02-051-15/+33
| | | | Signed-off-by: Simon Rozman <simon@rozman.si>
* Introduce SetupAPI - Windows device and driver management APISimon Rozman2019-02-051-0/+41
Signed-off-by: Simon Rozman <simon@rozman.si>