* eina: make eina_file_ls and eina_file_direct_ls container be DIR*.

SVN revision: 53862
This commit is contained in:
Cedric BAIL 2010-10-25 12:25:24 +00:00
parent 541394175a
commit 4d36ee36e2
1 changed files with 8 additions and 4 deletions

View File

@ -108,10 +108,10 @@ _eina_file_ls_iterator_next(Eina_File_Iterator *it, void **data)
return EINA_TRUE; return EINA_TRUE;
} }
static char * static DIR *
_eina_file_ls_iterator_container(Eina_File_Iterator *it) _eina_file_ls_iterator_container(Eina_File_Iterator *it)
{ {
return it->dir; return it->dirp;
} }
static void static void
@ -166,10 +166,10 @@ _eina_file_direct_ls_iterator_next(Eina_File_Direct_Iterator *it, void **data)
return EINA_TRUE; return EINA_TRUE;
} }
static char * static DIR *
_eina_file_direct_ls_iterator_container(Eina_File_Direct_Iterator *it) _eina_file_direct_ls_iterator_container(Eina_File_Direct_Iterator *it)
{ {
return it->dir; return it->dirp;
} }
static void static void
@ -412,6 +412,8 @@ eina_file_split(char *path)
* *
* The iterator will walk over '.' and '..' without returning them. * The iterator will walk over '.' and '..' without returning them.
* *
* The iterator container is the DIR* corresponding to the current walk.
*
* @param dir The name of the directory to list * @param dir The name of the directory to list
* @return Return an Eina_Iterator that will walk over the files and * @return Return an Eina_Iterator that will walk over the files and
* directory in the pointed directory. On failure it will * directory in the pointed directory. On failure it will
@ -473,6 +475,8 @@ eina_file_ls(const char *dir)
* *
* The iterator will walk over '.' and '..' without returning them. * The iterator will walk over '.' and '..' without returning them.
* *
* The iterator container is the DIR* corresponding to the current walk.
*
* @param dir The name of the directory to list * @param dir The name of the directory to list
* @return Return an Eina_Iterator that will walk over the files and * @return Return an Eina_Iterator that will walk over the files and