enlightenment/src/bin/e_xinerama.h

23 lines
322 B
C
Raw Normal View History

/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
typedef struct _E_Screen E_Screen;
#else
#ifndef E_XINERAMA_H
#define E_XINERAMA_H
struct _E_Screen
{
int screen;
int x, y, w, h;
};
EAPI int e_xinerama_init(void);
EAPI int e_xinerama_shutdown(void);
#endif
#endif