Update precache for Ecore_File function declaration changes (int to

Eina_Bool).



SVN revision: 49612
This commit is contained in:
Christopher Michael 2010-06-10 15:12:46 +00:00
parent 9c66c7743c
commit dbfedb9fec
2 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,6 @@
#include "config.h"
#include "e_precache.h"
static void *lib_evas = NULL;
static void *lib_ecore_file = NULL;
static void *lib_eet = NULL;
@ -139,7 +138,7 @@ ecore_file_size(const char *file)
return (*func) (file);
}
int
Eina_Bool
ecore_file_exists(const char *file)
{
static int (*func) (const char *file) = NULL;
@ -150,7 +149,7 @@ ecore_file_exists(const char *file)
return (*func) (file);
}
int
Eina_Bool
ecore_file_is_dir(const char *file)
{
static int (*func) (const char *file) = NULL;
@ -161,7 +160,7 @@ ecore_file_is_dir(const char *file)
return (*func) (file);
}
int
Eina_Bool
ecore_file_can_read(const char *file)
{
static int (*func) (const char *file) = NULL;
@ -172,7 +171,7 @@ ecore_file_can_read(const char *file)
return (*func) (file);
}
int
Eina_Bool
ecore_file_can_write(const char *file)
{
static int (*func) (const char *file) = NULL;
@ -183,7 +182,7 @@ ecore_file_can_write(const char *file)
return (*func) (file);
}
int
Eina_Bool
ecore_file_can_exec(const char *file)
{
static int (*func) (const char *file) = NULL;

View File

@ -11,6 +11,7 @@
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
#include <Eina.h>
#include <Evas.h>
#include <Ecore.h>
#include <Ecore_File.h>