Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728
  1. /* Libottery by Nick Mathewson.
  2. This software has been dedicated to the public domain under the CC0
  3. public domain dedication.
  4. To the extent possible under law, the person who associated CC0 with
  5. libottery has waived all copyright and related or neighboring rights
  6. to libottery.
  7. You should have received a copy of the CC0 legalcode along with this
  8. work in doc/cc0.txt. If not, see
  9. <http://creativecommons.org/publicdomain/zero/1.0/>.
  10. */
  11. #ifndef OTTERY_VERSION_H_HEADER_INCLUDED_
  12. #define OTTERY_VERSION_H_HEADER_INCLUDED_
  13. /**
  14. * Version number for Libottery. The first three bytes are the major number,
  15. * minor number, and patch-level respectively. The final byte is 0 for a
  16. * released version, and nonzero otherwise.
  17. */
  18. #undef OTTERY_VERSION
  19. /**
  20. * Human-readable string representing the Libottery version.
  21. */
  22. #undef OTTERY_VERSION_STRING
  23. #endif