Nits in file_browser.h
This commit is contained in:
parent
d1e7a96e2b
commit
7273b9901d
|
@ -44,12 +44,12 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
uint32_t file_count; /* amount of files in current dir*/
|
uint32_t file_count; /* amount of files in current dir*/
|
||||||
uint32_t currently_selected; /* currently select browser entry*/
|
uint32_t currently_selected; /* currently select browser entry*/
|
||||||
uint32_t directory_stack_size;
|
uint32_t directory_stack_size;
|
||||||
char dir[128][FS_MAX_FS_PATH_LENGTH]; /* info of the current directory*/
|
char dir[128][FS_MAX_FS_PATH_LENGTH]; /* info of the current directory*/
|
||||||
DirectoryEntry cur[MAX_FILE_LIMIT]; /* current file listing*/
|
DirectoryEntry cur[MAX_FILE_LIMIT]; /* current file listing*/
|
||||||
char extensions[512]; /* allowed extensions*/
|
char extensions[512]; /* allowed extensions*/
|
||||||
} filebrowser_t;
|
} filebrowser_t;
|
||||||
|
|
||||||
void filebrowser_new(filebrowser_t * filebrowser, const char * start_dir, const char * extensions);
|
void filebrowser_new(filebrowser_t * filebrowser, const char * start_dir, const char * extensions);
|
||||||
|
|
Loading…
Reference in New Issue