diff --git a/legacy/eio/src/lib/eio_file.c b/legacy/eio/src/lib/eio_file.c index 4344f529e4..fec5d0f758 100644 --- a/legacy/eio/src/lib/eio_file.c +++ b/legacy/eio/src/lib/eio_file.c @@ -496,6 +496,7 @@ _eio_file_move_error(void *data) * @param main_cb Callback called from the main loop for each accepted file. * @param done_cb Callback called from the main loop when the content of the directory has been listed. * @param error_cb Callback called from the main loop when the directory could not be opened or listing content has been canceled. + * @param data Data passed to callback and not modified at all by eio_file_ls. * @return A reference to the IO operation. * * eio_file_ls run eina_file_ls in a separated thread using ecore_thread_feedback_run. This prevent @@ -543,6 +544,7 @@ eio_file_ls(const char *dir, * @param main_cb Callback called from the main loop for each accepted file. * @param done_cb Callback called from the main loop when the content of the directory has been listed. * @param error_cb Callback called from the main loop when the directory could not be opened or listing content has been canceled. + * @param data Data passed to callback and not modified at all by eio_file_direct_ls. * @return A reference to the IO operation. * * eio_file_direct_ls run eina_file_direct_ls in a separated thread using diff --git a/legacy/eio/src/lib/eio_single.c b/legacy/eio/src/lib/eio_single.c index 04b468e883..c604e0b4df 100644 --- a/legacy/eio/src/lib/eio_single.c +++ b/legacy/eio/src/lib/eio_single.c @@ -211,8 +211,10 @@ _eio_file_stat_error(void *data) /** * @brief Stat a file/directory. + * @param path The path to stat. * @param done_cb Callback called from the main loop when stat was successfully called.. * @param error_cb Callback called from the main loop when stat failed or has been canceled. + * @param data Private data given to callback. * @return A reference to the IO operation. * * eio_file_direct_stat basically call stat in another thread. This prevent any lock in your apps. @@ -248,9 +250,10 @@ eio_file_direct_stat(const char *path, /** * @brief Unlink a file/directory. - * @param mode The permission to set, follow (mode & ~umask & 0777). + * @param path The path to unlink. * @param done_cb Callback called from the main loop when the directory has been created. * @param error_cb Callback called from the main loop when the directory failed to be created or has been canceled. + * @param data Private data given to callback. * @return A reference to the IO operation. * * eio_file_unlink basically call unlink in another thread. This prevent any lock in your apps. @@ -289,6 +292,7 @@ eio_file_unlink(const char *path, * @param mode The permission to set, follow (mode & ~umask & 0777). * @param done_cb Callback called from the main loop when the directory has been created. * @param error_cb Callback called from the main loop when the directory failed to be created or has been canceled. + * @param data Private data given to callback. * @return A reference to the IO operation. * * eio_file_mkdir basically call mkdir in another thread. This prevent any lock in your apps.