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.

38 lines
776 B

  1. /***
  2. **
  3. ** Module: PFM
  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 a PFM file.
  9. **
  10. ** Please note the all data stored in a PFM file is represented
  11. ** in the little-endian order.
  12. **
  13. ** Author: Michael Jansson
  14. **
  15. ** Created: 5/26/93
  16. **
  17. ***/
  18. #ifndef _ARGS
  19. # define IN const
  20. # define OUT
  21. # define INOUT
  22. # define _ARGS(arg) arg
  23. #endif
  24. struct T1Metrics;
  25. /***
  26. ** Function: ReadPFMMetrics
  27. **
  28. ** Description:
  29. ** This function parses a Printer Font Metrics
  30. ** (*.pfm) file.
  31. ***/
  32. errcode ReadPFMMetrics _ARGS((IN char *metrics,
  33. OUT struct T1Metrics *t1m));