BdaDeletePin - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// bdasup.h

NTSTATUS BdaDeletePin(
  [in]            PKSFILTER pKSFilter,
  [out, optional] PULONG    pulPinId
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-bdasup-bdadeletepin)

BdaDeletePin function

Description

The BdaDeletePin function deletes a pin from the specified filter.

Parameters

pKSFilter [in]

Points to the filter in which to delete a pin.

pulPinId [out, optional]

Points to a variable that contains the identifier for the pin to delete.

Return value

Returns STATUS_SUCCESS or an appropriate error code.

Remarks

A BDA minidriver calls the BdaMethodDeletePin function when the network provider dynamically deletes a pin using the KSMETHOD_BDA_DELETE_PIN_FACTORY request of the KSMETHODSETID_BdaDeviceConfiguration method set. If a BDA minidriver must delete a pin without relying on the network provider, the BDA minidriver should call the BdaDeletePin function directly.

See also

BdaCreatePin

BdaMethodDeletePin

KSFILTER

KSMETHODSETID_BdaDeviceConfiguration

KSMETHOD_BDA_DELETE_PIN_FACTORY