[pywin32-checkins] pywin32/win32/src win32apimodule.cpp,1.32,1.33
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-12-01 08:23:05
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1:/tmp/cvs-serv11819 Modified Files: win32apimodule.cpp Log Message: GetProcAddress uses PyLong_FromVoidPtr() Index: win32apimodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32apimodule.cpp,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** win32apimodule.cpp 8 Nov 2003 12:28:58 -0000 1.32 --- win32apimodule.cpp 1 Dec 2003 08:23:02 -0000 1.33 *************** *** 1389,1393 **** return ReturnAPIError("GetProcAddress"); // @pyseeapi GetProcAddress ! return Py_BuildValue("i",(int)proc); } --- 1389,1393 ---- return ReturnAPIError("GetProcAddress"); // @pyseeapi GetProcAddress ! return PyLong_FromVoidPtr(proc); } |