exactness: Added EAPI for funcs

Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>

SVN revision: 66373
This commit is contained in:
Aharon Hillel 2011-12-20 09:05:40 +00:00 committed by Tom Hacohen
parent 979d50831d
commit 5e172d447b
1 changed files with 4 additions and 2 deletions

View File

@ -23,14 +23,16 @@ typedef struct _Eet_Event_Type Eet_Event_Type;
static char *shot_key = SHOT_KEY_STR; static char *shot_key = SHOT_KEY_STR;
static Lists_st *vr_list = NULL; static Lists_st *vr_list = NULL;
void tsuite_evas_hook_init(Lists_st *v) EAPI void
tsuite_evas_hook_init(Lists_st *v)
{ /* Pointer taken from tsuite.c */ { /* Pointer taken from tsuite.c */
vr_list = v; vr_list = v;
shot_key = getenv("TSUITE_SHOT_KEY"); shot_key = getenv("TSUITE_SHOT_KEY");
if (!shot_key) shot_key = SHOT_KEY_STR; if (!shot_key) shot_key = SHOT_KEY_STR;
} }
void tsuite_evas_hook_reset(void) EAPI void
tsuite_evas_hook_reset(void)
{ /* tsuite.c informs us that vr_list is no longer valid */ { /* tsuite.c informs us that vr_list is no longer valid */
vr_list = NULL; vr_list = NULL;
} }