Share via


TerminateFilter (Compact 2013)

3/26/2014

This function is an application-defined function. It is an entry point exposed by ISAPI filters. The Web Server calls this function immediately before removing the ISAPI filter from memory. When this function is called, your filter should close all attachments it has made to system resources. The TerminateFilter name for this function is a placeholder for the function name defined by the header.

Syntax

BOOL WINAPI TerminateFilter(
  DWORD dwFlags
);

Parameters

  • dwFlags
    [in] DWORD value specifying flags associated with the filter termination. No values for dwFlags have been identified at this time.

Return Value

Returns TRUE if the function succeeds, and FALSE otherwise. To determine the cause of a failure, the server should call GetLastError.

Requirements

Header

httpfilt.h

Library

Developer Implemented

See Also

Reference

Web Server Functions
GetFilterVersion