struct FarMenuItem
{
char Text[128];
int Selected;
int Checked;
int Separator;
};
As the FarMenuItem.Text field is large, direct initialization of an array of FarMenuItem structures can significantly increase plugin size. To prevent this, the InitMenuItem non-standard structure can be used.