Minor changes to metadata reading

This commit is contained in:
kdeng00
2019-08-08 21:31:13 -04:00
parent ead71da802
commit 16f0c1aed0
7 changed files with 54 additions and 247 deletions
-2
View File
@@ -1,5 +1,3 @@
#include <iostream>
#include "models.h"
void fetch_metadata(Song&, const char*);
+6 -5
View File
@@ -2,10 +2,11 @@
struct Song
{
int Id;
char *Title;
char *Artist;
char *Album;
char *Genre;
char Title[1024];
char Artist[1024];
char Album[1024];
char Genre[1024];
int Year;
char *SongPath;
int Duration;
char SongPath[1024];
};