evas: correct header order.

SVN revision: 65452
This commit is contained in:
Cedric BAIL 2011-11-20 15:17:29 +00:00
parent 5c17799c25
commit 76b2798b5e
1 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,3 @@
#include "evas_common.h"
#include "evas_private.h"
#ifdef BUILD_ASYNC_EVENTS
# ifndef _MSC_VER
@ -9,6 +6,13 @@
# include <fcntl.h>
# include <errno.h>
#endif
#include "evas_common.h"
#include "evas_private.h"
#ifdef BUILD_ASYNC_EVENTS
static int _fd_write = -1;
static int _fd_read = -1;
@ -159,7 +163,7 @@ evas_async_events_put(const void *target, Evas_Callback_Type type, void *event_i
return result;
#else
func(target, type, event_info);
func((void*) target, type, event_info);
return EINA_TRUE;
#endif
}