Structure that specifies page information, used in the CX_GetPageInfo and CX_GetFilePageInfo callback functions.
struct CX_PlugInInfo
{
CX_PlugInInfo() { ZeroMemory(this, sizeof(*this)); };
DWORD dwFlags;
int nVersion;
wchar_t szTitle[40];
UINT iIcon;
int nCommands;
CX_CommandInfo* pCommandInfo;
};
dwFlags
Type: DWORD
Reserved - set to 0
nVersion
Type: int
Plug-in specification version; this should be equal to: CX_VERSION
szTitle
Type: wchar_t[40]
Plug-in title
iIcon
Type: UINT
Plug-in icon index (ordinal icon index in APL module resources)
nCommands
Type: int
Number of commands supported
pCommandInfo
Type: CX_CommandInfo*
Information about each command supported
Used in the CX_GetPageInfo and CX_GetFilePageInfo callback functions.
Header: CX_PlugIn.h