1
0

id3_version.h 983 B

12345678910111213141516171819202122232425262728
  1. // The authors have released ID3Lib as Public Domain (PD) and claim no copyright,
  2. // patent or other intellectual property protection in this work. This means that
  3. // it may be modified, redistributed and used in commercial and non-commercial
  4. // software and hardware without restrictions. ID3Lib is distributed on an "AS IS"
  5. // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
  6. //
  7. // The ID3Lib authors encourage improvements and optimisations to be sent to the
  8. // ID3Lib coordinator, currently Dirk Mahoney ([email protected]). Approved
  9. // submissions may be altered, and will be included and released under these terms.
  10. //
  11. // Mon Nov 23 18:34:01 1998
  12. #ifndef ID3LIB_VERSION_H
  13. #define ID3LIB_VERSION_H
  14. #define ID3LIB_NAME "ID3Lib"
  15. #define ID3LIB_VERSION "v3.05a"
  16. #define ID3LIB_VER ( 3 )
  17. #define ID3LIB_REV ( 5 )
  18. #define ID3LIB_DATE "Mon Nov 23 18:34:01 1998"
  19. #define ID3LIB_VERSTRING ID3LIB_NAME " " ID3LIB_VERSION " " ID3LIB_DATE
  20. #endif