Creating Simple ISAPI Filters

For an ISAPI filter to be used by IIS, it must provide a standard interface. To provide a standard interface, each filter application must implement and export two primary functions, GetFilterVersion and HttpFilterProc. A third function, TerminateFilter, is considered optional and is commonly used by filters to perform cleanup operations.