revert between 56095 -> 55830 in arch
[AROS.git] / compiler / include / graphics / regions.h
blob0b6b9826b747f401ce6750d94ab23b750d9b2d12
1 #ifndef GRAPHICS_REGIONS_H
2 #define GRAPHICS_REGIONS_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Graphics region definitions.
9 Lang: english
12 #ifndef EXEC_TYPES_H
13 # include <exec/types.h>
14 #endif
15 #ifndef GRAPHICS_GFX_H
16 # include <graphics/gfx.h>
17 #endif
19 struct Region
21 struct Rectangle bounds;
22 struct RegionRectangle * RegionRectangle;
25 struct RegionRectangle
27 struct RegionRectangle * Next;
28 struct RegionRectangle * Prev;
29 struct Rectangle bounds;
32 #endif /* GRAPHICS_REGIONS_H */