Thursday, June 16, 2016

BFF_DEVICE_CONFIG / PBFF_DEVICE_CONFIG

Description


Data structure for configuration of a bus filter device object. See also BFF_INITIALIZATION_DATA / PBFF_INITIALIZATION_DATA.

Declaration

typedef struct _BFF_DEVICE_CONFIG {
    DEVICE_TYPE DeviceType;
    ULONG DeviceCharacteristics;
    PBFF_DEVICE_ADD DeviceAdd;
    PBFF_DEVICE_REMOVE DeviceRemove;
} BFF_DEVICE_CONFIG, *PBFF_DEVICE_CONFIG;

Members


DeviceTypeSame as DeviceType parameter of IoCreateDevice. (Mandatory)
DeviceCharacteristicsSame as DeviceCharacteristics parameter of IoCreateDevice. (Mandatory)
DeviceAddCallback function for creation of a bus filter device object. (Optional)
DeviceRemoveCallback function for removal of a bus filter device object. (Optional)

No comments:

Post a Comment