slcl/thumbnail_stub.c

18 lines
279 B
C
Raw Normal View History

2023-03-24 02:39:23 +01:00
#include "thumbnail.h"
#include <stdbool.h>
int thumbnail_create(const char *const src, const char *const dst)
{
return -1;
}
bool thumbnail_configured(void)
{
return false;
}
int thumbnail_dim(const char *const path, struct thumbnail_dim *const d)
{
return -1;
}