| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
/*++
Copyright (c) Microsoft Corporation
Abstract:
This module contains the public Software Device shared definitions.
*/
#pragma once
#if (NTDDI_VERSION >= NTDDI_WIN8)
#if defined(__cplusplus)
extern "C" {
#endif // defined(__cplusplus)
typedef
#ifdef MIDL_PASS
[v1_enum]
#endif
enum _SW_DEVICE_CAPABILITIES
{
SWDeviceCapabilitiesNone = 0x00000000,
SWDeviceCapabilitiesRemovable = 0x00000001,
SWDeviceCapabilitiesSilentInstall = 0x00000002,
SWDeviceCapabilitiesNoDisplayInUI = 0x00000004,
SWDeviceCapabilitiesDriverRequired = 0x00000008
} SW_DEVICE_CAPABILITIES, *PSW_DEVICE_CAPABILITIES;
typedef struct _SW_DEVICE_CREATE_INFO
{
ULONG cbSize;
__in PCWSTR pszInstanceId;
__in_opt PCZZWSTR pszzHardwareIds;
__in_opt PCZZWSTR pszzCompatibleIds;
__in_opt const GUID *pContainerId;
ULONG CapabilityFlags;
__in_opt PCWSTR pszDeviceDescription;
__in_opt PCWSTR pszDeviceLocation;
__in_opt const SECURITY_DESCRIPTOR *pSecurityDescriptor;
} SW_DEVICE_CREATE_INFO, *PSW_DEVICE_CREATE_INFO;
typedef
#ifdef MIDL_PASS
[v1_enum]
#endif
enum _SW_DEVICE_LIFETIME
{
SWDeviceLifetimeHandle,
SWDeviceLifetimeParentPresent,
SWDeviceLifetimeMax
} SW_DEVICE_LIFETIME, *PSW_DEVICE_LIFETIME;
#if defined(__cplusplus)
}
#endif // defined(__cplusplus)
#endif // NTDDI_VERSION