config.h 981 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #ifndef NULLSOFT_IN_MP3_CONFIG_H
  2. #define NULLSOFT_IN_MP3_CONFIG_H
  3. #include <bfc/platform/guid.h>
  4. enum
  5. {
  6. WRITE_UTF16 = 0,
  7. WRITE_LATIN = 1,
  8. WRITE_LOCAL = 2,
  9. WRITE_UTF8 = 3,
  10. };
  11. extern int config_write_mode;
  12. enum
  13. {
  14. READ_LATIN = 0,
  15. READ_LOCAL = 1,
  16. };
  17. extern int config_read_mode;
  18. extern int config_parse_apev2;
  19. extern int config_parse_lyrics3;
  20. extern int config_parse_id3v1;
  21. extern int config_parse_id3v2;
  22. extern int config_write_apev2;
  23. extern int config_write_id3v1;
  24. extern int config_write_id3v2;
  25. extern int config_create_id3v1;
  26. extern int config_create_id3v2;
  27. extern int config_create_apev2;
  28. enum
  29. {
  30. RETAIN_HEADER = 0,
  31. ADD_HEADER = 1,
  32. REMOVE_HEADER = 2,
  33. };
  34. extern int config_apev2_header;
  35. extern int config_id3v2_version;
  36. extern int config_lp;
  37. extern char config_rating_email[255];
  38. // {B6CB4A7C-A8D0-4c55-8E60-9F7A7A23DA0F}
  39. static const GUID playbackConfigGroupGUID =
  40. { 0xb6cb4a7c, 0xa8d0, 0x4c55, { 0x8e, 0x60, 0x9f, 0x7a, 0x7a, 0x23, 0xda, 0xf } };
  41. #endif