diff options
Diffstat (limited to 'thumbnail_stub.c')
| -rw-r--r-- | thumbnail_stub.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/thumbnail_stub.c b/thumbnail_stub.c new file mode 100644 index 0000000..6319942 --- /dev/null +++ b/thumbnail_stub.c @@ -0,0 +1,17 @@ +#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; +} |
