Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
655 B

  1. /***
  2. **
  3. ** Module: MReader
  4. **
  5. ** Description:
  6. ** This is a module of the T1 to TT font converter. The module
  7. ** will extract information from a T1 font metrics file, by parsing
  8. ** the data/commands found in PFM and AFM files.
  9. **
  10. ** Author: Michael Jansson
  11. **
  12. ** Created: 5/26/93
  13. **
  14. ***/
  15. #ifndef _ARGS
  16. # define IN const
  17. # define OUT
  18. # define INOUT
  19. # define _ARGS(arg) arg
  20. #endif
  21. /***
  22. ** Function: ReadFontMetrics
  23. **
  24. ** Description:
  25. ** Read a font metrics file that associated to a type 1 font.
  26. ***/
  27. errcode ReadFontMetrics _ARGS((IN char *metrics,
  28. OUT struct T1Metrics *t1m));