0

Clean up build warnings on Windows

This commit is contained in:
Andrew Chin
2012-03-01 23:23:52 -05:00
parent 20f9f92abd
commit 868256b538
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, int xsize, int ysize);
int dx, int dy, unsigned int xsize, unsigned int ysize);
PyObject *alpha_over_full(PyObject *dest, PyObject *src, PyObject *mask, float overall_alpha,
int dx, int dy, int xsize, int ysize);
int dx, int dy, unsigned int xsize, unsigned 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, int xsize, int ysize);
PyObject *mask, int dx, int dy, unsigned int xsize, unsigned int ysize);
PyObject *draw_triangle(PyObject *dest, int inclusive,
int x0, int y0,
unsigned char r0, unsigned char g0, unsigned char b0,