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. */
| 475 | Flags - Flags that indicate the reason for the detach request. |
| 476 | */ |
| 477 | NTSTATUS |
| 478 | FSBlockingFilter::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. |
nothing calls this directly
no outgoing calls
no test coverage detected