Share via


TerminateFilter (Windows Embedded CE 6.0)

1/6/2010

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
Windows Embedded CE Windows CE 3.0 and later

See Also

Reference

Web Server Functions
GetFilterVersion