Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/unicode/icudataver.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // © 2016 and later: Unicode, Inc. and others.
0002 // License & terms of use: http://www.unicode.org/copyright.html
0003 /*
0004 ******************************************************************************
0005 *
0006 *   Copyright (C) 2009-2013, International Business Machines
0007 *   Corporation and others.  All Rights Reserved.
0008 *
0009 ******************************************************************************
0010 */
0011 
0012 
0013 /**
0014  * \file
0015  * \brief C API: access to ICU Data Version number
0016  */
0017 
0018 #ifndef __ICU_DATA_VER_H__
0019 #define __ICU_DATA_VER_H__
0020 
0021 #include "unicode/utypes.h"
0022 
0023 /**
0024  * @stable ICU 49
0025  */
0026 #define U_ICU_VERSION_BUNDLE "icuver"
0027 
0028 /**
0029  * @stable ICU 49
0030  */
0031 #define U_ICU_DATA_KEY "DataVersion"
0032 
0033 /**
0034  * Retrieves the data version from icuver and stores it in dataVersionFillin.
0035  * 
0036  * @param dataVersionFillin icuver data version information to be filled in if not-null
0037  * @param status stores the error code from the calls to resource bundle
0038  * 
0039  * @stable ICU 49
0040  */
0041 U_CAPI void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status);
0042 
0043 #endif