Move FILTER_TYPE_* definitions to smart-parser.h, where they belong

This commit is contained in:
Julien BLACHE 2009-04-24 10:57:44 +02:00
parent 29db6de1bb
commit 6ed689d1c9
2 changed files with 4 additions and 3 deletions

View File

@ -23,6 +23,7 @@
#include "ff-dbstruct.h"
#include "ff-plugin-events.h"
#include "smart-parser.h"
#define EXPORT
@ -89,9 +90,6 @@ typedef struct tag_plugin_info {
#define QUERY_TYPE_PLAYLISTS 1
#define QUERY_TYPE_DISTINCT 2
#define FILTER_TYPE_FIREFLY 0
#define FILTER_TYPE_APPLE 1
typedef struct tag_db_query {
int query_type;
char *distinct_field;

View File

@ -13,5 +13,8 @@ extern char *sp_sql_clause(PARSETREE tree);
#define SP_TYPE_PLAYLIST 0
#define SP_TYPE_QUERY 1
#define FILTER_TYPE_FIREFLY 0
#define FILTER_TYPE_APPLE 1
#endif /* _SMART_PARSER_H_ */