Replies: 2 comments
-
Reported that here: |
Beta Was this translation helpful? Give feedback.
0 replies
-
My workaround until this get fixed: namespace Windows.Win32.Devices.DeviceAndDriverInstallation
{
[Flags]
public enum DEVICEINFOGETCLASS_FLAGS : uint
{
// Flags controlling what is included in the device information set built by SetupDiGetClassDevs
DIGCF_DEFAULT = 0x00000001, // only valid with DIGCF_DEVICEINTERFACE
DIGCF_PRESENT = 0x00000002,
DIGCF_ALLCLASSES = 0x00000004,
DIGCF_PROFILE = 0x00000008,
DIGCF_DEVICEINTERFACE = 0x00000010
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Are the DIGCF_* flags missing from the metadata too?
See: https://docs.microsoft.com/en-us/windows/win32/api/setupapi/nf-setupapi-setupdigetclassdevsw
Beta Was this translation helpful? Give feedback.
All reactions