summaryrefslogtreecommitdiff
path: root/pango/opentype/hb-unicode-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-08-10 20:05:16 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-08-10 20:05:16 -0400
commita6abd02a45946959a4f3c64fb25cb84d83913e2a (patch)
tree3f218c485fecfa74d498242a1e65e64472f207c5 /pango/opentype/hb-unicode-private.h
parent0934f1596280945c07c733cdc81acb3275835a53 (diff)
downloadpango-a6abd02a45946959a4f3c64fb25cb84d83913e2a.tar.gz
[HB] Start adding Unicode funcs
Diffstat (limited to 'pango/opentype/hb-unicode-private.h')
-rw-r--r--pango/opentype/hb-unicode-private.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/pango/opentype/hb-unicode-private.h b/pango/opentype/hb-unicode-private.h
new file mode 100644
index 00000000..de710839
--- /dev/null
+++ b/pango/opentype/hb-unicode-private.h
@@ -0,0 +1,54 @@
+/*
+ * Copyright (C) 2009 Red Hat, Inc.
+ *
+ * This is part of HarfBuzz, an OpenType Layout engine library.
+ *
+ * Permission is hereby granted, without written agreement and without
+ * license or royalty fees, to use, copy, modify, and distribute this
+ * software and its documentation for any purpose, provided that the
+ * above copyright notice and the following two paragraphs appear in
+ * all copies of this software.
+ *
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
+ * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+ * DAMAGE.
+ *
+ * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
+ * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
+ * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+ *
+ * Red Hat Author(s): Behdad Esfahbod
+ */
+
+#ifndef HB_UNICODE_PRIVATE_H
+#define HB_UNICODE_PRIVATE_H
+
+#include "hb-private.h"
+
+#include "hb-unicode.h"
+
+HB_BEGIN_DECLS
+
+/*
+ * hb_unicode_funcs_t
+ */
+
+struct _hb_unicode_funcs_t {
+ hb_reference_count_t ref_count;
+
+ /*
+ hb_unicode_get_general_category_func_t general_category_func);
+ hb_unicode_get_combining_class_func_t combining_class_func);
+ hb_unicode_get_mirroring_char_func_t mirroring_char_func);
+ hb_unicode_get_script_func_t script_func);
+ hb_unicode_get_eastasian_width_func_t eastasian_width_func);
+ */
+};
+
+HB_END_DECLS
+
+#endif /* HB_UNICODE_PRIVATE_H */