// pep_x.h
typedef enum _PEP_DEVICE_ACCEPTANCE_TYPE {
PepDeviceNotAccepted,
PepDeviceAccepted,
PepDeviceAceptedMax
} PEP_DEVICE_ACCEPTANCE_TYPE, *PPEP_DEVICE_ACCEPTANCE_TYPE;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef enum _PEP_DEVICE_ACCEPTANCE_TYPE {
PepDeviceNotAccepted,
PepDeviceAccepted,
PepDeviceAceptedMax
} PEP_DEVICE_ACCEPTANCE_TYPE, *PPEP_DEVICE_ACCEPTANCE_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_DEVICE_ACCEPTANCE_TYPE enumeration indicates whether a PEP accepts ownership of a device.
PepDeviceNotAcceptedThe PEP does not claim ownership of this device.
PepDeviceAcceptedThe PEP claims full ownership of this device.
PepDeviceAceptedMaxReserved for use by operating system.
This enumeration is used by DeviceAccepted member of the PEP_REGISTER_DEVICE_V2 structure to indicate whether a PEP accepts ownership of a device.
The PEP_DEVICE_ACCEPTANCE_TYPE enumeration indicates whether a PEP accepts ownership of a device.
PepDeviceNotAcceptedThe PEP does not claim ownership of this device.
PepDeviceAcceptedThe PEP claims ownership of this device.
PepDeviceAceptedMaxReserved for use by operating system.
This enumeration is used by DeviceAccepted member of the PEP_REGISTER_DEVICE_V2 structure to indicate whether a PEP accepts ownership of a device.