ReactOS 0.4.15-dev-7924-g5949c20
svgxval.h
Go to the documentation of this file.
1/***************************************************************************/
2/* */
3/* svgxval.h */
4/* */
5/* FreeType API for validating TrueTypeGX/AAT tables (specification). */
6/* */
7/* Copyright 2004-2018 by */
8/* Masatake YAMATO, Red Hat K.K., */
9/* David Turner, Robert Wilhelm, and Werner Lemberg. */
10/* */
11/* This file is part of the FreeType project, and may only be used, */
12/* modified, and distributed under the terms of the FreeType project */
13/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
14/* this file you indicate that you have read the license and */
15/* understand and accept it fully. */
16/* */
17/***************************************************************************/
18
19/***************************************************************************/
20/* */
21/* gxvalid is derived from both gxlayout module and otvalid module. */
22/* Development of gxlayout is supported by the Information-technology */
23/* Promotion Agency(IPA), Japan. */
24/* */
25/***************************************************************************/
26
27
28#ifndef SVGXVAL_H_
29#define SVGXVAL_H_
30
31#include FT_GX_VALIDATE_H
32#include FT_INTERNAL_VALIDATE_H
33
35
36
37#define FT_SERVICE_ID_GX_VALIDATE "truetypegx-validate"
38#define FT_SERVICE_ID_CLASSICKERN_VALIDATE "classickern-validate"
39
40 typedef FT_Error
42 FT_UInt gx_flags,
44 FT_UInt table_length );
45
46
47 typedef FT_Error
49 FT_UInt ckern_flags,
50 FT_Bytes *ckern_table );
51
52
53 FT_DEFINE_SERVICE( GXvalidate )
54 {
56 };
57
58 FT_DEFINE_SERVICE( CKERNvalidate )
59 {
61 };
62
63 /* */
64
65
67
68
69#endif /* SVGXVAL_H_ */
70
71
72/* END */
WORD face[3]
Definition: mesh.c:4747
struct nls_table * tables
Definition: nls_base.c:22
static FRESULT validate(void *obj)
Definition: ff.c:2372
#define FT_VALIDATE_GX_LENGTH
Definition: ftgxval.h:104
#define FT_END_HEADER
Definition: ftheader.h:54
#define FT_BEGIN_HEADER
Definition: ftheader.h:36
#define FT_DEFINE_SERVICE(name)
Definition: ftserv.h:975
int FT_Error
Definition: fttypes.h:300
unsigned int FT_UInt
Definition: fttypes.h:231
const FT_Byte * FT_Bytes
Definition: fttypes.h:165
FT_Error(* gxv_validate_func)(FT_Face face, FT_UInt gx_flags, FT_Bytes tables[FT_VALIDATE_GX_LENGTH], FT_UInt table_length)
Definition: svgxval.h:41
FT_Error(* ckern_validate_func)(FT_Face face, FT_UInt ckern_flags, FT_Bytes *ckern_table)
Definition: svgxval.h:48