From dbfedb9fec514fcd3e751fb8b7baa136fb5c6502 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Thu, 10 Jun 2010 15:12:46 +0000 Subject: [PATCH] Update precache for Ecore_File function declaration changes (int to Eina_Bool). SVN revision: 49612 --- src/preload/e_precache.c | 11 +++++------ src/preload/e_precache.h | 1 + 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/preload/e_precache.c b/src/preload/e_precache.c index e203c6273..8795dc30a 100644 --- a/src/preload/e_precache.c +++ b/src/preload/e_precache.c @@ -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; diff --git a/src/preload/e_precache.h b/src/preload/e_precache.h index 71681b3c3..0f98dbbbf 100644 --- a/src/preload/e_precache.h +++ b/src/preload/e_precache.h @@ -11,6 +11,7 @@ #ifdef HAVE_ALLOCA_H #include #endif +#include #include #include #include