blob: f415823c6523d34e9b1a5f4609085833bcbcd691 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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);
#endif
|