summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-xetex/i18n/ucol_bld.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-04-20 18:13:48 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-04-20 18:13:48 +0000
commite5786f530f9555469c01435f86039b06aa53feba (patch)
treec868e8d32282422d7d445b729db95c3fcdafb6d0 /Build/source/libs/icu/icu-xetex/i18n/ucol_bld.h
parentebaa1768b43c8606d923d2e861b5286b74207b3e (diff)
new build system: build icu libs and xetex plus misc updates
git-svn-id: svn://tug.org/texlive/trunk@12759 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu/icu-xetex/i18n/ucol_bld.h')
-rw-r--r--Build/source/libs/icu/icu-xetex/i18n/ucol_bld.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-xetex/i18n/ucol_bld.h b/Build/source/libs/icu/icu-xetex/i18n/ucol_bld.h
new file mode 100644
index 00000000000..67a28a36a50
--- /dev/null
+++ b/Build/source/libs/icu/icu-xetex/i18n/ucol_bld.h
@@ -0,0 +1,62 @@
+/*
+*******************************************************************************
+*
+* Copyright (C) 2001-2005, International Business Machines
+* Corporation and others. All Rights Reserved.
+*
+*******************************************************************************
+* file name: ucol_tok.cpp
+* encoding: US-ASCII
+* tab size: 8 (not used)
+* indentation:4
+*
+* created 02/22/2001
+* created by: Vladimir Weinstein
+*
+* This module builds a collator based on the rule set.
+*
+*/
+
+#ifndef UCOL_BLD_H
+#define UCOL_BLD_H
+
+#ifdef UCOL_DEBUG
+#include <stdio.h>
+#include <stdlib.h>
+#endif
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_COLLATION
+#if !UCONFIG_NO_COLLATION_BUILDER
+
+#include "ucol_imp.h"
+#include "ucol_tok.h"
+#include "ucol_elm.h"
+#include "ucol_wgt.h"
+
+#include "uhash.h"
+#include "cpputils.h"
+
+#include "unicode/ustring.h"
+#include "unicode/unistr.h"
+#include "unicode/normlzr.h"
+
+U_CFUNC
+UCATableHeader *ucol_assembleTailoringTable(UColTokenParser *src, UErrorCode *status);
+
+typedef struct {
+ WeightRange ranges[7];
+ int32_t noOfRanges;
+ uint32_t byteSize; uint32_t start; uint32_t limit;
+ int32_t maxCount;
+ int32_t count;
+ uint32_t current;
+ uint32_t fLow; /*forbidden Low */
+ uint32_t fHigh; /*forbidden High */
+} ucolCEGenerator;
+
+#endif /* #if !UCONFIG_NO_COLLATION_BUILDER */
+#endif /* #if !UCONFIG_NO_COLLATION */
+
+#endif