2006-07-13 21:20:34 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2006-07-13 21:20:34 +02:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
#ifndef TAG_TRACKER_H
|
|
|
|
#define TAG_TRACKER_H
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
char *getTagItemString(int type, char *string);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void removeTagItemString(int type, char *string);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
|
|
|
int getNumberOfTagItems(int type);
|
|
|
|
|
2008-01-26 13:46:09 +01:00
|
|
|
void printMemorySavedByTagTracker(void);
|
2004-11-10 22:58:27 +01:00
|
|
|
|
|
|
|
void resetVisitedFlagsInTagTracker(int type);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void visitInTagTracker(int type, char *str);
|
2004-11-11 14:15:41 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
void printVisitedInTagTracker(int fd, int type);
|
2004-11-11 14:15:41 +01:00
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
#endif
|