jpayne@69: // © 2016 and later: Unicode, Inc. and others. jpayne@69: // License & terms of use: http://www.unicode.org/copyright.html jpayne@69: /* jpayne@69: ****************************************************************************** jpayne@69: * jpayne@69: * Copyright (C) 2009-2013, International Business Machines jpayne@69: * Corporation and others. All Rights Reserved. jpayne@69: * jpayne@69: ****************************************************************************** jpayne@69: */ jpayne@69: jpayne@69: jpayne@69: /** jpayne@69: * \file jpayne@69: * \brief C API: access to ICU Data Version number jpayne@69: */ jpayne@69: jpayne@69: #ifndef __ICU_DATA_VER_H__ jpayne@69: #define __ICU_DATA_VER_H__ jpayne@69: jpayne@69: #include "unicode/utypes.h" jpayne@69: jpayne@69: /** jpayne@69: * @stable ICU 49 jpayne@69: */ jpayne@69: #define U_ICU_VERSION_BUNDLE "icuver" jpayne@69: jpayne@69: /** jpayne@69: * @stable ICU 49 jpayne@69: */ jpayne@69: #define U_ICU_DATA_KEY "DataVersion" jpayne@69: jpayne@69: /** jpayne@69: * Retrieves the data version from icuver and stores it in dataVersionFillin. jpayne@69: * jpayne@69: * @param dataVersionFillin icuver data version information to be filled in if not-null jpayne@69: * @param status stores the error code from the calls to resource bundle jpayne@69: * jpayne@69: * @stable ICU 49 jpayne@69: */ jpayne@69: U_STABLE void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status); jpayne@69: jpayne@69: #endif