Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: source/tools/genrb/parse.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/tools/genrb/genrb.vcxproj ('k') | source/tools/genrb/parse.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ******************************************************************************* 2 *******************************************************************************
3 * 3 *
4 * Copyright (C) 1998-2011, International Business Machines 4 * Copyright (C) 1998-2014, 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 parse.h 9 * File parse.h
10 * 10 *
11 * Modification History: 11 * Modification History:
12 * 12 *
13 * Date Name Description 13 * Date Name Description
14 * 05/26/99 stephen Creation. 14 * 05/26/99 stephen Creation.
15 ******************************************************************************* 15 *******************************************************************************
16 */ 16 */
17 17
18 #ifndef PARSE_H 18 #ifndef PARSE_H
19 #define PARSE_H 1 19 #define PARSE_H 1
20 20
21 #include "unicode/utypes.h" 21 #include "unicode/utypes.h"
22 #include "filestrm.h" 22 #include "filestrm.h"
23 #include "ucbuf.h" 23 #include "ucbuf.h"
24 24
25 U_CDECL_BEGIN 25 U_CDECL_BEGIN
26 /* One time parser initalisation */ 26 /* One time parser initalisation */
27 void initParser(UBool omitCollationRules); 27 void initParser();
28 28
29 /* Parse a ResourceBundle text file */ 29 /* Parse a ResourceBundle text file */
30 struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir , 30 struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir ,
31 UBool omitBinaryCollation, UErrorCode *status); 31 const char *filename,
32 UBool makeBinaryCollation, UBool omitCollationRules, UErro rCode *status);
32 33
33 U_CDECL_END 34 U_CDECL_END
34 35
35 #endif 36 #endif
OLDNEW
« no previous file with comments | « source/tools/genrb/genrb.vcxproj ('k') | source/tools/genrb/parse.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698