Structure that specifies information about the plug-in.
struct IE_PlugInInfo
{
IE_PlugInInfo() { ZeroMemory(this, sizeof(*this)); };
DWORD dwFlags;
int nVersion;
wchar_t szTitle[40];
UINT iIcon;
int nFormats;
IE_FormatInfo* pFormatInfo;
};
dwFlags
Type: DWORD
Flags (set to 0)
nVersion
Type: int
Plug-in specification version; this should be equal to: IE_VERSION
szTitle
Type: wchar_t[40]
Plug-in title
iIcon
Type: UINT
Plug-in icon resource id (ordinal icon index in APL module resources)
nFormats
Type: int
Number of formats exported to
pFormatInfo
Type: IE_FormatInfo*
Information about each format supported
Used in the IE_GetPlugInInfo function.
Header: IE_PlugIn.h