Status line
Status line
HIDE_DISABLED_ITEMS - to hide the items that are disabled
__Items - linked list of items:
struct StatusItem {
char *Text;
char *KeyText;
int Key, Command;
unsigned Value;
StatusItem *Next;
};
This list can be constructed using the following function:
StatusItem *NewStatusItem(char *__Text, int __Key, int __Command, StatusItem *__ANextItem)
which builds the entire list