Directory: rename struct directory to Directory

This commit is contained in:
Max Kellermann
2013-01-02 23:06:20 +01:00
parent 440ac51cf0
commit 3e8047e583
36 changed files with 180 additions and 184 deletions

View File

@@ -27,7 +27,7 @@
#define SONG_BEGIN "song_begin: "
struct song;
struct directory;
struct Directory;
void
song_save(FILE *fp, const struct song *song);
@@ -41,7 +41,7 @@ song_save(FILE *fp, const struct song *song);
* @return true on success, false on error
*/
struct song *
song_load(FILE *fp, struct directory *parent, const char *uri,
song_load(FILE *fp, Directory *parent, const char *uri,
GString *buffer, GError **error_r);
#endif