[ctypes-commit] ctypes/source/libffi_msvc prep_cif.c,1.8,1.9
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2006-03-27 19:58:51
|
Update of /cvsroot/ctypes/ctypes/source/libffi_msvc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11285 Modified Files: prep_cif.c Log Message: Fix calling of stdcall functions on Windows, even with MINGW32. Index: prep_cif.c =================================================================== RCS file: /cvsroot/ctypes/ctypes/source/libffi_msvc/prep_cif.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** prep_cif.c 3 Mar 2006 20:20:11 -0000 1.8 --- prep_cif.c 27 Mar 2006 19:58:44 -0000 1.9 *************** *** 148,152 **** #endif { ! #ifndef _MSC_VER /* Don't know if this is a libffi bug or not. At least on Windows with MSVC, function call parameters are *not* --- 148,152 ---- #endif { ! #if !defined(_MSC_VER) && !defined(__MINGW32__) /* Don't know if this is a libffi bug or not. At least on Windows with MSVC, function call parameters are *not* |