TagFile: use Path instead of const char *

This commit is contained in:
Max Kellermann
2013-10-26 15:14:54 +02:00
parent 4a5aad0948
commit a40246d312
16 changed files with 52 additions and 32 deletions

View File

@@ -22,6 +22,7 @@
#include "check.h"
class Path;
struct tag_handler;
/**
@@ -29,7 +30,7 @@ struct tag_handler;
* but does not invoke the special "APE" and "ID3" scanners.
*/
bool
tag_file_scan(const char *path_fs,
tag_file_scan(Path path,
const struct tag_handler *handler, void *handler_ctx);
#endif