// ks.h
PFNREFERENCEDEVICEOBJECT Pfnreferencedeviceobject;
VOID Pfnreferencedeviceobject(
[in] PVOID Context
)
{...}
View the official Windows Driver Kit DDI reference// swenum.h
PFNREFERENCEDEVICEOBJECT Pfnreferencedeviceobject;
VOID Pfnreferencedeviceobject(
[in] PVOID Context
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The driver can use this routine to increment the reference count of the PDO.
Context [in]Pointer to a device extension of the device's PDO.
The driver can access this method through the ReferenceDeviceObject member of the BUS_INTERFACE_REFERENCE structure.
The device object remains active and enumerated until the reference count returns to 0.
The driver can use this routine to increment the reference count of the PDO.
Context [in]Pointer to a device extension of the device's PDO.
The driver can access this method through the ReferenceDeviceObject member of the BUS_INTERFACE_REFERENCE structure.
The device object remains active and enumerated until the reference count returns to 0.