enlightenment/src/bin/e_wayland/e_region.h

19 lines
249 B
C

#ifdef E_TYPEDEFS
typedef struct _E_Region E_Region;
#else
# ifndef E_REGION_H
# define E_REGION_H
struct _E_Region
{
struct wl_resource resource;
pixman_region32_t region;
};
EAPI E_Region *e_region_new(unsigned int id);
# endif
#endif