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.

42 lines
912 B

  1. // --------------------------------------------------------------------
  2. // T1.h
  3. //
  4. // Type 1 utilities.
  5. //
  6. // --------------------------------------------------------------------
  7. #if !defined(__T1_H__)
  8. #define __T1_H__
  9. // define this in priv.h for T1->TT support. (NB: It's not finished, yet.)
  10. //
  11. #if defined(T1_SUPPORT)
  12. // --------------------------------------------------------------------
  13. typedef struct {
  14. // The following are filled in for a Type 1 font.
  15. //
  16. FullPathName_t pfm;
  17. FullPathName_t pfb;
  18. FullPathName_t ttf;
  19. BOOL bCreatedPFM;
  20. } T1_INFO, FAR * LPT1_INFO;
  21. BOOL NEAR PASCAL bIsType1 (
  22. LPTSTR lpFile,
  23. FontDesc_t * lpDesc,
  24. LPT1_INFO lpInfo = NULL );
  25. BOOL NEAR PASCAL bConvertT1( LPT1_INFO lpInfo );
  26. #endif
  27. // --------------------------------------------------------------------
  28. #endif // __T1_H__
  29.