initial draft.
[swftools.git] / lib / python / image.c
diff --git a/lib/python/image.c b/lib/python/image.c
new file mode 100644 (file)
index 0000000..f855c8f
--- /dev/null
@@ -0,0 +1,23 @@
+#include <Python.h>
+#undef HAVE_STAT
+#include "../rfxswf.h"
+
+int image_getWidth(PyObject*image)
+{
+    return 0;
+}
+
+int image_getHeight(PyObject*image)
+{
+    return 0;
+}
+
+int image_getBPP(PyObject*image)
+{
+    return 0;
+}
+
+RGBA* image_toRGBA(PyObject*image)
+{
+    return 0;
+}