summaryrefslogtreecommitdiff
path: root/openbox/imageload.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/imageload.h')
-rw-r--r--openbox/imageload.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/openbox/imageload.h b/openbox/imageload.h
new file mode 100644
index 00000000..1c7addf3
--- /dev/null
+++ b/openbox/imageload.h
@@ -0,0 +1,11 @@
+#ifndef __imageload_h
+#define __imageload_h
+
+#ifdef USE_IMLIB2
+#include "obrender/render.h"
+RrImage* RrImageFetchFromFile(RrImageCache *cache, const gchar *name);
+#else
+#define RrImageFetchFromFile(cache, name) NULL
+#endif
+
+#endif