#include #ifdef HAVE_CONFIG_H # include "elementary_config.h" #endif // module api funcs needed EAPI int elm_modapi_init(void *m __UNUSED__) { return 1; // succeed always } EAPI int elm_modapi_shutdown(void *m __UNUSED__) { return 1; // succeed always } // module fucns for the specific module type EAPI void obj_hook(Evas_Object *obj) { printf("hook: %p\n", obj); } EAPI void obj_unhook(Evas_Object *obj) { printf("unhook: %p\n", obj); } EAPI void obj_longpress(Evas_Object *obj) { printf("longpress: %p\n", obj); }