Advertisement
svenhoefer

Untitled

Apr 11th, 2017
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.45 KB | None | 0 0
  1. +enum
  2. +{
  3. +   ICON_RECORD = 0,
  4. +   ICON_TIMESHIFT,
  5. +   ICON_PIP,
  6. +   ICON_STREAMING,
  7. +   ICON_SCRAMBLED,
  8. +   STATUS_ICONS_MAX
  9. +};
  10. +
  11. +struct status_icons
  12. +{
  13. +   const char * name;
  14. +   int width;
  15. +   int height;
  16. +};
  17. +
  18. +static struct status_icons status_icon[]=
  19. +{
  20. +   {NEUTRINO_ICON_REC        , 0, 0},
  21. +   {NEUTRINO_ICON_AUTO_SHIFT , 0, 0},
  22. +   {NEUTRINO_ICON_PIP        , 0, 0},
  23. +   {NEUTRINO_ICON_STREAMING  , 0, 0},
  24. +   {NEUTRINO_ICON_SCRAMBLED  , 0, 0}
  25. +};
  26. +
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement