]>
Commit | Line | Data |
---|---|---|
729e4ab9 A |
1 | /* |
2 | ****************************************************************************** | |
3 | * | |
4388f060 | 4 | * Copyright (C) 2009-2012, International Business Machines |
729e4ab9 A |
5 | * Corporation and others. All Rights Reserved. |
6 | * | |
7 | ****************************************************************************** | |
8 | */ | |
9 | ||
10 | #ifndef __ICU_DATA_VER_H__ | |
11 | #define __ICU_DATA_VER_H__ | |
12 | ||
13 | #include "unicode/utypes.h" | |
14 | ||
4388f060 | 15 | #ifndef U_HIDE_DRAFT_API |
729e4ab9 | 16 | /** |
4388f060 | 17 | * @draft ICU 49 |
729e4ab9 A |
18 | */ |
19 | #define U_ICU_VERSION_BUNDLE "icuver" | |
20 | ||
21 | /** | |
4388f060 | 22 | * @draft ICU 49 |
729e4ab9 A |
23 | */ |
24 | #define U_ICU_DATA_KEY "DataVersion" | |
25 | ||
729e4ab9 A |
26 | /** |
27 | * Retrieves the data version from icuver and stores it in dataVersionFillin. | |
28 | * | |
29 | * @param dataVersionFillin icuver data version information to be filled in if not-null | |
30 | * @param status stores the error code from the calls to resource bundle | |
31 | * | |
4388f060 | 32 | * @draft ICU 49 |
729e4ab9 | 33 | */ |
4388f060 A |
34 | U_DRAFT void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status); |
35 | #endif /* U_HIDE_DRAFT_API */ | |
729e4ab9 A |
36 | |
37 | #endif |