blob: 4adf2f1fbe7dd5ec6b550b7a33468f78f2d00b64 (
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
|