HTTP_FILTER_VERSION

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 application.

dwFlags

[out] The combination of SF_NOTIFY_* flags to specify which events this application is interested in. See HttpFilterProc for a list of valid flags.

 

Remarks

This structure is passed to the application's HttpFilterProc entry point by the server.

See Also

HttpFilterProc