tweaking pandora frontend
[libpicofe.git] / common / readpng.h
index 542a774..ce5d635 100644 (file)
@@ -2,9 +2,17 @@ typedef enum
 {
        READPNG_BG = 1,
        READPNG_FONT,
-       READPNG_SELECTOR
+       READPNG_SELECTOR,
+       READPNG_24,
 }
 readpng_what;
 
-void readpng(void *dest, const char *fname, readpng_what what);
+#ifdef __cplusplus
+extern "C" {
+#endif
 
+int readpng(void *dest, const char *fname, readpng_what what, int w, int h);
+
+#ifdef __cplusplus
+}
+#endif