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

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: textlength.c,v 1.7 1997/01/27 00:36:12 ldp Exp $     $Log
  4.  
  5.     Desc: Graphics function TextLength()
  6.     Lang: english
  7. */
  8. #include "graphics_intern.h"
  9.  
  10. /*****************************************************************************
  11.  
  12.     NAME */
  13. #include <graphics/rastport.h>
  14. #include <proto/graphics.h>
  15.  
  16.     AROS_LH3(WORD, TextLength,
  17.  
  18. /*  SYNOPSIS */
  19.     AROS_LHA(struct RastPort *, rp, A1),
  20.     AROS_LHA(STRPTR           , string, A0),
  21.     AROS_LHA(ULONG            , count, D0),
  22.  
  23. /*  LOCATION */
  24.     struct GfxBase *, GfxBase, 9, Graphics)
  25.  
  26. /*  FUNCTION
  27.  
  28.     INPUTS
  29.  
  30.     RESULT
  31.  
  32.     NOTES
  33.  
  34.     EXAMPLE
  35.  
  36.     BUGS
  37.  
  38.     SEE ALSO
  39.  
  40.     INTERNALS
  41.  
  42.     HISTORY
  43.     29-10-95    digulla automatically created from
  44.                 graphics_lib.fd and clib/graphics_protos.h
  45.  
  46. *****************************************************************************/
  47. {
  48.     AROS_LIBFUNC_INIT
  49.     AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
  50.  
  51.     return driver_TextLength (rp, string, count, GfxBase);
  52.  
  53.     AROS_LIBFUNC_EXIT
  54. } /* TextLength */
  55.