Path: blob/jdk8u272-b10-aarch32-20201026/jdk/src/share/native/common/unicode/icudataver.h
48737 views
// © 2016 and later: Unicode, Inc. and others.1// License & terms of use: http://www.unicode.org/copyright.html2/*3******************************************************************************4*5* Copyright (C) 2009-2013, International Business Machines6* Corporation and others. All Rights Reserved.7*8******************************************************************************9*/101112/**13* \file14* \brief C API: access to ICU Data Version number15*/1617#ifndef __ICU_DATA_VER_H__18#define __ICU_DATA_VER_H__1920#include "unicode/utypes.h"2122/**23* @stable ICU 4924*/25#define U_ICU_VERSION_BUNDLE "icuver"2627/**28* @stable ICU 4929*/30#define U_ICU_DATA_KEY "DataVersion"3132/**33* Retrieves the data version from icuver and stores it in dataVersionFillin.34*35* @param dataVersionFillin icuver data version information to be filled in if not-null36* @param status stores the error code from the calls to resource bundle37*38* @stable ICU 4939*/40U_STABLE void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status);4142#endif434445