diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-11-01 04:40:58 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-11-01 05:17:26 +0100 |
commit | ab283d39889e28a6802cbec299db6a6792aebe5a (patch) | |
tree | 3a2591a0d159b65fab8b9cba3b2b7d5dd68711e2 /fastiv-io.h | |
parent | 7ca53b031e5faeb875e7e2cf042f1941bf076bb1 (diff) | |
download | fiv-ab283d39889e28a6802cbec299db6a6792aebe5a.tar.gz fiv-ab283d39889e28a6802cbec299db6a6792aebe5a.tar.xz fiv-ab283d39889e28a6802cbec299db6a6792aebe5a.zip |
Split out fastiv-io.h, move media types list
Diffstat (limited to 'fastiv-io.h')
-rw-r--r-- | fastiv-io.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/fastiv-io.h b/fastiv-io.h new file mode 100644 index 0000000..96b4929 --- /dev/null +++ b/fastiv-io.h @@ -0,0 +1,26 @@ +// +// fastiv-io.h: image loaders +// +// Copyright (c) 2021, Přemysl Eric Janouch <p@janouch.name> +// +// Permission to use, copy, modify, and/or distribute this software for any +// purpose with or without fee is hereby granted. +// +// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +// OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +// + +#pragma once + +#include <cairo.h> +#include <glib.h> + +extern const char *fastiv_io_supported_media_types[]; + +cairo_surface_t *fastiv_io_open(const gchar *path, GError **error); +cairo_surface_t *fastiv_io_lookup_thumbnail(const gchar *target); |