#ifndef THUMBNAIL_H #define THUMBNAIL_H #include struct thumbnail_dim { unsigned long w, h; }; bool thumbnail_configured(void); int thumbnail_create(const char *src, const char *dst); int thumbnail_dim(const char *path, struct thumbnail_dim *d); #endif /* THUMBNAIL_H */