2008-11-24 20:04:52 +00:00
|
|
|
/******************************************************************************
|
2012-05-17 19:56:11 +00:00
|
|
|
* Copyright (C) 2008-2012, International Business Machines
|
2008-11-24 20:04:52 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PKG_ICU_H__
|
|
|
|
#define __PKG_ICU_H__
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
2012-05-17 21:50:52 +00:00
|
|
|
#include "package.h"
|
2008-11-24 20:04:52 +00:00
|
|
|
|
2009-04-15 01:57:02 +00:00
|
|
|
#define U_PKG_RESERVED_CHARS "\"%&'()*+,-./:;<=>?_"
|
2008-11-24 20:04:52 +00:00
|
|
|
|
|
|
|
U_CAPI int U_EXPORT2
|
|
|
|
writePackageDatFile(const char *outFilename, const char *outComment,
|
2011-07-06 04:03:35 +00:00
|
|
|
const char *sourcePath, const char *addList, icu::Package *pkg,
|
2008-11-24 20:04:52 +00:00
|
|
|
char outType);
|
|
|
|
|
2011-07-06 04:03:35 +00:00
|
|
|
U_CAPI icu::Package * U_EXPORT2
|
2012-05-17 19:56:11 +00:00
|
|
|
readList(const char *filesPath, const char *listname, UBool readContents, Package *listPkgIn = NULL);
|
2008-11-24 20:04:52 +00:00
|
|
|
|
|
|
|
#endif
|