enlightenment/src/bin/e_actions.c

31 lines
359 B
C

/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
/* local subsystem functions */
/* local subsystem globals */
/* externally accessible functions */
int
e_actions_init(void)
{
return 1;
}
int
e_actions_shutdown(void)
{
return 1;
}
E_Action *
e_action_find(char *name)
{
return NULL;
}
/* local subsystem functions */