From 5e172d447bd936def67aa0672e69bbcde385b53f Mon Sep 17 00:00:00 2001 From: Aharon Hillel Date: Tue, 20 Dec 2011 09:05:40 +0000 Subject: [PATCH] exactness: Added EAPI for funcs Signed-off-by: Aharon Hillel SVN revision: 66373 --- src/lib/tsuite_evas_hook.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/tsuite_evas_hook.c b/src/lib/tsuite_evas_hook.c index eb4587e..c37fa27 100644 --- a/src/lib/tsuite_evas_hook.c +++ b/src/lib/tsuite_evas_hook.c @@ -23,14 +23,16 @@ typedef struct _Eet_Event_Type Eet_Event_Type; static char *shot_key = SHOT_KEY_STR; 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 */ vr_list = v; shot_key = getenv("TSUITE_SHOT_KEY"); 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 */ vr_list = NULL; }