diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 09:38:33 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-29 09:38:33 +0200 |
commit | e5a7879892f12cb60fa2d2857b0e14d328a7d5ae (patch) | |
tree | 6b5ee152733367e1751765d00a3c90919e52b130 /src/tagTracker.h | |
parent | b731bbe93abd48e745d72958be0c253ade7a9d08 (diff) | |
download | mpd-e5a7879892f12cb60fa2d2857b0e14d328a7d5ae.tar.gz mpd-e5a7879892f12cb60fa2d2857b0e14d328a7d5ae.tar.xz mpd-e5a7879892f12cb60fa2d2857b0e14d328a7d5ae.zip |
tag: converted tag_item.value to a char array
The value is stored in the same memory allocation as the tag_item
struct; this saves memory because we do not store the value pointer
anymore. Also remove the getTagItemString()/removeTagItemString()
dummies.
Diffstat (limited to 'src/tagTracker.h')
-rw-r--r-- | src/tagTracker.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/tagTracker.h b/src/tagTracker.h index 84506426e..2edb5aad0 100644 --- a/src/tagTracker.h +++ b/src/tagTracker.h @@ -19,10 +19,6 @@ #ifndef TAG_TRACKER_H #define TAG_TRACKER_H -char *getTagItemString(int type, char *string); - -void removeTagItemString(int type, char *string); - int getNumberOfTagItems(int type); void printMemorySavedByTagTracker(void); |