twitch.c 184 B

123456789101112131415161718
  1. //
  2. // Created by aares on 30-3-2016.
  3. //
  4. #include "twitch.h"
  5. int streamid = 0;
  6. struct streamdata data;
  7. void setID(int id)
  8. {
  9. streamid = id;
  10. }
  11. int getID()
  12. {
  13. return streamid;
  14. }