home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / rom / graphics / openfont.c < prev    next >
C/C++ Source or Header  |  1997-01-27  |  1KB  |  61 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: openfont.c,v 1.8 1997/01/27 00:36:11 ldp Exp $    $Log
  4.  
  5.     Desc: Graphics function OpenFont()
  6.     Lang: english
  7. */
  8. #include "graphics_intern.h"
  9. #include <graphics/text.h>
  10.  
  11. /*****************************************************************************
  12.  
  13.     NAME */
  14. #include <graphics/text.h>
  15. #include <proto/graphics.h>
  16.  
  17.     AROS_LH1(struct TextFont *, OpenFont,
  18.  
  19. /*  SYNOPSIS */
  20.     AROS_LHA(struct TextAttr *, textAttr, A0),
  21.  
  22. /*  LOCATION */
  23.     struct GfxBase *, GfxBase, 12, Graphics)
  24.  
  25. /*  FUNCTION
  26.  
  27.     INPUTS
  28.  
  29.     RESULT
  30.  
  31.     NOTES
  32.  
  33.     EXAMPLE
  34.  
  35.     BUGS
  36.  
  37.     SEE ALSO
  38.  
  39.     INTERNALS
  40.  
  41.     HISTORY
  42.     29-10-95    digulla automatically created from
  43.                 graphics_lib.fd and clib/graphics_protos.h
  44.  
  45. *****************************************************************************/
  46. {
  47.     AROS_LIBFUNC_INIT
  48.     AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
  49.     struct TextFont * font;
  50.  
  51.     font = driver_OpenFont (textAttr, GfxBase);
  52.  
  53.     if (font)
  54.     {
  55.     font->tf_Accessors ++;
  56.     }
  57.  
  58.     return font;
  59.     AROS_LIBFUNC_EXIT
  60. } /* OpenFont */
  61.