Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/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 TerminateFiltername 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 dwFlagshave 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
Windows Mobile Pocket PC 2000 and later, Smartphone 2002 and later

See Also