Add skeleton code for evas module open/close, etc.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 83223
This commit is contained in:
Christopher Michael 2013-01-24 09:14:46 +00:00 committed by Christopher Michael
parent bc8f383098
commit e91f12c8e9
1 changed files with 24 additions and 0 deletions

View File

@ -132,3 +132,27 @@ eng_output_idle_flush(void *data)
{
}
/* module functions */
static int
module_open(Evas_Module *em)
{
return 0;
}
static void
module_close(Evas_Module *em EINA_UNUSED)
{
}
static Evas_Module_Api evas_modapi =
{
EVAS_MODULE_API_VERSION, "wayland_shm", "none", {module_open, module_close}
};
EVAS_MODULE_DEFINE(EVAS_MODULE_TYPE_ENGINE, engine, wayland_shm);
#ifndef EVAS_STATIC_BUILD_WAYLAND_SHM
EVAS_EINA_MODULE_DEFINE(engine, wayland_shm);
#endif