Enlightenment CVS committal Author : raster Project : e17 Module : libs/ecore
Dir : e17/libs/ecore/src/lib/ecore Modified Files: ecore.c ecore_exe.c ecore_main.c ecore_plugin.c ecore_signal.c ecore_time.c Log Message: symbol hiding fixes =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- ecore.c 11 Apr 2005 15:43:44 -0000 1.11 +++ ecore.c 6 Jan 2006 13:56:47 -0000 1.12 @@ -1,7 +1,7 @@ -#include "ecore_private.h" -#include "Ecore.h" #include <locale.h> #include <langinfo.h> +#include "ecore_private.h" +#include "Ecore.h" static const char *_ecore_magic_string_get(Ecore_Magic m); static int _ecore_init_count = 0; =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_exe.c,v retrieving revision 1.34 retrieving revision 1.35 diff -u -3 -r1.34 -r1.35 --- ecore_exe.c 4 Jan 2006 20:53:07 -0000 1.34 +++ ecore_exe.c 6 Jan 2006 13:56:47 -0000 1.35 @@ -1,8 +1,7 @@ -#include "ecore_private.h" -#include "Ecore.h" - #include <errno.h> #include <sys/wait.h> +#include "ecore_private.h" +#include "Ecore.h" #ifndef WIN32 =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_main.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -3 -r1.22 -r1.23 --- ecore_main.c 1 Jan 2006 20:29:34 -0000 1.22 +++ ecore_main.c 6 Jan 2006 13:56:47 -0000 1.23 @@ -1,10 +1,10 @@ -#include "ecore_private.h" -#include "Ecore.h" - #ifdef WIN32 #include <winsock.h> #endif +#include "ecore_private.h" +#include "Ecore.h" + #define FIX_HZ 1 #include <math.h> =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_plugin.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ecore_plugin.c 5 Sep 2005 10:17:08 -0000 1.5 +++ ecore_plugin.c 6 Jan 2006 13:56:47 -0000 1.6 @@ -1,8 +1,7 @@ -#include "ecore_private.h" -#include "Ecore_Data.h" - #ifndef WIN32 #include <dlfcn.h> +#include "ecore_private.h" +#include "Ecore_Data.h" static Ecore_List *loaded_plugins = NULL; =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_signal.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -3 -r1.23 -r1.24 --- ecore_signal.c 4 Jan 2006 19:53:34 -0000 1.23 +++ ecore_signal.c 6 Jan 2006 13:56:47 -0000 1.24 @@ -1,13 +1,11 @@ -#include "ecore_private.h" -#include "Ecore.h" - #ifndef WIN32 - #include <sys/types.h> #include <sys/wait.h> #include <signal.h> #include <unistd.h> #include <assert.h> +#include "ecore_private.h" +#include "Ecore.h" /* make mono happy - this is evil though... */ #undef SIGPWR =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_time.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ecore_time.c 20 Oct 2004 17:51:28 -0000 1.5 +++ ecore_time.c 6 Jan 2006 13:56:47 -0000 1.6 @@ -1,28 +1,29 @@ +#include <sys/time.h> +#ifdef WIN32 +#include <sys/timeb.h> +#endif #include "ecore_private.h" #include "Ecore.h" -#include <sys/time.h> - #ifndef HAVE_GETTIMEOFDAY #ifdef WIN32 -#include <sys/timeb.h> -static int gettimeofday (struct timeval *tv, void *unused) +static int +gettimeofday(struct timeval *tv, void *unused) { struct _timeb t; - - if (!tv) - return -1; + + if (!tv) return -1; _ftime (&t); - + tv->tv_sec = t.time; tv->tv_usec = t.millitm * 1000; - + return 0; } #else -#error "Your platform isn't supported yet" +# error "Your platform isn't supported yet" #endif #endif ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs