You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
384 B
19 lines
384 B
/* |
|
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 |
|
*/ |
|
#ifndef E_MOD_MAIN_H |
|
#define E_MOD_MAIN_H |
|
|
|
#define E_TYPEDEFS 1 |
|
#include "e_int_config_paths.h" |
|
|
|
#undef E_TYPEDEFS |
|
#include "e_int_config_paths.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
|
|
|