Microsoft Internet Security and Acceleration Server 2000 |
To begin developing an application filter, create a new project, and then include the necessary header and .idl files. For more information about these declaration files, see Header and .Idl Files Provided with ISA.
To create the COM filter object
In the Project Settings dialog box, in the Settings For drop-down menu, select All Configurations. Then, select the C/C++ tab, and from the Category drop-down menu select Preprocessor. In the Additional include directories entry field, add the path to the SDK inc directory to the include path of the project. Type the same path information in the Additional include directories entry field of the MIDL tab, and click OK.. Then add wspfwext.idl and msfpccom.idl from ISA SDK's inc directory to the project's source files.
To include all the interface definitions and their GUIDs that are required to build a filter (for example, IFWXFilter, IFWXSessionFilter, or IFWXDataFilter), import wspfwext.idl at the beginning of the SMTPFLTR.idl file:
import "oaidl.idl"; // line produced by the wizard import "ocidl.idl"; // line produced by the wizard import "wspfwext.idl"; // you add this line
The build process produces other files, such as wspfwext.h and wspfwext_i.c.
The header file wspfwext.h contains the definitions of all necessary filter interface methods (IFWXFilter, IFWXSessionFilter, and so on). Add an include statement for wspfwext.h to the precompiled header file stdafx.h:
#include "wspfwext.h"
The MIDL-generated file wspfwext_i.c contains predefined GUIDs for the filter interfaces. Include it in one of the .cpp files, for example SMTPFLTR.cpp.
#include "wspfwext_i.c"