summaryrefslogtreecommitdiff
path: root/image/nssprite.h
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2008-07-26 23:42:24 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2008-07-26 23:42:24 +0000
commit203b3289b8f590d25a2abf6df95bcaff741a7c2e (patch)
treed678df97090f80cb8d8fe54392d8341c509a2a61 /image/nssprite.h
parent4ea96eac117f0ba74074fb486e2a57f85db8c697 (diff)
downloadnetsurf-203b3289b8f590d25a2abf6df95bcaff741a7c2e.tar.gz
netsurf-203b3289b8f590d25a2abf6df95bcaff741a7c2e.tar.bz2
- Include utils/config.h before each WITH_* test entiry enabling/disabling the object file.
- Add same test in corresponding header file (if there is one) - riscos/uri.c: include riscos/uri.h and have function definitions matching the declarations. - Disable PDF debug logging. svn path=/trunk/netsurf/; revision=4769
Diffstat (limited to 'image/nssprite.h')
-rw-r--r--image/nssprite.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/image/nssprite.h b/image/nssprite.h
index 06e0a366e..47d989aa7 100644
--- a/image/nssprite.h
+++ b/image/nssprite.h
@@ -23,6 +23,9 @@
#ifndef _NETSURF_NS_SPRITE_H_
#define _NETSURF_NS_SPRITE_H_
+#include "utils/config.h"
+#ifdef WITH_NSSPRITE
+
#include <stdbool.h>
struct content;
@@ -38,4 +41,6 @@ bool nssprite_redraw(struct content *c, int x, int y,
int clip_x0, int clip_y0, int clip_x1, int clip_y1,
float scale, colour background_colour);
+#endif /* WITH_NSSPRITE */
+
#endif