blob: 7d8b8d927ed69f124c69913d7749522eb28833f5 [file] [log] [blame]
David Turnerd2b1f351999-12-16 23:11:37 +00001/***************************************************************************/
2/* */
3/* ttpload.h */
4/* */
5/* TrueType glyph data/program tables loader (specification). */
6/* */
Werner Lemberg78575dc2000-06-12 19:36:41 +00007/* Copyright 1996-2000 by */
David Turnerd2b1f351999-12-16 23:11:37 +00008/* David Turner, Robert Wilhelm, and Werner Lemberg. */
9/* */
Werner Lemberg78575dc2000-06-12 19:36:41 +000010/* This file is part of the FreeType project, and may only be used, */
11/* modified, and distributed under the terms of the FreeType project */
David Turnerd2b1f351999-12-16 23:11:37 +000012/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13/* this file you indicate that you have read the license and */
14/* understand and accept it fully. */
15/* */
16/***************************************************************************/
17
18
19#ifndef TTPLOAD_H
20#define TTPLOAD_H
21
David Turnerefce08d2000-05-11 18:23:52 +000022#include <freetype/internal/tttypes.h>
David Turnerd2b1f351999-12-16 23:11:37 +000023
24
25#ifdef __cplusplus
26 extern "C" {
27#endif
28
29
David Turner76a5f622000-11-04 01:55:49 +000030 FT_LOCAL
David Turnerf9b8dec2000-06-16 19:34:52 +000031 FT_Error TT_Load_Locations( TT_Face face,
David Turnerd2b1f351999-12-16 23:11:37 +000032 FT_Stream stream );
33
David Turner76a5f622000-11-04 01:55:49 +000034 FT_LOCAL
David Turnerf9b8dec2000-06-16 19:34:52 +000035 FT_Error TT_Load_CVT( TT_Face face,
David Turnerd2b1f351999-12-16 23:11:37 +000036 FT_Stream stream );
37
David Turner76a5f622000-11-04 01:55:49 +000038 FT_LOCAL
David Turnerf9b8dec2000-06-16 19:34:52 +000039 FT_Error TT_Load_Programs( TT_Face face,
David Turnerd2b1f351999-12-16 23:11:37 +000040 FT_Stream stream );
41
Werner Lembergbd5ae402000-07-05 04:32:02 +000042
43#ifdef __cplusplus
44 }
45#endif
46
47
David Turnerd2b1f351999-12-16 23:11:37 +000048#endif /* TTPLOAD_H */
49
50
51/* END */