From ca775d8d81d299a509e527463a7d2aa92a2dd823 Mon Sep 17 00:00:00 2001 From: Sebastian Dransfeld Date: Wed, 10 Sep 2008 05:00:32 +0000 Subject: [PATCH] EAPI SVN revision: 35916 --- .../emotion/src/modules/gstreamer/emotion_gstreamer.c | 4 ++-- .../emotion/src/modules/gstreamer/emotion_gstreamer.h | 10 +++++----- legacy/emotion/src/modules/xine/emotion_xine.c | 4 ++-- legacy/emotion/src/modules/xine/emotion_xine.h | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c b/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c index c505377062..5bea6eb6ef 100644 --- a/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c +++ b/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.c @@ -1200,7 +1200,7 @@ em_meta_get(void *video, int meta) return str; } -unsigned char +EAPI unsigned char module_open(Evas_Object *obj, Emotion_Video_Module **module, void **video, @@ -1216,7 +1216,7 @@ module_open(Evas_Object *obj, return 1; } -void +EAPI void module_close(Emotion_Video_Module *module, void *video) { diff --git a/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.h b/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.h index b33560465d..fcdfe21e66 100644 --- a/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.h +++ b/legacy/emotion/src/modules/gstreamer/emotion_gstreamer.h @@ -98,12 +98,12 @@ struct _Emotion_Gstreamer_Video unsigned char audio_mute : 1; }; -unsigned char module_open(Evas_Object *obj, - Emotion_Video_Module **module, - void **video, Emotion_Module_Options *opt); +EAPI unsigned char module_open(Evas_Object *obj, + Emotion_Video_Module **module, + void **video, Emotion_Module_Options *opt); -void module_close(Emotion_Video_Module *module, - void *video); +EAPI void module_close(Emotion_Video_Module *module, + void *video); #endif /* __EMOTION_GSTREAMER_H__ */ diff --git a/legacy/emotion/src/modules/xine/emotion_xine.c b/legacy/emotion/src/modules/xine/emotion_xine.c index 37f4dade5c..914ea0db84 100644 --- a/legacy/emotion/src/modules/xine/emotion_xine.c +++ b/legacy/emotion/src/modules/xine/emotion_xine.c @@ -1526,7 +1526,7 @@ static Emotion_Video_Module em_module = NULL /* handle */ }; -unsigned char +EAPI unsigned char module_open(Evas_Object *obj, const Emotion_Video_Module **module, void **video, Emotion_Module_Options *opt) { if (!module) @@ -1539,7 +1539,7 @@ module_open(Evas_Object *obj, const Emotion_Video_Module **module, void **video, return 1; } -void +EAPI void module_close(Emotion_Video_Module *module, void *video) { em_module.shutdown(video); diff --git a/legacy/emotion/src/modules/xine/emotion_xine.h b/legacy/emotion/src/modules/xine/emotion_xine.h index 8a9efcc426..17ca0e9cc8 100644 --- a/legacy/emotion/src/modules/xine/emotion_xine.h +++ b/legacy/emotion/src/modules/xine/emotion_xine.h @@ -86,7 +86,7 @@ struct _Emotion_Xine_Event int mtype; }; -unsigned char module_open(Evas_Object *obj, const Emotion_Video_Module **module, void **video, Emotion_Module_Options *opt); -void module_close(Emotion_Video_Module *module, void *video); +EAPI unsigned char module_open(Evas_Object *obj, const Emotion_Video_Module **module, void **video, Emotion_Module_Options *opt); +EAPI void module_close(Emotion_Video_Module *module, void *video); #endif