* Allow users to specify the file names and order that the Album Art scanner will search for.
* Lots of changes for inotify support.
This commit is contained in:
@ -29,9 +29,14 @@ enum media_types {
|
||||
};
|
||||
|
||||
struct media_dir_s {
|
||||
char * path; /* Base path */
|
||||
enum media_types type; /* type of files to scan */
|
||||
char * path; /* Base path */
|
||||
enum media_types type; /* type of files to scan */
|
||||
struct media_dir_s * next;
|
||||
};
|
||||
|
||||
struct album_art_name_s {
|
||||
char * name; /* Base path */
|
||||
struct album_art_name_s * next;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user