http://bugs.winehq.org/show_bug.cgi?id=16318
--- Comment #1 from Nikolay Sivov bunglehead@gmail.com 2008-12-03 15:28:30 --- There's a mismatch in PSDK here:
class method declared as
Status Matrix::Multiply(IN const Matrix *,IN MatrixOrder)
but flat API is
GpStatus WINGDIPAPI GdipMultiplyMatrix(GpMatrix*,GpMatrix*,GpMatrixOrder)
See that
http://www.winehq.org/pipermail/wine-devel/2008-December/070896.html
Henri suggested to change our prototype to use const pointer and get rid of const to not-const cast.