Fixed a warning (missing type cast)
[tangerine.git] / rom / graphics / readpixelline8.c
blob8409b26d2a5a94af53725b3edf454efefc9f5812
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include "graphics_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <proto/graphics.h>
15 AROS_LH6(LONG, ReadPixelLine8,
17 /* SYNOPSIS */
18 AROS_LHA(struct RastPort * , rp , A0),
19 AROS_LHA(LONG , xstart , D0),
20 AROS_LHA(LONG , ystart , D1),
21 AROS_LHA(ULONG , width , D2),
22 AROS_LHA(UBYTE * , array , A2),
23 AROS_LHA(struct RastPort * , tempRP , A1),
25 /* LOCATION */
26 struct GfxBase *, GfxBase, 128, Graphics)
28 /* FUNCTION
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
42 INTERNALS
44 HISTORY
45 27-11-96 digulla automatically created from
46 graphics_lib.fd and clib/graphics_protos.h
48 *****************************************************************************/
50 AROS_LIBFUNC_INIT
52 return ReadPixelArray8(rp,
53 xstart,
54 ystart,
55 xstart + width - 1,
56 ystart,
57 array,
58 tempRP);
60 AROS_LIBFUNC_EXIT
62 } /* ReadPixelLine8 */