// ks.h
PFNDEREFERENCEDEVICEOBJECT Pfndereferencedeviceobject;
VOID Pfndereferencedeviceobject(
[in] PVOID Context
)
{...}
View the official Windows Driver Kit DDI reference// swenum.h
PFNDEREFERENCEDEVICEOBJECT Pfndereferencedeviceobject;
VOID Pfndereferencedeviceobject(
[in] PVOID Context
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The driver can use this routine to decrement the reference count of the PDO.
Context [in]Pointer to a device extension of the device's PDO.
Minidrivers access this method through the DereferenceDeviceObject member of the BUS_INTERFACE_REFERENCE structure.
When the PDO's reference count is 0, it becomes eligible for removal. Note that this condition does not guarantee removal.
The driver can use this routine to decrement the reference count of the PDO.
Context [in]Pointer to a device extension of the device's PDO.
Minidrivers access this method through the >DereferenceDeviceObject member of the BUS_INTERFACE_REFERENCE structure.
When the PDO's reference count is 0, it becomes eligible for removal. Note that this condition does not guarantee removal.