home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / diskfont_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-28  |  971 b   |  36 lines

  1. #ifndef  CLIB_DISKFONT_PROTOS_H
  2. #define  CLIB_DISKFONT_PROTOS_H
  3.  
  4. /*
  5. **    $VER: diskfont_protos.h 36.1 (1.5.1990)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* __cplusplus */
  16.  
  17. #ifndef  DOS_DOS_H
  18. #include <dos/dos.h>
  19. #endif
  20. #ifndef  LIBRARIES_DISKFONT_H
  21. #include <libraries/diskfont.h>
  22. #endif
  23. struct TextFont *OpenDiskFont( struct TextAttr *textAttr );
  24. LONG AvailFonts( STRPTR buffer, LONG bufBytes, LONG flags );
  25. /*--- functions in V34 or higher (Release 1.3) ---*/
  26. struct FontContentsHeader *NewFontContents( BPTR fontsLock, STRPTR fontName );
  27. VOID DisposeFontContents( struct FontContentsHeader *fontContentsHeader );
  28. /*--- functions in V36 or higher (Release 2.0) ---*/
  29. struct DiskFont *NewScaledDiskFont( struct TextFont *sourceFont, struct TextAttr *destTextAttr );
  30.  
  31. #ifdef __cplusplus
  32. }
  33. #endif /* __cplusplus */
  34.  
  35. #endif   /* CLIB_DISKFONT_PROTOS_H */
  36.