IE_FormatInfo struct

Structure that contains information about an image format supported by the plug-in.

Syntax

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

   DWORD dwFlags;
   DWORD dwID;
   wchar_t szName[40];
   wchar_t szNameShort[8];
   wchar_t szDefExt[8];
   UINT iIcon;
};

Members

dwFlags

Type: DWORD

IE_FIF flags.

dwID

Type: DWORD

Unique identifier for this format. Use the MAKE_FORMATID macro to generate format identifiers.

szName

Type: wchar_t[40]

Name of this format (e.g., "Windows BMP")

szNameShort

Type: wchar_t[8]

Short name of this format (e.g., "BMP")

szDefExt

Type: wchar_t[8]

Default extension for this format (e.g., "BMP")

iIcon

Type: UINT

Format icon resource identifier (ordinal icon index in APL module resources).

Remarks

Used by the IE_PlugInInfo structure.

Requirements

Header: IE_PlugIn.h

See also: