3003b357482c8a9042887cfe2281ea89f322f9d9
Stefan Schuermans implement reading GIFs

Stefan Schuermans authored 7 years ago

config/gif.c   1) #include <gif_lib.h>
config/gif.c   2) 
config/gif.c   3) int main()
config/gif.c   4) {
config/gif.c   5)   GifFileType *gif;
config/gif.c   6) 
Stefan Schuermans support for giflib 5.x (unt...

Stefan Schuermans authored 7 years ago

config/gif5.c  7)   gif = DGifOpenFileName("x.gif", NULL);
Stefan Schuermans implement reading GIFs

Stefan Schuermans authored 7 years ago

config/gif.c   8)   if (gif)
Stefan Schuermans support for giflib 5.x (unt...

Stefan Schuermans authored 7 years ago

config/gif5.c  9)     DGifCloseFile(gif, NULL);