vrshoot

annotate libs/ft2static/freetype/internal/pcftypes.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
rev   line source
nuclear@0 1 /* pcftypes.h
nuclear@0 2
nuclear@0 3 FreeType font driver for pcf fonts
nuclear@0 4
nuclear@0 5 Copyright (C) 2000, 2001, 2002 by
nuclear@0 6 Francesco Zappa Nardelli
nuclear@0 7
nuclear@0 8 Permission is hereby granted, free of charge, to any person obtaining a copy
nuclear@0 9 of this software and associated documentation files (the "Software"), to deal
nuclear@0 10 in the Software without restriction, including without limitation the rights
nuclear@0 11 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
nuclear@0 12 copies of the Software, and to permit persons to whom the Software is
nuclear@0 13 furnished to do so, subject to the following conditions:
nuclear@0 14
nuclear@0 15 The above copyright notice and this permission notice shall be included in
nuclear@0 16 all copies or substantial portions of the Software.
nuclear@0 17
nuclear@0 18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
nuclear@0 19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
nuclear@0 20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
nuclear@0 21 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
nuclear@0 22 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
nuclear@0 23 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
nuclear@0 24 THE SOFTWARE.
nuclear@0 25 */
nuclear@0 26
nuclear@0 27
nuclear@0 28 #ifndef __PCFTYPES_H__
nuclear@0 29 #define __PCFTYPES_H__
nuclear@0 30
nuclear@0 31
nuclear@0 32 #include <ft2build.h>
nuclear@0 33 #include FT_FREETYPE_H
nuclear@0 34
nuclear@0 35
nuclear@0 36 FT_BEGIN_HEADER
nuclear@0 37
nuclear@0 38
nuclear@0 39 typedef struct PCF_Public_FaceRec_
nuclear@0 40 {
nuclear@0 41 FT_FaceRec root;
nuclear@0 42 FT_StreamRec gzip_stream;
nuclear@0 43 FT_Stream gzip_source;
nuclear@0 44
nuclear@0 45 char* charset_encoding;
nuclear@0 46 char* charset_registry;
nuclear@0 47
nuclear@0 48 } PCF_Public_FaceRec, *PCF_Public_Face;
nuclear@0 49
nuclear@0 50
nuclear@0 51 FT_END_HEADER
nuclear@0 52
nuclear@0 53 #endif /* __PCFTYPES_H__ */
nuclear@0 54
nuclear@0 55
nuclear@0 56 /* END */