diff options
author | Iago Toral Quiroga <itoral@igalia.com> | 2010-06-01 16:46:34 +0200 |
---|---|---|
committer | Iago Toral Quiroga <itoral@igalia.com> | 2010-06-14 16:50:24 +0200 |
commit | a40860c02ce4b1dd963346bca1a5a9d9df46f311 (patch) | |
tree | 7e6f7a2559bb7d405874f635428188bc0568b551 /src/grl-multiple.h | |
parent | f41e11180b3867c017f20bb2330ec52404949157 (diff) | |
download | grilo-a40860c02ce4b1dd963346bca1a5a9d9df46f311.tar.gz |
[core] Added grl_multiple_search API.
Diffstat (limited to 'src/grl-multiple.h')
-rw-r--r-- | src/grl-multiple.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/grl-multiple.h b/src/grl-multiple.h new file mode 100644 index 0000000..f6842f1 --- /dev/null +++ b/src/grl-multiple.h @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2010 Igalia S.L. + * + * Contact: Iago Toral Quiroga <itoral@igalia.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; version 2.1 of + * the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA + * + */ + +#if !defined (_GRILO_H_INSIDE_) && !defined (GRILO_COMPILATION) +#error "Only <grilo.h> can be included directly." +#endif + +#ifndef _GRL_MULTIPLE_H_ +#define _GRL_MULTIPLE_H_ + +#include <glib.h> + +#include "grl-media-source.h" + +guint grl_multiple_search (const gchar *text, + const GList *keys, + guint count, + GrlMetadataResolutionFlags flags, + GrlMediaSourceResultCb callback, + gpointer user_data); + + +#endif |