HTTP_FILTER_VERSION

This structure is used by GetFilterVersion to obtain the version information about the filter.

typedef struct _HTTP_FILTER_VERSION
{
    DWORD     dwServerFilterVersion;
    DWORD     dwFilterVersion;
    CHAR      lpszFilterDesc[SF_MAX_FILTER_DESC_LEN+1];
    DWORD     dwFlags;
} HTTP_FILTER_VERSION, *PHTTP_FILTER_VERSION;
 

Members

dwServerFilterVersion
[in] The version of the document used by the server. The version of the current header file is HTTP_FILTER_REVISION.
dwFilterVersion
[out] The version of the document used by the server. The version of the current header file is HTTP_FILTER_REVISION.
lpszFilterDesc
[out] The location in which to store a short string description of the ISAPI filter.
dwFlags
[out] The combination of SF_NOTIFY_* flags to specify the events for which the filter should be notified.
Value Meaning
SF_NOTIFY_ORDER_DEFAULT Load the filter at the default priority (recommended).
SF_NOTIFY_ORDER_LOW Load the filter at a low priority.
SF_NOTIFY_ORDER_MEDIUM Load the filter at a medium priority.
SF_NOTIFY_ORDER_HIGH Load the filter at a high priority.

See Also

HttpFilterProc


© 1997 by Microsoft Corporation. All rights reserved.