istereo
annotate libs/imago2/ftype_module.h @ 28:c0ae8e668447
added vmath library
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Thu, 08 Sep 2011 08:30:42 +0300 |
parents | |
children |
rev | line source |
---|---|
nuclear@26 | 1 /* |
nuclear@26 | 2 libimago - a multi-format image file input/output library. |
nuclear@26 | 3 Copyright (C) 2010 John Tsiombikas <nuclear@member.fsf.org> |
nuclear@26 | 4 |
nuclear@26 | 5 This program is free software: you can redistribute it and/or modify |
nuclear@26 | 6 it under the terms of the GNU Lesser General Public License as published |
nuclear@26 | 7 by the Free Software Foundation, either version 3 of the License, or |
nuclear@26 | 8 (at your option) any later version. |
nuclear@26 | 9 |
nuclear@26 | 10 This program is distributed in the hope that it will be useful, |
nuclear@26 | 11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
nuclear@26 | 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
nuclear@26 | 13 GNU Lesser General Public License for more details. |
nuclear@26 | 14 |
nuclear@26 | 15 You should have received a copy of the GNU Lesser General Public License |
nuclear@26 | 16 along with this program. If not, see <http://www.gnu.org/licenses/>. |
nuclear@26 | 17 */ |
nuclear@26 | 18 |
nuclear@26 | 19 #ifndef FTYPE_MODULE_H_ |
nuclear@26 | 20 #define FTYPE_MODULE_H_ |
nuclear@26 | 21 |
nuclear@26 | 22 #include "imago2.h" |
nuclear@26 | 23 |
nuclear@26 | 24 struct ftype_module { |
nuclear@26 | 25 char *suffix; /* used for format autodetection during saving only */ |
nuclear@26 | 26 |
nuclear@26 | 27 int (*check)(struct img_io *io); |
nuclear@26 | 28 int (*read)(struct img_pixmap *img, struct img_io *io); |
nuclear@26 | 29 int (*write)(struct img_pixmap *img, struct img_io *io); |
nuclear@26 | 30 }; |
nuclear@26 | 31 |
nuclear@26 | 32 int img_register_module(struct ftype_module *mod); |
nuclear@26 | 33 |
nuclear@26 | 34 struct ftype_module *img_find_format_module(struct img_io *io); |
nuclear@26 | 35 struct ftype_module *img_guess_format(const char *fname); |
nuclear@26 | 36 struct ftype_module *img_get_module(int idx); |
nuclear@26 | 37 |
nuclear@26 | 38 |
nuclear@26 | 39 #endif /* FTYPE_MODULE_H_ */ |