]> git.wh0rd.org - fontconfig.git/blame - fontconfig/fcfreetype.h
Bug 44826 - <alias> must contain only a single <family>
[fontconfig.git] / fontconfig / fcfreetype.h
CommitLineData
24330d27 1/*
317b8492 2 * fontconfig/fontconfig/fcfreetype.h
24330d27 3 *
46b51147 4 * Copyright © 2001 Keith Packard
24330d27
KP
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
5aaf466d 10 * documentation, and that the name of the author(s) not be used in
24330d27 11 * advertising or publicity pertaining to distribution of the software without
5aaf466d 12 * specific, written prior permission. The authors make no
24330d27
KP
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
15 *
3074a73b 16 * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
24330d27 17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
3074a73b 18 * EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
24330d27
KP
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 */
24
25#ifndef _FCFREETYPE_H_
26#define _FCFREETYPE_H_
408dd9c0
KP
27#include <ft2build.h>
28#include FT_FREETYPE_H
24330d27 29
4984242e
KP
30#ifndef FcPublic
31#define FcPublic
32#endif
33
116e13b4
KP
34_FCFUNCPROTOBEGIN
35
4984242e 36FcPublic FT_UInt
24330d27
KP
37FcFreeTypeCharIndex (FT_Face face, FcChar32 ucs4);
38
4984242e 39FcPublic FcCharSet *
848d32bd
KP
40FcFreeTypeCharSetAndSpacing (FT_Face face, FcBlanks *blanks, int *spacing);
41
4984242e 42FcPublic FcCharSet *
24330d27
KP
43FcFreeTypeCharSet (FT_Face face, FcBlanks *blanks);
44
4984242e 45FcPublic FcResult
bff80114 46FcPatternGetFTFace (const FcPattern *p, const char *object, int n, FT_Face *f);
be094850 47
4984242e 48FcPublic FcBool
be094850
KP
49FcPatternAddFTFace (FcPattern *p, const char *object, const FT_Face f);
50
72ffe653
KP
51FcPublic FcPattern *
52FcFreeTypeQueryFace (const FT_Face face,
53 const FcChar8 *file,
54 int id,
55 FcBlanks *blanks);
56
116e13b4
KP
57_FCFUNCPROTOEND
58
24330d27 59#endif