| OLD | NEW |
| 1 /* | 1 /* |
| 2 ******************************************************************************* | 2 ******************************************************************************* |
| 3 * | 3 * |
| 4 * Copyright (C) 2002-2014, International Business Machines | 4 * Copyright (C) 2002-2015, International Business Machines |
| 5 * Corporation and others. All Rights Reserved. | 5 * Corporation and others. All Rights Reserved. |
| 6 * | 6 * |
| 7 ******************************************************************************* | 7 ******************************************************************************* |
| 8 * | 8 * |
| 9 * File genrb.h | 9 * File genrb.h |
| 10 */ | 10 */ |
| 11 | 11 |
| 12 #ifndef GENRB_H | 12 #ifndef GENRB_H |
| 13 #define GENRB_H | 13 #define GENRB_H |
| 14 | 14 |
| 15 #include <stdio.h> | 15 #include <stdio.h> |
| 16 #include "unicode/utypes.h" | 16 #include "unicode/utypes.h" |
| 17 #include "unicode/putil.h" | 17 #include "unicode/putil.h" |
| 18 #include "cmemory.h" | 18 #include "cmemory.h" |
| 19 #include "cstring.h" | 19 #include "cstring.h" |
| 20 #include "filestrm.h" | 20 #include "filestrm.h" |
| 21 | 21 |
| 22 | 22 |
| 23 #include "ucbuf.h" | 23 #include "ucbuf.h" |
| 24 #include "errmsg.h" | 24 #include "errmsg.h" |
| 25 #include "parse.h" | 25 #include "parse.h" |
| 26 #include "rbutil.h" | 26 #include "rbutil.h" |
| 27 #include "reslist.h" | |
| 28 | |
| 29 | 27 |
| 30 #include "toolutil.h" | 28 #include "toolutil.h" |
| 31 #include "uoptions.h" | 29 #include "uoptions.h" |
| 32 | 30 |
| 33 #include "unicode/ucol.h" | 31 #include "unicode/ucol.h" |
| 34 #include "unicode/uloc.h" | 32 #include "unicode/uloc.h" |
| 35 | 33 |
| 36 /* The version of genrb */ | 34 /* The version of genrb */ |
| 37 #define GENRB_VERSION "3.3" | 35 #define GENRB_VERSION "56" |
| 38 | 36 |
| 39 U_CDECL_BEGIN | 37 U_CDECL_BEGIN |
| 40 | 38 |
| 41 U_CAPI void processFile( | 39 U_CAPI void processFile( |
| 42 const char *filename, | 40 const char *filename, |
| 43 const char* cp, | 41 const char* cp, |
| 44 const char *inputDir, | 42 const char *inputDir, |
| 45 const char *outputDir, | 43 const char *outputDir, |
| 46 const char *packageName, | 44 const char *packageName, |
| 47 UBool omitBinaryCollation, | 45 UBool omitBinaryCollation, |
| 48 UErrorCode *status); | 46 UErrorCode *status); |
| 49 | 47 |
| 50 U_CDECL_END | 48 U_CDECL_END |
| 51 | 49 |
| 52 #endif | 50 #endif |
| OLD | NEW |