2 * Copyright (C) 2008 Diego Hernan Borghetti.
9 typedef struct _E_Function
{
10 struct _E_Function
*next
;
15 /* pointer to the function. */
16 void (*func
)(E_Eco
*);
19 void e_func_free(void);
20 E_Function
*e_func_find(char *name
);
21 void e_func_add(char *name
, void (*func
)(E_Eco
*));
22 void e_func_remove(char *name
);
24 #endif /* _ECO_FUNC_H */