summaryrefslogtreecommitdiff
path: root/src/modules/layout/e_mod_main.h
diff options
context:
space:
mode:
authorCarsten Haitzler <raster@rasterman.com>2007-07-01 15:59:39 +0000
committerCarsten Haitzler <raster@rasterman.com>2007-07-01 15:59:39 +0000
commit5af386933f9336788fa5af7f968db272ed128896 (patch)
tree4f3f47c17202bf1135dc115fd24dad7ca4bcc864 /src/modules/layout/e_mod_main.h
parent27f81d1ea2eece73f939609e44ad26d53fd7cd29 (diff)
downloadenlightenment-5af386933f9336788fa5af7f968db272ed128896.tar.gz
add hook to borders to allow layout to b adjusted by modules
add a layout module - good proof of concept SVN revision: 30517
Diffstat (limited to 'src/modules/layout/e_mod_main.h')
-rw-r--r--src/modules/layout/e_mod_main.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/modules/layout/e_mod_main.h b/src/modules/layout/e_mod_main.h
new file mode 100644
index 0000000000..a24ec2e3e4
--- /dev/null
+++ b/src/modules/layout/e_mod_main.h
@@ -0,0 +1,15 @@
+/*
+ * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
+ */
+#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);
+EAPI int e_modapi_about (E_Module *m);
+EAPI int e_modapi_config (E_Module *m);
+
+#endif