mirror of https://github.com/GNOME/gimp.git
13 lines
157 B
C
13 lines
157 B
C
|
#ifndef __BOUNDARY_F_H__
|
||
|
#define __BOUNDARY_F_H__
|
||
|
|
||
|
typedef struct _BoundSeg BoundSeg;
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
WithinBounds,
|
||
|
IgnoreBounds
|
||
|
} BoundaryType;
|
||
|
|
||
|
#endif
|