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

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: readpixel.c,v 1.6 1997/01/27 00:36:11 ldp Exp $    $Log
  4.  
  5.     Desc: Graphics function ReadPixel()
  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_LH3(ULONG, ReadPixel,
  18.  
  19. /*  SYNOPSIS */
  20.     AROS_LHA(struct RastPort *, rp, A1),
  21.     AROS_LHA(LONG             , x, D0),
  22.     AROS_LHA(LONG             , y, D1),
  23.  
  24. /*  LOCATION */
  25.     struct GfxBase *, GfxBase, 53, Graphics)
  26.  
  27. /*  FUNCTION
  28.  
  29.     INPUTS
  30.  
  31.     RESULT
  32.  
  33.     NOTES
  34.  
  35.     EXAMPLE
  36.  
  37.     BUGS
  38.  
  39.     SEE ALSO
  40.  
  41.     INTERNALS
  42.  
  43.     HISTORY
  44.     29-10-95    digulla automatically created from
  45.                 graphics_lib.fd and clib/graphics_protos.h
  46.  
  47. *****************************************************************************/
  48. {
  49.     AROS_LIBFUNC_INIT
  50.     AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
  51.  
  52.     return driver_ReadPixel (rp, x, y, GfxBase);
  53.  
  54.     AROS_LIBFUNC_EXIT
  55. } /* ReadPixel */
  56.