~ubuntu-branches/ubuntu/utopic/hedgewars/utopic

« back to all changes in this revision

Viewing changes to misc/libfreetype/src/gxvalid/gxvmod.h

  • Committer: Package Import Robot
  • Author(s): Gianfranco Costamagna
  • Date: 2014-01-02 12:37:23 UTC
  • mfrom: (19.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20140102123723-6pdhmyj8tb5y8xbg
Tags: 0.9.20.3-1
New upstream minor release, suitable for unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************/
2
 
/*                                                                         */
3
 
/*  gxvmod.h                                                               */
4
 
/*                                                                         */
5
 
/*    FreeType's TrueTypeGX/AAT validation module implementation           */
6
 
/*    (specification).                                                     */
7
 
/*                                                                         */
8
 
/*  Copyright 2004, 2005 by suzuki toshiya, 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 __GXVMOD_H__
29
 
#define __GXVMOD_H__
30
 
 
31
 
#include <ft2build.h>
32
 
#include FT_MODULE_H
33
 
 
34
 
 
35
 
FT_BEGIN_HEADER
36
 
 
37
 
#ifdef FT_CONFIG_OPTION_PIC
38
 
#error "this module does not support PIC yet"
39
 
#endif 
40
 
 
41
 
 
42
 
  FT_EXPORT_VAR( const FT_Module_Class )  gxv_module_class;
43
 
 
44
 
 
45
 
FT_END_HEADER
46
 
 
47
 
#endif /* __GXVMOD_H__ */
48
 
 
49
 
 
50
 
/* END */