1 #ifndef GRAPHICS_REGIONS_H
    2 #define GRAPHICS_REGIONS_H
    3 
    4 /*
    5 	graphics region definitions
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_TYPES_H
   11 # include <exec/types.h>
   12 #endif
   13 
   14 #ifndef GRAPHICS_GFX_H
   15 # include <graphics/gfx.h>
   16 #endif
   17 
   18 #pragma pack(2)
   19 
   20 
   21 struct RegionRectangle
   22 {
   23 	struct RegionRectangle *Next, *Prev;
   24 	struct Rectangle        bounds;
   25 };
   26 
   27 struct Region
   28 {
   29 	struct Rectangle        bounds;
   30 	struct RegionRectangle *RegionRectangle;
   31 };
   32 
   33 
   34 #pragma pack()
   35 
   36 #endif /* GRAPHICS_REGIONS_H */