r4493@vps: verhaegs | 2007-04-19 14:44:00 -0400
[AROS.git] / rom / graphics / setwritemask.c
blobc56483775095055264e3217328a6615c6becc7c0
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$ $Log
5 Desc: Graphics function SetWriteMask()
6 Lang: english
7 */
8 #include "graphics_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <graphics/rastport.h>
14 #include <proto/graphics.h>
16 AROS_LH2(ULONG, SetWriteMask,
18 /* SYNOPSIS */
19 AROS_LHA(struct RastPort *, rp, A0),
20 AROS_LHA(ULONG , mask, D0),
22 /* LOCATION */
23 struct GfxBase *, GfxBase, 164, Graphics)
25 /* FUNCTION
27 INPUTS
29 RESULT
31 NOTES
33 EXAMPLE
35 BUGS
37 SEE ALSO
39 INTERNALS
41 HISTORY
42 29-10-95 digulla automatically created from
43 graphics_lib.fd and clib/graphics_protos.h
45 *****************************************************************************/
47 AROS_LIBFUNC_INIT
48 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
50 #if 0
51 rp->Mask = mask;
52 return TRUE;
53 #else
54 #warning SetWriteMask not yet implemented
55 return FALSE;
56 #endif
58 AROS_LIBFUNC_EXIT
60 } /* SetWriteMask */