source: OGRE/trunk/ogrenew/Dependencies/include/freetype/internal/services/svotval.h @ 657

Revision 657, 1.8 KB checked in by mattausch, 18 years ago (diff)

added ogre dependencies and patched ogre sources

Line 
1/***************************************************************************/
2/*                                                                         */
3/*  svotval.h                                                              */
4/*                                                                         */
5/*    The FreeType OpenType validation service (specification).            */
6/*                                                                         */
7/*  Copyright 2004 by                                                      */
8/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
9/*                                                                         */
10/*  This file is part of the FreeType project, and may only be used,       */
11/*  modified, and distributed under the terms of the FreeType project      */
12/*  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 __SVOTVAL_H__
20#define __SVOTVAL_H__
21
22
23FT_BEGIN_HEADER
24
25
26#define FT_SERVICE_ID_OPENTYPE_VALIDATE  "opentype-validate"
27
28
29  typedef FT_Error
30  (*otv_validate_func)( FT_Face    face,
31                        FT_UInt    ot_flags,
32                        FT_Bytes  *base,
33                        FT_Bytes  *gdef,
34                        FT_Bytes  *gpos,
35                        FT_Bytes  *gsub,
36                        FT_Bytes  *jstf );
37
38
39  FT_DEFINE_SERVICE( OTvalidate )
40  {
41    otv_validate_func  validate;
42  };
43
44  /* */
45
46
47FT_END_HEADER
48
49
50#endif /* __SVOTVAL_H__ */
51
52
53/* END */
Note: See TracBrowser for help on using the repository browser.