home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / ft-beta.zip / freetype / lib / ttgload.h < prev    next >
C/C++ Source or Header  |  1997-10-06  |  1KB  |  40 lines

  1. /*******************************************************************
  2.  *
  3.  *  ttgload.h                                                   1.0
  4.  *
  5.  *    TrueType Glyph Loader.                           
  6.  *
  7.  *  Copyright 1996, 1997 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 TTGLOAD_H
  20. #define TTGLOAD_H
  21.  
  22. #include "ttcommon.h"
  23. #include "ttobjs.h"
  24.  
  25.   #ifdef __cplusplus
  26.   extern "C" {
  27.   #endif
  28.  
  29.   TT_Error  Load_TrueType_Glyph(  PInstance   instance,
  30.                                   PGlyph      glyph,
  31.                                   Int         glyph_index,
  32.                                   Int         load_flags );
  33.  
  34.   #ifdef __cplusplus
  35.   }
  36.   #endif
  37.  
  38.  
  39. #endif /* TTGLOAD_H */
  40.