summaryrefslogtreecommitdiff
path: root/src/filelist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filelist.h')
-rw-r--r--src/filelist.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/filelist.h b/src/filelist.h
index 9ec302c..00e36e8 100644
--- a/src/filelist.h
+++ b/src/filelist.h
@@ -26,6 +26,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef FILELIST_H
#define FILELIST_H
+#ifdef HAVE_LIBEXIF
+#include <libexif/exif-data.h>
+#endif
+
struct __feh_file {
char *filename;
char *caption;
@@ -33,6 +37,9 @@ struct __feh_file {
/* info stuff */
feh_file_info *info; /* only set when needed */
+#ifdef HAVE_LIBEXIF
+ ExifData *ed;
+#endif
};
struct __feh_file_info {