diff options
Diffstat (limited to '')
-rw-r--r-- | src/stats.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stats.h b/src/stats.h index 143ee0045..0c82cb16c 100644 --- a/src/stats.h +++ b/src/stats.h @@ -30,6 +30,12 @@ struct stats { /** sum of all song durations in the music directory (in seconds) */ unsigned long song_duration; + + /** number of distinct artist names in the music directory */ + unsigned artist_count; + + /** number of distinct album names in the music directory */ + unsigned album_count; }; extern struct stats stats; |