0

Revert "Clean up build warnings on Windows"

This was causing segfaults, reason unknown

This reverts commit 868256b538.
This commit is contained in:
Andrew Chin
2012-03-02 17:45:24 -05:00
parent 868256b538
commit 935d221886
3 changed files with 30 additions and 30 deletions

View File

@@ -49,13 +49,13 @@
/* in composite.c */
Imaging imaging_python_to_c(PyObject *obj);
PyObject *alpha_over(PyObject *dest, PyObject *src, PyObject *mask,
int dx, int dy, unsigned int xsize, unsigned int ysize);
int dx, int dy, int xsize, int ysize);
PyObject *alpha_over_full(PyObject *dest, PyObject *src, PyObject *mask, float overall_alpha,
int dx, int dy, unsigned int xsize, unsigned int ysize);
int dx, int dy, int xsize, int ysize);
PyObject *alpha_over_wrap(PyObject *self, PyObject *args);
PyObject *tint_with_mask(PyObject *dest, unsigned char sr, unsigned char sg,
unsigned char sb, unsigned char sa,
PyObject *mask, int dx, int dy, unsigned int xsize, unsigned int ysize);
PyObject *mask, int dx, int dy, int xsize, int ysize);
PyObject *draw_triangle(PyObject *dest, int inclusive,
int x0, int y0,
unsigned char r0, unsigned char g0, unsigned char b0,