mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
422 B
20 lines
422 B
#ifdef FEATURE_STATUS_ICONS
|
|
|
|
/* Maximum number of icons in the status area */
|
|
#define MAX_ICON_PIXMAPS 8
|
|
|
|
/* Security Icon in the first position */
|
|
#define ICON_POS_1 0
|
|
#define ICON_POS_2 1
|
|
#define ICON_POS_3 2
|
|
#define ICON_POS_4 3
|
|
#define ICON_POS_5 4
|
|
#define ICON_POS_6 5
|
|
#define ICON_POS_7 6
|
|
#define ICON_POS_8 7
|
|
|
|
/* Array of pixmaps */
|
|
GLOBALREF char StatusIcons[MAX_ICON_PIXMAPS];
|
|
|
|
|
|
#endif /* FEATURE_STATUS_ICONS */
|