diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-12 01:44:27 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-12 01:44:27 +0000 |
commit | 1f118ea90dd0a22bd40e76a96900ffb36aa93134 (patch) | |
tree | f1600bdb9ef3d4b9f79091f06bfb9f05e7f6a9bb /src/dbUtils.h | |
parent | 18a2d5ab5a5fc005ddd4549807d083cd33f5b98f (diff) | |
download | mpd-1f118ea90dd0a22bd40e76a96900ffb36aa93134.tar.gz mpd-1f118ea90dd0a22bd40e76a96900ffb36aa93134.tar.xz mpd-1f118ea90dd0a22bd40e76a96900ffb36aa93134.zip |
now more flexible list, search, find, where you can enter pairs of
"conditionals". Note that logical and is implied.
git-svn-id: https://svn.musicpd.org/mpd/trunk@2624 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/dbUtils.h')
-rw-r--r-- | src/dbUtils.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/dbUtils.h b/src/dbUtils.h index a24311a5a..f79894bb6 100644 --- a/src/dbUtils.h +++ b/src/dbUtils.h @@ -12,10 +12,17 @@ typedef struct _LocateTagItem { char * needle; } LocateTagItem; +int getLocateTagItemType(char * str); + /* returns NULL if not a known type */ LocateTagItem * newLocateTagItem(char * typeString, char * needle); -int getLocateTagItemType(char * str); +/* return number of items or -1 on error */ +int newLocateTagItemArrayFromArgArray(char * argArray[], int numArgs, + LocateTagItem ** arrayRet); + + +void freeLocateTagItemArray(int count, LocateTagItem * array); void freeLocateTagItem(LocateTagItem * item); @@ -25,9 +32,11 @@ int addAllIn(FILE * fp, char * name); int printInfoForAllIn(FILE * fp, char * name); -int searchForSongsIn(FILE * fp, char * name, LocateTagItem * item); +int searchForSongsIn(FILE * fp, char * name, int numItems, + LocateTagItem * items); -int findSongsIn(FILE * fp, char * name, LocateTagItem * item); +int findSongsIn(FILE * fp, char * name, int numItems, + LocateTagItem * items); int countSongsIn(FILE * fp, char * name); |