MCPcopy Create free account
hub / github.com/D4stiny/PeaceMaker / HandleInstanceQueryTeardown

Method HandleInstanceQueryTeardown

PeaceMaker Kernel/FSFilter.cpp:477–487  ·  view source on GitHub ↗

This function is called when an instance is being deleted. FltObjects - Objects related to the filter, instance, and its associated volume. Flags - Flags that indicate the reason for the detach request. */

Source from the content-addressed store, hash-verified

475 Flags - Flags that indicate the reason for the detach request.
476*/
477NTSTATUS
478FSBlockingFilter::HandleInstanceQueryTeardown(
479 _In_ PCFLT_RELATED_OBJECTS FltObjects,
480 _In_ FLT_INSTANCE_QUERY_TEARDOWN_FLAGS Flags
481 )
482{
483 UNREFERENCED_PARAMETER(FltObjects);
484 UNREFERENCED_PARAMETER(Flags);
485
486 return STATUS_SUCCESS;
487}
488
489/**
490 This function is called at the start of an instance teardown.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected