New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / graphics / getbpen.c
blob2f3518ccaed79f60e5cc9a6417eb809619809dce
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$ $Log
5 Desc: Graphics function GetBPen()
6 Lang: english
7 */
8 #include "graphics_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <graphics/rastport.h>
14 #include <proto/graphics.h>
16 AROS_LH1(ULONG, GetBPen,
18 /* SYNOPSIS */
19 AROS_LHA(struct RastPort *, rp, A0),
21 /* LOCATION */
22 struct GfxBase *, GfxBase, 144, Graphics)
24 /* FUNCTION
26 INPUTS
28 RESULT
30 NOTES
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 HISTORY
41 29-10-95 digulla automatically created from
42 graphics_lib.fd and clib/graphics_protos.h
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
47 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
49 return (UBYTE)rp->BgPen;
51 AROS_LIBFUNC_EXIT
52 } /* GetBPen */