summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-08-02 15:35:31 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-08-02 15:35:31 -0400
commit5bb23c0024827fb180e17c9b8dde13e872eed464 (patch)
tree12cfd3a5d351f2bb8967dc280eb5e0960b28ae4a
parentfac416667fed565d3d61b25b6736e39b266e22f0 (diff)
downloadpango-5bb23c0024827fb180e17c9b8dde13e872eed464.tar.gz
[HB] Add top-level header files
-rw-r--r--pango/opentype/Makefile.am2
-rw-r--r--pango/opentype/hb-ot.h34
-rw-r--r--pango/opentype/hb.h35
3 files changed, 71 insertions, 0 deletions
diff --git a/pango/opentype/Makefile.am b/pango/opentype/Makefile.am
index 5998fcd7..09b35b43 100644
--- a/pango/opentype/Makefile.am
+++ b/pango/opentype/Makefile.am
@@ -25,10 +25,12 @@ HBSOURCES = \
$(NULL)
HBHEADERS = \
+ hb.h \
hb-blob.h \
hb-buffer.h \
hb-common.h \
hb-font.h \
+ hb-ot.h \
hb-ot-layout.h \
$(NULL)
diff --git a/pango/opentype/hb-ot.h b/pango/opentype/hb-ot.h
new file mode 100644
index 00000000..c04216b8
--- /dev/null
+++ b/pango/opentype/hb-ot.h
@@ -0,0 +1,34 @@
+/*
+ * 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_OT_H
+#define HB_OT_H
+
+#include "hb.h"
+
+#include "hb-ot-layout.h"
+
+#endif /* HB_OT_H */
diff --git a/pango/opentype/hb.h b/pango/opentype/hb.h
new file mode 100644
index 00000000..a948e134
--- /dev/null
+++ b/pango/opentype/hb.h
@@ -0,0 +1,35 @@
+/*
+ * 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_H
+#define HB_H
+
+#include "hb-common.h"
+#include "hb-blob.h"
+#include "hb-buffer.h"
+#include "hb-font.h"
+
+#endif /* HB_H */