2018-06-03 09:01:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* t42types.h
|
|
|
|
*
|
|
|
|
* Type 42 font data types (specification only).
|
|
|
|
*
|
2020-01-19 17:05:19 +01:00
|
|
|
* Copyright (C) 2002-2020 by
|
2018-06-03 09:01:17 +02:00
|
|
|
* Roberto Alameda.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef T42TYPES_H_
|
|
|
|
#define T42TYPES_H_
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
|
|
|
#include FT_TYPE1_TABLES_H
|
|
|
|
#include FT_INTERNAL_TYPE1_TYPES_H
|
|
|
|
#include FT_INTERNAL_POSTSCRIPT_HINTS_H
|
|
|
|
|
|
|
|
|
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
2002-06-22 15:35:41 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
typedef struct T42_FaceRec_
|
|
|
|
{
|
2006-01-12 09:12:27 +01:00
|
|
|
FT_FaceRec root;
|
|
|
|
T1_FontRec type1;
|
|
|
|
const void* psnames;
|
|
|
|
const void* psaux;
|
2008-09-22 10:55:44 +02:00
|
|
|
#if 0
|
2006-01-12 09:12:27 +01:00
|
|
|
const void* afm_data;
|
2008-09-22 10:55:44 +02:00
|
|
|
#endif
|
2006-01-12 09:12:27 +01:00
|
|
|
FT_Byte* ttf_data;
|
2015-02-21 10:39:34 +01:00
|
|
|
FT_Long ttf_size;
|
2006-01-12 09:12:27 +01:00
|
|
|
FT_Face ttf_face;
|
|
|
|
FT_CharMapRec charmaprecs[2];
|
|
|
|
FT_CharMap charmaps[2];
|
|
|
|
PS_UnicodesRec unicode_map;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
} T42_FaceRec, *T42_Face;
|
|
|
|
|
|
|
|
|
|
|
|
FT_END_HEADER
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* T42TYPES_H_ */
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|