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