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

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