[[TOC]] = Examples of Codes for Emodules = This page includes some Tips and Tricks for coding Enlightenment 17 modules, you can found here a lot of chunks of examples of nice and useful things You can consider this page as a kind of fast reference for E17 modules == Chunks of codes == === Modules === Load, enable, disable, etc. an e17 module {{{ #!C E_Module *m; m = e_module_find("dropshadow"); if (m) e_module_enable(m); }}} === E17 Actions === Send an e17 action (ex. restart e17) {{{ #!C E_Action *a; a = e_action_find("restart"); if ((a) && (a->func.go)) a->func.go(NULL, NULL); }}} === === {{{ #!C }}} === === {{{ #!C }}} === === {{{ #!C }}} === === {{{ #!C }}} === === {{{ #!C }}}