home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / include / funcs / diskfont_funcs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  928 b   |  30 lines

  1. #ifndef  FUNCS_DISKFONT_FUNCS
  2. #define  FUNCS_DISKFONT_FUNCS
  3.  
  4. /*
  5. **
  6. ** Function declarations for ACE Basic
  7. **
  8. ** Note: Translated to ACE by Nils Sjoholm
  9. **
  10. ** Date: 11-Oct-95 TO 14-Oct-95
  11. **
  12. */              
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. DECLARE FUNCTION STRUCTPTR OpenDiskFont( STRUCTPTR textAttr ) LIBRARY diskfont
  19. DECLARE FUNCTION LONGINT AvailFonts( STRPTR buffer, LONGINT bufBytes, LONGINT flags ) LIBRARY diskfont
  20.  
  21. /*--- functions in V34 or higher (Release 1.3) ---*/
  22. DECLARE FUNCTION STRUCTPTR NewFontContents( BPTR fontsLock, STRPTR fontName ) LIBRARY diskfont
  23. DECLARE FUNCTION DisposeFontContents( STRUCTPTR fontContentsHeader ) LIBRARY diskfont
  24.  
  25. /*--- functions in V36 or higher (Release 2.0) ---*/
  26. DECLARE FUNCTION STRUCTPTR NewScaledDiskFont( STRUCTPTR sourceFont, \
  27.                                               STRUCTPTR destTextAttr ) LIBRARY diskfont
  28.  
  29. #endif   /* FUNCS_DISKFONT_FUNCS */
  30.