TerminateFilter (Windows CE 5.0)

Send Feedback

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.

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 Values

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

Requirements

Pocket PC: Pocket PC 2000 and later.
Smartphone: Smartphone 2002 and later.
OS Versions: Windows CE 3.0 and later.
Header: Httpfilt.h.
Link Library: Not applicable.

See Also

GetFilterVersion

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.