// ks.h
PFNQUERYREFERENCESTRING Pfnqueryreferencestring;
NTSTATUS Pfnqueryreferencestring(
[in] PVOID Context,
[in, out] PWCHAR *String
)
{...}
View the official Windows Driver Kit DDI reference// swenum.h
PFNQUERYREFERENCESTRING Pfnqueryreferencestring;
NTSTATUS Pfnqueryreferencestring(
[in] PVOID Context,
[in, out] PWCHAR *String
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This routine creates a buffer from the paged pool and copies the reference string associated with the PDO into this buffer. It is the caller's responsibility to free the buffer using ExFreePool.
Context [in]Pointer to a device extension of the device's PDO.
String [in, out]Pointer to a string containing the reference string associated with the PDO.
None.
The driver can access this method through the QueryReferenceString member of the BUS_INTERFACE_REFERENCE structure.
This routine creates a buffer from the paged pool and copies the reference string associated with the PDO into this buffer. It is the caller's responsibility to free the buffer using ExFreePool.
Context [in]Pointer to a device extension of the device's PDO.
String [in, out]Pointer to a string containing the reference string associated with the PDO.
None.
The driver can access this method through the QueryReferenceString member of the BUS_INTERFACE_REFERENCE structure.