Remove the unused smart parser

This commit is contained in:
Julien BLACHE 2009-06-04 16:03:41 +02:00
parent 8b5a25c972
commit 2cc5f6928e
3 changed files with 0 additions and 1535 deletions

View File

@ -40,7 +40,6 @@ mt_daapd_SOURCES = main.c \
daap_query.c daap_query.h \
db-generic.c db-generic.h \
scan-wma.c \
smart-parser.c smart-parser.h \
db-sql-updates.c \
db-sql.c db-sql.h db-sql-sqlite3.c db-sql-sqlite3.h\
$(FLACSRC) $(MUSEPACKSRC)

File diff suppressed because it is too large Load Diff

View File

@ -1,20 +0,0 @@
#ifndef _SMART_PARSER_H_
#define _SMART_PARSER_H_
typedef void* PARSETREE;
extern PARSETREE sp_init(void);
extern int sp_parse(PARSETREE tree, const char *term, int type);
extern int sp_dispose(PARSETREE tree);
extern char *sp_get_error(PARSETREE tree);
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_ */