// ks.h
PKSPIN KsGetPinFromFileObject(
[in] PFILE_OBJECT FileObject
);
View the official Windows Driver Kit DDI reference
No description available.
The KsGetPinFromFileObject function returns the AVStream pin object associated with FileObject.
FileObject
[in]A pointer to the FILE_OBJECT structure for which to return the associated AVStream pin object.
KsGetPinFromFileObject returns a pointer to the KSPIN structure associated with FileObject.
The minidriver must verify that FileObject is a file object associated with an AVStream pin. Do this by calling KsGetObjectTypeFromFileObject.
This call is an inline call to KsGetObjectFromFileObject. KsGetPinFromFileObject typecasts the return as a PKSPIN.