fileselector: Added a description for Elm_Fileselector_Filter_Func.

This commit is contained in:
Daniel Juyung Seo 2013-12-30 00:31:04 +09:00
parent fb4c136444
commit 67634c3b82
1 changed files with 3 additions and 1 deletions

View File

@ -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. */);