slcl/thumbnail.h

16 lines
291 B
C

#ifndef THUMBNAIL_H
#define THUMBNAIL_H
#include <stdbool.h>
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 */