src/tfm.h

/* [<][>]
[^][v][top][bottom][index][help] */

FUNCTIONS

This source file includes following functions.

   1 /*
   2  * tfm.h - TFM files interface
   3  */
   4 /*
   5  * Copyright (C) 1996-1998  Hirotsugu Kakugawa. 
   6  * All rights reserved.
   7  *
   8  * This file is part of the VFlib Library.  This library is free
   9  * software; you can redistribute it and/or modify it under the terms of
  10  * the GNU Library General Public License as published by the Free
  11  * Software Foundation; either version 2 of the License, or (at your
  12  * option) any later version.  This library is distributed in the hope
  13  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
  14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15  * PURPOSE.  See the GNU Library General Public License for more details.
  16  * You should have received a copy of the GNU Library General Public
  17  * License along with this library; if not, write to the Free Software
  18  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19  */
  20 
  21 #ifndef __VFLIB_TFM_H__
  22 #define __VFLIB_TFM_H__
  23 
  24 #include "texfonts.h" 
  25 
  26 
  27 extern int         vf_tfm_init(void);
  28 extern TFM         vf_tfm_open(char *tfm_path);
  29 extern int         vf_tfm_jfm_chartype(TFM tfm, UINT4 code);
  30 extern VF_METRIC1  vf_tfm_metric(TFM tfm, UINT4 code, VF_METRIC1 metric);
  31 extern void        vf_tfm_free(TFM tfm);
  32 
  33 #endif /*__VFLIB_TFM_H__*/
  34 
  35 
  36 /*EOF*/

/* [<][>][^][v][top][bottom][index][help] */