diff options
author | Perberos <[email protected]> | 2011-11-06 19:30:49 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-06 19:30:49 -0300 |
commit | a8d28a6ce7e0c56dacba5d527d9134573a008902 (patch) | |
tree | 8852602004b5a13cc5d1ce3ecd7a314be81d1198 /src/eom-pixbuf-util.h | |
download | eom-a8d28a6ce7e0c56dacba5d527d9134573a008902.tar.bz2 eom-a8d28a6ce7e0c56dacba5d527d9134573a008902.tar.xz |
inicial
Diffstat (limited to 'src/eom-pixbuf-util.h')
-rw-r--r-- | src/eom-pixbuf-util.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/eom-pixbuf-util.h b/src/eom-pixbuf-util.h new file mode 100644 index 0000000..e3d6268 --- /dev/null +++ b/src/eom-pixbuf-util.h @@ -0,0 +1,20 @@ +#ifndef _EOM_PIXBUF_UTIL_H_ +#define _EOM_PIXBUF_UTIL_H_ + +#include <gdk-pixbuf/gdk-pixbuf.h> +#include <gio/gio.h> + +G_GNUC_INTERNAL +GSList* eom_pixbuf_get_savable_formats (void); + +G_GNUC_INTERNAL +GdkPixbufFormat* eom_pixbuf_get_format_by_suffix (const char *suffix); + +G_GNUC_INTERNAL +GdkPixbufFormat* eom_pixbuf_get_format (GFile *file); + +G_GNUC_INTERNAL +char* eom_pixbuf_get_common_suffix (GdkPixbufFormat *format); + +#endif /* _EOM_PIXBUF_UTIL_H_ */ + |