IE_PlugInInfo struct

Structure that specifies information about the plug-in.

Syntax

struct IE_PlugInInfo
{
   IE_PlugInInfo() { ZeroMemory(this, sizeof(*this)); };

   DWORD dwFlags;
   int nVersion;
   wchar_t szTitle[40];
   UINT iIcon;
   int nFormats;
   IE_FormatInfo* pFormatInfo;
};

Members

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

Remarks

Used in the IE_GetPlugInInfo function.

Requirements

Header: IE_PlugIn.h

See also: