Add -lock-desktop option to enlightenment-remote, scripting/.eap goodness :)

SVN revision: 21571
This commit is contained in:
handyande 2006-03-29 15:50:01 +00:00 committed by handyande
parent a0214ba927
commit b038a8acc8
2 changed files with 16 additions and 0 deletions

View File

@ -7488,3 +7488,17 @@ break;
END_INT
#endif
#undef HDL
/****************************************************************************/
#define HDL E_IPC_OP_DESKTOP_LOCK
#if (TYPE == E_REMOTE_OPTIONS)
OP("-lock-desktop", 0, "Locks the desktop", 0, HDL)
#elif (TYPE == E_REMOTE_OUT)
REQ_NULL(HDL);
#elif (TYPE == E_WM_IN)
GENERIC(HDL);
e_desklock_show();
END_GENERIC();
#elif (TYPE == E_REMOTE_IN)
#endif
#undef HDL

View File

@ -377,3 +377,5 @@
#define E_IPC_OP_MAXIMIZE_MANIPULATION_SET 350
#define E_IPC_OP_MAXIMIZE_MANIPULATION_GET 351
#define E_IPC_OP_MAXIMIZE_MANIPULATION_GET_REPLY 352
#define E_IPC_OP_DESKTOP_LOCK 353