KsReleaseControl - NtDoc

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

void KsReleaseControl(
  [in] PVOID Object
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ks-ksreleasecontrol)

KsReleaseControl function

Description

The KsReleaseControl function releases the control mutex for Object.

Parameters

Object [in]

The object for which to release the control mutex.

Remarks

Object should be either a filter or a pin cast to PVOID.

Minidrivers typically do not call KsReleaseControl directly, but instead call KsFilterReleaseControl or KsPinReleaseControl. These versions automatically provide the necessary typecasting to PVOID.

For more information, see Mutexes in AVStream.

See also

KsAcquireControl

KsFilterAcquireControl

KsFilterReleaseControl

KsPinAcquireControl

KsPinReleaseControl