symbol hiding fixes

SVN revision: 19556
This commit is contained in:
Carsten Haitzler 2006-01-06 13:56:47 +00:00
parent 0655e1e826
commit 5ba10bb385
6 changed files with 22 additions and 25 deletions

View File

@ -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;

View File

@ -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

View File

@ -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>

View File

@ -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;

View File

@ -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

View File

@ -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