barebox/lib/gui/png.h
Jean-Christophe PLAGNIOL-VILLARD da0d61770a gui: move gui file to include/gui and lib/gui
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2012-10-04 17:22:09 +02:00

22 lines
425 B
C

/*
* Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
*
* GPL v2
*/
#ifndef __PNG_H__
#define __PNG_H__
#include <filetype.h>
#include <linux/list.h>
#include <errno.h>
#include <linux/err.h>
int png_uncompress_init(void);
void png_uncompress_exit(void);
void png_close(struct image *img);
struct image *png_open(char *inbuf, int insize);
extern z_stream png_stream;
#endif /* __PNG_H__ */