diff options
Diffstat (limited to 'src/TagPrint.hxx')
-rw-r--r-- | src/TagPrint.hxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/TagPrint.hxx b/src/TagPrint.hxx index ccc0c9aa4..20e7f3288 100644 --- a/src/TagPrint.hxx +++ b/src/TagPrint.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -20,12 +20,19 @@ #ifndef MPD_TAG_PRINT_HXX #define MPD_TAG_PRINT_HXX +#include <stdint.h> + +enum TagType : uint8_t; + struct Tag; class Client; void tag_print_types(Client &client); void +tag_print(Client &client, TagType type, const char *value); + +void tag_print(Client &client, const Tag &tag); #endif |