icudataver.h 938 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. ******************************************************************************
  3. *
  4. * Copyright (C) 2009-2013, International Business Machines
  5. * Corporation and others. All Rights Reserved.
  6. *
  7. ******************************************************************************
  8. */
  9. /**
  10. * \file
  11. * \brief C API: access to ICU Data Version number
  12. */
  13. #ifndef __ICU_DATA_VER_H__
  14. #define __ICU_DATA_VER_H__
  15. #include "unicode/utypes.h"
  16. /**
  17. * @stable ICU 49
  18. */
  19. #define U_ICU_VERSION_BUNDLE "icuver"
  20. /**
  21. * @stable ICU 49
  22. */
  23. #define U_ICU_DATA_KEY "DataVersion"
  24. /**
  25. * Retrieves the data version from icuver and stores it in dataVersionFillin.
  26. *
  27. * @param dataVersionFillin icuver data version information to be filled in if not-null
  28. * @param status stores the error code from the calls to resource bundle
  29. *
  30. * @stable ICU 49
  31. */
  32. U_STABLE void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status);
  33. #endif