1999-08-16 21:50:52 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
1999-12-13 22:28:37 +00:00
|
|
|
*
|
2006-04-21 01:15:46 +00:00
|
|
|
* Copyright (C) 1998-2006, International Business Machines
|
1999-12-13 22:28:37 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
1999-08-16 21:50:52 +00:00
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
* File parse.h
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 05/26/99 stephen Creation.
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PARSE_H
|
|
|
|
#define PARSE_H 1
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/utypes.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "filestrm.h"
|
2001-05-10 16:54:09 +00:00
|
|
|
#include "ucbuf.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-09-25 19:28:25 +00:00
|
|
|
U_CDECL_BEGIN
|
2001-07-11 20:31:32 +00:00
|
|
|
/* One time parser initalisation */
|
2007-09-28 19:59:53 +00:00
|
|
|
void initParser(UBool omitBinaryCollation, UBool omitCollationRules);
|
2001-07-11 20:31:32 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/* Parse a ResourceBundle text file */
|
2006-04-21 01:15:46 +00:00
|
|
|
struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir, UErrorCode *status);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-09-25 19:28:25 +00:00
|
|
|
U_CDECL_END
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|