git.asbjorn.biz
/
swftools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
uses newer autoconf syntax now
[swftools.git]
/
lib
/
python
/
image.c
1
#include <Python.h>
2
#undef HAVE_STAT
3
#include "../rfxswf.h"
4
5
int image_getWidth(PyObject*image)
6
{
7
return 0;
8
}
9
10
int image_getHeight(PyObject*image)
11
{
12
return 0;
13
}
14
15
int image_getBPP(PyObject*image)
16
{
17
return 0;
18
}
19
20
RGBA* image_toRGBA(PyObject*image)
21
{
22
return 0;
23
}