Structure that contains information about an image format supported by the plug-in.
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;
};
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).
Used by the IE_PlugInInfo structure.
Header: IE_PlugIn.h