uni_revision.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright 2008-2014 Arsen Chaloyan
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the License);
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an AS IS BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef UNI_REVISION_H
  17. #define UNI_REVISION_H
  18. /**
  19. * @file uni_revision.h
  20. * @brief UniMRCP Revision
  21. *
  22. * This file contains the revision base number and other relevant information.
  23. */
  24. /** Revision base number. */
  25. #define UNI_REVISION 2208
  26. /** Revision base string. */
  27. #define UNI_REVISION_STRING "2208"
  28. /** Revision base date. */
  29. #define UNI_REVISION_DATE "2014-10-31"
  30. /** Revision base stamp. */
  31. #define UNI_REVISION_STAMP 20141031L
  32. /** Check at compile time if the revision base number is at least a certain level. */
  33. #define UNI_REVISION_AT_LEAST(rev) ((rev) < UNI_REVISION)
  34. #endif /* UNI_REVISION_H */