r7471@lvps87-230-33-50: verhaegs | 2008-04-05 16:41:40 +0200
[cake.git] / rom / cgfx / extractcolor.c
blobb81618f2aa366304d8d77d5e356ae0c26e99b627
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include "cybergraphics_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <clib/cybergraphics_protos.h>
15 AROS_LH7(ULONG, ExtractColor,
17 /* SYNOPSIS */
18 AROS_LHA(struct RastPort *, RastPort, A0),
19 AROS_LHA(struct BitMap *, SingleMap, A1),
20 AROS_LHA(ULONG , Colour, D0),
21 AROS_LHA(ULONG , sX, D1),
22 AROS_LHA(ULONG , sY, D2),
23 AROS_LHA(ULONG , Width, D3),
24 AROS_LHA(ULONG , Height, D4),
26 /* LOCATION */
27 struct Library *, CyberGfxBase, 31, Cybergraphics)
29 /* FUNCTION
31 INPUTS
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
45 HISTORY
46 27-11-96 digulla automatically created from
47 cybergraphics_lib.fd and clib/cybergraphics_protos.h
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
53 return driver_ExtractColor(RastPort, SingleMap, Colour, sX, sY, Width, Height, GfxBase);
55 AROS_LIBFUNC_EXIT
56 } /* ExtractColor */