mirror of https://github.com/GNOME/gimp.git
16 lines
218 B
C
16 lines
218 B
C
|
#ifndef __GDISPLAY_F_H__
|
||
|
#define __GDISPLAY_F_H__
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
SelectionOff,
|
||
|
SelectionLayerOff,
|
||
|
SelectionOn,
|
||
|
SelectionPause,
|
||
|
SelectionResume
|
||
|
} SelectionControl;
|
||
|
|
||
|
typedef struct _GDisplay GDisplay;
|
||
|
|
||
|
#endif
|