mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-19 01:12:33 +00:00
Merge pull request #3447 from bparker06/recursive
add missing parameter help text in dir_list
This commit is contained in:
commit
e1941911db
@ -35,6 +35,7 @@ RETRO_BEGIN_DECLS
|
||||
* @ext : allowed extensions of file directory entries to include.
|
||||
* @include_dirs : include directories as part of the finished directory listing?
|
||||
* @include_compressed : include compressed files, even when not part of ext.
|
||||
* @recursive : list directory contents recursively
|
||||
*
|
||||
* Create a directory listing.
|
||||
*
|
||||
@ -70,6 +71,7 @@ void dir_list_free(struct string_list *list);
|
||||
* @ext_list : the string list of extensions to include
|
||||
* @include_dirs : include directories as part of the finished directory listing?
|
||||
* @include_compressed : Only include files which match ext. Do not try to match compressed files, etc.
|
||||
* @recursive : list directory contents recursively
|
||||
*
|
||||
* Add files within a directory to an existing string list
|
||||
*
|
||||
|
@ -152,6 +152,7 @@ static int parse_dir_entry(const char *name, char *file_path,
|
||||
* @ext : allowed extensions of file directory entries to include.
|
||||
* @include_dirs : include directories as part of the finished directory listing?
|
||||
* @include_compressed : Only include files which match ext. Do not try to match compressed files, etc.
|
||||
* @recursive : list directory contents recursively
|
||||
*
|
||||
* Create a directory listing.
|
||||
*
|
||||
@ -187,6 +188,7 @@ struct string_list *dir_list_new(const char *dir,
|
||||
* @ext_list : the string list of extensions to include
|
||||
* @include_dirs : include directories as part of the finished directory listing?
|
||||
* @include_compressed : Only include files which match ext. Do not try to match compressed files, etc.
|
||||
* @recursive : list directory contents recursively
|
||||
*
|
||||
* Add files within a directory to an existing string list
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user