2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2008-11-24 20:04:52 +00:00
|
|
|
/******************************************************************************
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (C) 2008-2016, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2008-11-24 20:04:52 +00:00
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PKG_ICU_H__
|
|
|
|
#define __PKG_ICU_H__
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
2016-03-07 20:26:37 +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-18 06:56:36 +00:00
|
|
|
readList(const char *filesPath, const char *listname, UBool readContents, icu::Package *listPkgIn);
|
2008-11-24 20:04:52 +00:00
|
|
|
|
|
|
|
#endif
|