summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/checkwps/checkwps.c12
-rw-r--r--tools/database/database.make1
2 files changed, 13 insertions, 0 deletions
diff --git a/tools/checkwps/checkwps.c b/tools/checkwps/checkwps.c
index 079454def1..93487bcd89 100644
--- a/tools/checkwps/checkwps.c
+++ b/tools/checkwps/checkwps.c
@@ -140,6 +140,18 @@ int recalc_dimension(struct dim *dst, struct dim *src)
140 return 0; 140 return 0;
141} 141}
142 142
143#ifdef HAVE_ALBUMART
144int playback_claim_aa_slot(struct dim *dim)
145{
146 return 0;
147}
148
149void playback_release_aa_slot(int slot)
150{
151 return;
152}
153#endif
154
143int resize_on_load(struct bitmap *bm, bool dither, 155int resize_on_load(struct bitmap *bm, bool dither,
144 struct dim *src, struct rowset *tmp_row, 156 struct dim *src, struct rowset *tmp_row,
145 unsigned char *buf, unsigned int len, 157 unsigned char *buf, unsigned int len,
diff --git a/tools/database/database.make b/tools/database/database.make
index a32031f73c..a94aa55c78 100644
--- a/tools/database/database.make
+++ b/tools/database/database.make
@@ -19,6 +19,7 @@ FIRMINC = -I$(ROOTDIR)/firmware/include -fno-builtin
19INCLUDES = -I$(ROOTDIR)/apps/gui \ 19INCLUDES = -I$(ROOTDIR)/apps/gui \
20 -I$(ROOTDIR)/firmware/export \ 20 -I$(ROOTDIR)/firmware/export \
21 -I$(ROOTDIR)/apps \ 21 -I$(ROOTDIR)/apps \
22 -I$(ROOTDIR)/apps/recorder \
22 -I$(APPSDIR) \ 23 -I$(APPSDIR) \
23 -I$(BUILDDIR) \ 24 -I$(BUILDDIR) \
24 25