]> mj.ucw.cz Git - libucw.git/blob - images/io-libungif.c
Merge with git+ssh://cvs.ucw.cz/projects/sherlock/GIT/sherlock.git
[libucw.git] / images / io-libungif.c
1 /*
2  *      Image Library -- libungif
3  *
4  *      (c) 2006 Pavel Charvat <pchar@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #define LOCAL_DEBUG
11
12 #include "lib/lib.h"
13 #include "images/images.h"
14
15 int
16 libungif_read_header(struct image_io *io)
17 {
18   image_thread_err(io->thread, IMAGE_ERR_NOT_IMPLEMENTED, "Libungif read not implemented.");
19   return 0;
20 }
21
22 int
23 libungif_read_data(struct image_io *io UNUSED)
24 {
25   ASSERT(0);
26 }