PFNKSPINHANDSHAKE - NtDoc

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

PFNKSPINHANDSHAKE Pfnkspinhandshake;

NTSTATUS Pfnkspinhandshake(
  PKSPIN Pin,
  PKSHANDSHAKE In,
  PKSHANDSHAKE Out
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-ks-pfnkspinhandshake)

Description

An AVStream minidriver's AVStrMiniPinHandshake routine is called when AVStream receives a protocol handshake request that it does not handle.

Parameters

Pin

Describes the PKSPIN parameter Pin.

In

Describes the PKSHANDSHAKE parameter In.

Out

Describes the PKSHANDSHAKE parameter Out.

Return value

Returns STATUS_SUCCESS if the pin supports the requested protocol. Otherwise, it should return STATUS_INVALID_DEVICE_REQUEST.

Remarks

The minidriver specifies this routine's address in the Handshake parameter of a call to KsPinRegisterHandshakeCallback.

See also

KSHANDSHAKE

KSIDENTIFIER

KsPinRegisterHandshakeCallback