diff options
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/plugins/simple/Directory.hxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/db/plugins/simple/Directory.hxx b/src/db/plugins/simple/Directory.hxx index 6c60b7ebf..716afecea 100644 --- a/src/db/plugins/simple/Directory.hxx +++ b/src/db/plugins/simple/Directory.hxx @@ -28,7 +28,17 @@ #include <string> +/** + * Virtual directory that is really an archive file or a folder inside + * the archive (special value for Directory::device). + */ static constexpr unsigned DEVICE_INARCHIVE = -1; + +/** + * Virtual directory that is really a song file with one or more "sub" + * songs as specified by DecoderPlugin::container_scan() (special + * value for Directory::device). + */ static constexpr unsigned DEVICE_CONTAINER = -2; #define directory_for_each_child(pos, directory) \ |