aboutsummaryrefslogtreecommitdiff
path: root/src/locate.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-24 15:56:34 +0100
committerMax Kellermann <max@duempel.org>2009-01-24 15:56:34 +0100
commit6a2118d04c7b73450edfffb6fdc40de1a05bfe94 (patch)
tree26b72b675bc6dcf864e58d4e9ff2a4869aa48f0c /src/locate.h
parentba7c9962663d2e80a6320ca097c06a0849218d27 (diff)
queue_print, dbUtils: use struct locate_item_list
Changed the function prototypes to get locate_item_list objects instead of num_items/items.
Diffstat (limited to 'src/locate.h')
-rw-r--r--src/locate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/locate.h b/src/locate.h
index d0083a42..0f1bd1a6 100644
--- a/src/locate.h
+++ b/src/locate.h
@@ -70,11 +70,11 @@ void
locate_item_free(struct locate_item *item);
bool
-locate_song_search(const struct song *song, int numItems,
- const struct locate_item *items);
+locate_song_search(const struct song *song,
+ const struct locate_item_list *criteria);
bool
-locate_song_match(const struct song *song, int numItems,
- const struct locate_item *items);
+locate_song_match(const struct song *song,
+ const struct locate_item_list *criteria);
#endif