summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype2/freetype-2.4.3/src/truetype/ttgload.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-11-10 12:21:44 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-11-10 12:21:44 +0000
commit8c42d8d1d29276c26220c7b513f5f7545c45623b (patch)
tree8c55fe072d96319b45f0cdcd2e832b9af5245c61 /Build/source/libs/freetype2/freetype-2.4.3/src/truetype/ttgload.h
parent677e12722255513b5ba78f406ac260f5a6043071 (diff)
freetype2 2.4.3
git-svn-id: svn://tug.org/texlive/trunk@20395 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/freetype2/freetype-2.4.3/src/truetype/ttgload.h')
-rw-r--r--Build/source/libs/freetype2/freetype-2.4.3/src/truetype/ttgload.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/Build/source/libs/freetype2/freetype-2.4.3/src/truetype/ttgload.h b/Build/source/libs/freetype2/freetype-2.4.3/src/truetype/ttgload.h
new file mode 100644
index 00000000000..958d67d20d7
--- /dev/null
+++ b/Build/source/libs/freetype2/freetype-2.4.3/src/truetype/ttgload.h
@@ -0,0 +1,63 @@
+/***************************************************************************/
+/* */
+/* ttgload.h */
+/* */
+/* TrueType Glyph Loader (specification). */
+/* */
+/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2008 by */
+/* David Turner, Robert Wilhelm, and Werner Lemberg. */
+/* */
+/* This file is part of the FreeType project, and may only be used, */
+/* modified, and distributed under the terms of the FreeType project */
+/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
+/* this file you indicate that you have read the license and */
+/* understand and accept it fully. */
+/* */
+/***************************************************************************/
+
+
+#ifndef __TTGLOAD_H__
+#define __TTGLOAD_H__
+
+
+#include <ft2build.h>
+#include "ttobjs.h"
+
+#ifdef TT_USE_BYTECODE_INTERPRETER
+#include "ttinterp.h"
+#endif
+
+
+FT_BEGIN_HEADER
+
+
+ FT_LOCAL( void )
+ TT_Init_Glyph_Loading( TT_Face face );
+
+ FT_LOCAL( void )
+ TT_Get_HMetrics( TT_Face face,
+ FT_UInt idx,
+ FT_Bool check,
+ FT_Short* lsb,
+ FT_UShort* aw );
+
+ FT_LOCAL( void )
+ TT_Get_VMetrics( TT_Face face,
+ FT_UInt idx,
+ FT_Bool check,
+ FT_Short* tsb,
+ FT_UShort* ah );
+
+ FT_LOCAL( FT_Error )
+ TT_Load_Glyph( TT_Size size,
+ TT_GlyphSlot glyph,
+ FT_UInt glyph_index,
+ FT_Int32 load_flags );
+
+
+FT_END_HEADER
+
+#endif /* __TTGLOAD_H__ */
+
+
+/* END */