aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag_print.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-07 13:53:55 +0200
committerMax Kellermann <max@duempel.org>2008-09-07 13:53:55 +0200
commitdc8b64fdef1f8bc4499eef3aca17ed336ea3569b (patch)
treeba98b059e544ddecd774bd4c97ce66898cba3be0 /src/tag_print.h
parent5609a1fcd09c498fdcdfe0f535052e8d8c3ef05c (diff)
downloadmpd-dc8b64fdef1f8bc4499eef3aca17ed336ea3569b.tar.gz
mpd-dc8b64fdef1f8bc4499eef3aca17ed336ea3569b.tar.xz
mpd-dc8b64fdef1f8bc4499eef3aca17ed336ea3569b.zip
pass "struct client" to dbUtils.c, song.c, tag_print.c
Don't pass the raw file descriptor around. This migration patch is rather large, because all of the sources have inter dependencies - we have to change all of them at the same time.
Diffstat (limited to 'src/tag_print.h')
-rw-r--r--src/tag_print.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tag_print.h b/src/tag_print.h
index aa2b2898f..61c9114ac 100644
--- a/src/tag_print.h
+++ b/src/tag_print.h
@@ -20,9 +20,10 @@
#define TAG_PRINT_H
struct tag;
+struct client;
-void tag_print_types(int fd);
+void tag_print_types(struct client *client);
-void tag_print(int fd, const struct tag *tag);
+void tag_print(struct client *client, const struct tag *tag);
#endif