Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- +enum
- +{
- + ICON_RECORD = 0,
- + ICON_TIMESHIFT,
- + ICON_PIP,
- + ICON_STREAMING,
- + ICON_SCRAMBLED,
- + STATUS_ICONS_MAX
- +};
- +
- +struct status_icons
- +{
- + const char * name;
- + int width;
- + int height;
- +};
- +
- +static struct status_icons status_icon[]=
- +{
- + {NEUTRINO_ICON_REC , 0, 0},
- + {NEUTRINO_ICON_AUTO_SHIFT , 0, 0},
- + {NEUTRINO_ICON_PIP , 0, 0},
- + {NEUTRINO_ICON_STREAMING , 0, 0},
- + {NEUTRINO_ICON_SCRAMBLED , 0, 0}
- +};
- +
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement