X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpython%2Fimage.c;fp=lib%2Fpython%2Fimage.c;h=f855c8f92b49b386279f934336162ba3a5a8dbfb;hb=129968d66dd1bb375a99c7741198e8e9c4eee2e1;hp=0000000000000000000000000000000000000000;hpb=5641844394ba7158cdc8579f8f34a781bc6ac3f2;p=swftools.git diff --git a/lib/python/image.c b/lib/python/image.c new file mode 100644 index 0000000..f855c8f --- /dev/null +++ b/lib/python/image.c @@ -0,0 +1,23 @@ +#include +#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; +}