diff options
Diffstat (limited to 'openbox/imageload.c')
| -rw-r--r-- | openbox/imageload.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/openbox/imageload.c b/openbox/imageload.c index c80aa134..9bfe9187 100644 --- a/openbox/imageload.c +++ b/openbox/imageload.c @@ -26,6 +26,12 @@ #include "imageload.h" #include <Imlib2.h> +#ifndef USE_IMLIB2 +RrImage* RrImageFetchFromFile(RrImageCache *cache, const gchar *name) +{ + return NULL; +} +#else static void CreateFileNameTable(RrImageCache *self) { @@ -133,3 +139,5 @@ RrImage* RrImageFetchFromFile(RrImageCache *cache, const gchar *name) return rr_image; } + +#endif |
