-
Notifications
You must be signed in to change notification settings - Fork 0
/
getSVGC.go
44 lines (42 loc) · 1.3 KB
/
getSVGC.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package main
import (
"fmt"
"github.com/StackExchange/wmi"
)
func GetSVGCDevices() []Device {
var devicesWin32PnP []Win32_PNPDevice
var svgcDevicesWin32 []Win32_PNPDevice
var svgcDevices []Device
err := wmi.Query("SELECT * FROM Win32_PnPEntity", &devicesWin32PnP)
if err != nil {
fmt.Println("Error querying sound, video and game controllers devices:", err)
return nil
}
for _, pnpDevice := range devicesWin32PnP {
if pnpDevice.PNPClass == "MEDIA" {
svgcDevicesWin32 = append(svgcDevicesWin32, Win32_PNPDevice{
Name: pnpDevice.Name,
ConfigManagerErrorCode: pnpDevice.ConfigManagerErrorCode,
Status: pnpDevice.Status,
Description: pnpDevice.Description,
DeviceID: pnpDevice.DeviceID,
PNPDeviceID: pnpDevice.PNPDeviceID,
})
}
}
for _, svgcDevice := range svgcDevicesWin32 {
svgcDevices = append(svgcDevices, Device{
Name: svgcDevice.Name,
ConfigManagerErrorCode: svgcDevice.ConfigManagerErrorCode,
Status: svgcDevice.Status,
Description: svgcDevice.Description,
DeviceID: svgcDevice.DeviceID,
PNPDeviceID: svgcDevice.PNPDeviceID,
})
}
if len(svgcDevices) < 1 {
return []Device{}
} else {
return svgcDevices
}
}