create rotation job and EAPI e_border_rotation_set
[platform/core/uifw/e17.git] / src / bin / e_xinerama.h
1 #ifdef E_TYPEDEFS
2
3 typedef struct _E_Screen E_Screen;
4
5 #else
6 #ifndef E_XINERAMA_H
7 #define E_XINERAMA_H
8
9 struct _E_Screen
10 {
11    int screen, escreen;
12    int x, y, w, h;
13 };
14
15 EINTERN int           e_xinerama_init(void);
16 EINTERN int           e_xinerama_shutdown(void);
17 EAPI void             e_xinerama_update(void);
18 EAPI const Eina_List *e_xinerama_screens_get(void);
19 EAPI const Eina_List *e_xinerama_screens_all_get(void);
20 EAPI void             e_xinerama_fake_screen_add(int x, int y, int w, int h);
21
22 #endif
23 #endif