Add a task to copy configuration files to user's HOME dir from data dir for multi...
[platform/core/uifw/e17.git] / src / bin / e_desklock.h
1 #ifdef E_TYPEDEFS
2
3 typedef struct _E_Event_Desklock E_Event_Desklock;
4
5 #else
6 #ifndef E_DESKLOCK_H
7 #define E_DESKLOCK_H
8
9 struct _E_Event_Desklock
10 {
11    int on;
12    int suspend;
13 };
14
15 EINTERN int e_desklock_init(void);
16 EINTERN int e_desklock_shutdown(void);
17
18 EAPI int e_desklock_show(Eina_Bool suspend);
19 EAPI int e_desklock_show_autolocked(void);
20 EAPI void e_desklock_hide(void);
21 EAPI Eina_Bool e_desklock_state_get(void);
22
23 extern EAPI int E_EVENT_DESKLOCK;
24
25 #endif
26 #endif