aboutsummaryrefslogtreecommitdiffstats
path: root/src/list.h
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-04-10 02:55:27 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-04-10 02:55:27 +0000
commit918dc2ff22e13808665b589e6740f45256e73c97 (patch)
tree7f694c3312b7115d869f50ad3f344a2e04e36672 /src/list.h
parent9b5f32c9e542bc8d67934866a58af37a12fb18fe (diff)
downloadmpd-918dc2ff22e13808665b589e6740f45256e73c97.tar.gz
mpd-918dc2ff22e13808665b589e6740f45256e73c97.tar.xz
mpd-918dc2ff22e13808665b589e6740f45256e73c97.zip
ideas on how to make readDirectoryInfo and readSongInfo deal with already
existing db stuff, and implement a new List function that will be very useful: insertInListBeforeNode() git-svn-id: https://svn.musicpd.org/mpd/trunk@657 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/list.h')
-rw-r--r--src/list.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/list.h b/src/list.h
index 4ae32160a..14f7f396b 100644
--- a/src/list.h
+++ b/src/list.h
@@ -69,6 +69,9 @@ List * makeList(ListFreeDataFunc * freeDataFunc);
*/
int insertInList(List * list,char * key,void * data);
+int insertInListBeforeNode(List * list, ListNode * beforeNode, char * key,
+ void * data);
+
int insertInListWithoutKey(List * list,void * data);
/* deletes the first node in the list with the key _key_