~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/extras/freetype2/src/autohint/ahloader.h

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************/
 
2
/*                                                                         */
 
3
/*  ahloader.h                                                             */
 
4
/*                                                                         */
 
5
/*    Glyph loader for the auto-hinting module (declaration only).         */
 
6
/*                                                                         */
 
7
/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 
8
/*  Author: David Turner                                                   */
 
9
/*                                                                         */
 
10
/*  This file is part of the Catharon Typography Project and shall only    */
 
11
/*  be used, modified, and distributed under the terms of the Catharon     */
 
12
/*  Open Source License that should come with this file under the name     */
 
13
/*  `CatharonLicense.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
/*  Note that this license is compatible with the FreeType license.        */
 
18
/*                                                                         */
 
19
/***************************************************************************/
 
20
/* $XFree86: xc/extras/freetype2/src/autohint/ahloader.h,v 1.2 2003/01/12 03:55:45 tsi Exp $ */
 
21
 
 
22
 
 
23
  /*************************************************************************/
 
24
  /*                                                                       */
 
25
  /* This defines the AH_GlyphLoader type; it is simply a typedef to       */
 
26
  /* FT_GlyphLoader.                                                       */
 
27
  /*                                                                       */
 
28
  /*************************************************************************/
 
29
 
 
30
 
 
31
#ifndef __AHLOADER_H__
 
32
#define __AHLOADER_H__
 
33
 
 
34
 
 
35
#include <ft2build.h>
 
36
 
 
37
 
 
38
FT_BEGIN_HEADER
 
39
 
 
40
#include FT_INTERNAL_GLYPH_LOADER_H
 
41
 
 
42
#define AH_Load    FT_GlyphLoad
 
43
#define AH_Loader  FT_GlyphLoader
 
44
 
 
45
#define ah_loader_new              FT_GlyphLoader_New
 
46
#define ah_loader_done             FT_GlyphLoader_Done
 
47
#define ah_loader_reset            FT_GlyphLoader_Reset
 
48
#define ah_loader_rewind           FT_GlyphLoader_Rewind
 
49
#define ah_loader_create_extra     FT_GlyphLoader_CreateExtra
 
50
#define ah_loader_check_points     FT_GlyphLoader_CheckPoints
 
51
#define ah_loader_check_subglyphs  FT_GlyphLoader_CheckSubGlyphs
 
52
#define ah_loader_prepare          FT_GlyphLoader_Prepare
 
53
#define ah_loader_add              FT_GlyphLoader_Add
 
54
#define ah_loader_copy_points      FT_GlyphLoader_CopyPoints
 
55
 
 
56
 
 
57
FT_END_HEADER
 
58
 
 
59
#endif /* __AHLOADER_H__ */
 
60
 
 
61
 
 
62
/* END */