diff options
author | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2012-11-30 14:38:34 +0000 |
---|---|---|
committer | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2012-11-30 14:38:34 +0000 |
commit | c6a9c34e7f69b56a0c716789aca411217c756770 (patch) | |
tree | 8ac8aa5c9df349419cc36ed5c8ec558d792bc621 /src/modules/layout | |
parent | 5b0d59809109fc4e469950df38b5c993dd3709f5 (diff) | |
download | enlightenment-c6a9c34e7f69b56a0c716789aca411217c756770.tar.gz |
giant header overhaul which removes all the stupid one line function prototype headers and e_mod_main.h headers that contain nothing but unnecessary module api prototypes
SVN revision: 79908
Diffstat (limited to 'src/modules/layout')
-rw-r--r-- | src/modules/layout/e_mod_main.c | 11 | ||||
-rw-r--r-- | src/modules/layout/e_mod_main.h | 20 |
2 files changed, 10 insertions, 21 deletions
diff --git a/src/modules/layout/e_mod_main.c b/src/modules/layout/e_mod_main.c index ca74b3396d..d5320a28af 100644 --- a/src/modules/layout/e_mod_main.c +++ b/src/modules/layout/e_mod_main.c @@ -1,5 +1,14 @@ +/** + * @addtogroup Optional_Layouts + * @{ + * + * @defgroup Module_Layout Layout Policy Enforcement + * + * Enforces window layout policies. + * + * @} + */ #include "e.h" -#include "e_mod_main.h" /***************************************************************************/ /**/ diff --git a/src/modules/layout/e_mod_main.h b/src/modules/layout/e_mod_main.h deleted file mode 100644 index 7496e17222..0000000000 --- a/src/modules/layout/e_mod_main.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef E_MOD_MAIN_H -#define E_MOD_MAIN_H - -EAPI extern E_Module_Api e_modapi; - -EAPI void *e_modapi_init (E_Module *m); -EAPI int e_modapi_shutdown (E_Module *m); -EAPI int e_modapi_save (E_Module *m); - -/** - * @addtogroup Optional_Layouts - * @{ - * - * @defgroup Module_Layout Layout Policy Enforcement - * - * Enforces window layout policies. - * - * @} - */ -#endif |