| 1234567891011121314151617181920 |
- //
- // Created by aares on 30-3-2016.
- //
- #ifndef INTERNETRADIO_TWITCH_H
- #define INTERNETRADIO_TWITCH_H
- #endif //INTERNETRADIO_TWITCH_H
- void setID(char* id);
- char* getID(void);
- char streamid[15];
- struct streamdata data;
- struct streamdata
- {
- char title[20];
- char name[20];
- char game[20];
- };
|