annotate CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/include/unicode/icudataver.h @ 69:33d812a61356

planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author jpayne
date Tue, 18 Mar 2025 17:55:14 -0400
parents
children
rev   line source
jpayne@69 1 // © 2016 and later: Unicode, Inc. and others.
jpayne@69 2 // License & terms of use: http://www.unicode.org/copyright.html
jpayne@69 3 /*
jpayne@69 4 ******************************************************************************
jpayne@69 5 *
jpayne@69 6 * Copyright (C) 2009-2013, International Business Machines
jpayne@69 7 * Corporation and others. All Rights Reserved.
jpayne@69 8 *
jpayne@69 9 ******************************************************************************
jpayne@69 10 */
jpayne@69 11
jpayne@69 12
jpayne@69 13 /**
jpayne@69 14 * \file
jpayne@69 15 * \brief C API: access to ICU Data Version number
jpayne@69 16 */
jpayne@69 17
jpayne@69 18 #ifndef __ICU_DATA_VER_H__
jpayne@69 19 #define __ICU_DATA_VER_H__
jpayne@69 20
jpayne@69 21 #include "unicode/utypes.h"
jpayne@69 22
jpayne@69 23 /**
jpayne@69 24 * @stable ICU 49
jpayne@69 25 */
jpayne@69 26 #define U_ICU_VERSION_BUNDLE "icuver"
jpayne@69 27
jpayne@69 28 /**
jpayne@69 29 * @stable ICU 49
jpayne@69 30 */
jpayne@69 31 #define U_ICU_DATA_KEY "DataVersion"
jpayne@69 32
jpayne@69 33 /**
jpayne@69 34 * Retrieves the data version from icuver and stores it in dataVersionFillin.
jpayne@69 35 *
jpayne@69 36 * @param dataVersionFillin icuver data version information to be filled in if not-null
jpayne@69 37 * @param status stores the error code from the calls to resource bundle
jpayne@69 38 *
jpayne@69 39 * @stable ICU 49
jpayne@69 40 */
jpayne@69 41 U_STABLE void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status);
jpayne@69 42
jpayne@69 43 #endif