From: Daniel Juyung Seo Date: Sun, 29 Dec 2013 15:31:04 +0000 (+0900) Subject: fileselector: Added a description for Elm_Fileselector_Filter_Func. X-Git-Tag: v1.9.0-alpha1~341 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4dc8b68b131bf0f3c395edbc96c8db05c58e17d1;p=platform%2Fupstream%2Felementary.git fileselector: Added a description for Elm_Fileselector_Filter_Func. --- diff --git a/src/lib/elc_fileselector_common.h b/src/lib/elc_fileselector_common.h index 8b12c922f..5c22fd9ab 100644 --- a/src/lib/elc_fileselector_common.h +++ b/src/lib/elc_fileselector_common.h @@ -22,4 +22,6 @@ typedef enum ELM_FILESELECTOR_SORT_LAST /**< sentinel (helper) value, not used */ } Elm_Fileselector_Sort; -typedef Eina_Bool (*Elm_Fileselector_Filter_Func)(const char *path, Eina_Bool dir, void *data); +typedef Eina_Bool (*Elm_Fileselector_Filter_Func)(const char *path, /*<< File path */ + Eina_Bool dir, /*<< A flag to show if path is a directory or not. True if the path is a directory. */ + void *data /*<< A user data that was given by elm_fileselector_custom_filter_append. */);