summaryrefslogtreecommitdiffstats
path: root/lib/png.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/png.h')
-rw-r--r--lib/png.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/png.h b/lib/png.h
new file mode 100644
index 000000000..3ac9364d4
--- /dev/null
+++ b/lib/png.h
@@ -0,0 +1,21 @@
+/*
+ * 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__ */