2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
5 Desc: (AROS only) Graphics function CopyRegion()
9 #include <graphics/regions.h>
10 #include <proto/graphics.h>
12 /*****************************************************************************
15 #include <proto/alib.h>
17 struct Region
*CopyRegion(
20 struct Region
*region
)
23 Make a copy of the given Region.
26 region - pointer to a Region structure
29 the copy of the Region, or NULL if not enough memory.
42 13-12-2000 stegerg implemented
44 *****************************************************************************/
46 struct Region
*nreg
= NewRegion();
50 if (OrRegionRegion(region
, nreg
))