twitch.h 303 B

1234567891011121314151617181920
  1. //
  2. // Created by aares on 30-3-2016.
  3. //
  4. #ifndef INTERNETRADIO_TWITCH_H
  5. #define INTERNETRADIO_TWITCH_H
  6. #endif //INTERNETRADIO_TWITCH_H
  7. void setID(char* id);
  8. char* getID(void);
  9. char streamid[15];
  10. struct streamdata data;
  11. struct streamdata
  12. {
  13. char title[20];
  14. char name[20];
  15. char game[20];
  16. };