diff options
author | Max Kellermann <max@duempel.org> | 2013-01-02 23:06:20 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-03 01:10:47 +0100 |
commit | 3e8047e5831b4cc7dabae596746066698ad7c8cd (patch) | |
tree | 51cf8e3cc3b5b373f11ffbd6d7c0b34b3c0acb6c /src/UpdateIO.hxx | |
parent | 440ac51cf0250904813dfc9398ca8c9e6467328f (diff) | |
download | mpd-3e8047e5831b4cc7dabae596746066698ad7c8cd.tar.gz mpd-3e8047e5831b4cc7dabae596746066698ad7c8cd.tar.xz mpd-3e8047e5831b4cc7dabae596746066698ad7c8cd.zip |
Directory: rename struct directory to Directory
Diffstat (limited to '')
-rw-r--r-- | src/UpdateIO.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/UpdateIO.hxx b/src/UpdateIO.hxx index 7b6175fdf..ee47b2682 100644 --- a/src/UpdateIO.hxx +++ b/src/UpdateIO.hxx @@ -24,27 +24,27 @@ #include <sys/stat.h> -struct directory; +struct Directory; int -stat_directory(const struct directory *directory, struct stat *st); +stat_directory(const Directory *directory, struct stat *st); int -stat_directory_child(const struct directory *parent, const char *name, +stat_directory_child(const Directory *parent, const char *name, struct stat *st); bool -directory_exists(const struct directory *directory); +directory_exists(const Directory *directory); bool -directory_child_is_regular(const struct directory *directory, +directory_child_is_regular(const Directory *directory, const char *name_utf8); /** * Checks if the given permissions on the mapped file are given. */ bool -directory_child_access(const struct directory *directory, +directory_child_access(const Directory *directory, const char *name, int mode); #endif |