ConstantParameters.h 497 B

1234567891011121314151617
  1. #ifndef CONSTANTPARAMETERS_H
  2. #define CONSTANTPARAMETERS_H
  3. #define MAX_VOLUME 65536
  4. // variable weakly set in ZeroconfAuthentificator.cpp
  5. extern char deviceId[];
  6. // Hardcoded information sent to spotify servers
  7. const char * const informationString = "cspot-player";
  8. const char * const brandName = "cspot";
  9. const char * const versionString = "cspot-1.1";
  10. const char * const protocolVersion = "2.7.1";
  11. const char * const defaultDeviceName = "CSpot";
  12. const char * const swVersion = "1.0.0";
  13. #endif