billiob pushed a commit to branch master.
commit e3dfc6f2b73d01f9e75c7746efbbe48540d2a10a
Author: Boris Faure <[email protected]>
Date: Sat Sep 14 19:18:19 2013 +0200
fix EAPI definition on Windows (patch by vtorri)
---
src/lib/elc_player.c | 8 ++++----
src/lib/elm_video.c | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/lib/elc_player.c b/src/lib/elc_player.c
index b52c418..2f52ed9 100644
--- a/src/lib/elc_player.c
+++ b/src/lib/elc_player.c
@@ -2,15 +2,15 @@
# include "elementary_config.h"
#endif
+#ifdef HAVE_EMOTION
+# include <Emotion.h>
+#endif
+
#include <Elementary.h>
#include "elm_priv.h"
#include "elm_widget_layout.h"
#include "elm_widget_player.h"
-#ifdef HAVE_EMOTION
-# include <Emotion.h>
-#endif
-
EAPI Eo_Op ELM_OBJ_PLAYER_BASE_ID = EO_NOOP;
#define MY_CLASS ELM_OBJ_PLAYER_CLASS
diff --git a/src/lib/elm_video.c b/src/lib/elm_video.c
index 9bdefe7..2d579cf 100644
--- a/src/lib/elm_video.c
+++ b/src/lib/elm_video.c
@@ -2,16 +2,16 @@
# include "elementary_config.h"
#endif
+#ifdef HAVE_EMOTION
+# include <Emotion.h>
+#endif
+
#include <Elementary.h>
#include "elm_priv.h"
#include "elm_widget_layout.h"
#include "elm_widget_video.h"
-#ifdef HAVE_EMOTION
-# include <Emotion.h>
-#endif
-
/* TODO: add buffering support to Emotion and display buffering
* progress in the theme when needed */
--