aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/freetype2/src/otlayout/otltable.h
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
commitb16b9e4656e7199c2aec74a4c8ebc7a875d3ba73 (patch)
tree4361edef0d42d5bf5ac984ef72b4fac35426eae7 /nx-X11/extras/freetype2/src/otlayout/otltable.h
parent0d5a83e986f39982c0924652a3662e60b1f23162 (diff)
downloadnx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.gz
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.bz2
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.zip
massive reduction of unneeded files
Diffstat (limited to 'nx-X11/extras/freetype2/src/otlayout/otltable.h')
-rw-r--r--nx-X11/extras/freetype2/src/otlayout/otltable.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/nx-X11/extras/freetype2/src/otlayout/otltable.h b/nx-X11/extras/freetype2/src/otlayout/otltable.h
deleted file mode 100644
index af7bd78a5..000000000
--- a/nx-X11/extras/freetype2/src/otlayout/otltable.h
+++ /dev/null
@@ -1,60 +0,0 @@
-#ifndef __OTL_TABLE_H__
-#define __OTL_TABLE_H__
-
-#include "otlayout.h"
-
-OTL_BEGIN_HEADER
-
- typedef struct OTL_TableRec_* OTL_Table;
-
- typedef enum
- {
- OTL_TABLE_TYPE_GDEF = 1,
- OTL_TABLE_TYPE_GSUB,
- OTL_TABLE_TYPE_GPOS,
- OTL_TABLE_TYPE_BASE,
- OTL_TABLE_TYPE_JSTF
-
- } OTL_TableType;
-
-
- /* this may become a private structure later */
- typedef struct OTL_TableRec_
- {
- OTL_TableType type;
- OTL_Bytes base;
- OTL_Bytes limit;
-
- OTL_Tag script_tag;
- OTL_Tag lang_tag;
-
- OTL_UInt lookup_count;
- OTL_Byte* lookup_flags;
-
- OTL_UInt feature_count;
- OTL_Tag feature_tags;
- OTL_Byte* feature_flags;
-
- } OTL_TableRec;
-
-
- OTL_API( OTL_Error )
- otl_table_validate( OTL_Bytes table,
- OTL_Size size,
- OTL_TableType type,
- OTL_Size *abyte_size );
-
- OTL_API( void )
- otl_table_init( OTL_Table table,
- OTL_TableType type,
- OTL_Bytes base,
- OTL_Size size );
-
- OTL_API( void )
- otl_table_set_script( OTL_Table table,
- OTL_ScriptTag script,
- OTL_LangTag language );
-
-OTL_END_HEADER
-
-#endif /* __OTL_TABLE_H__ */