[pywin32-checkins] pywin32/win32/src win32consolemodule.cpp, 1.13, 1.14
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-10-07 15:23:31
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3416 Modified Files: win32consolemodule.cpp Log Message: Return console window handle as plaint int Index: win32consolemodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32consolemodule.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** win32consolemodule.cpp 25 Jul 2008 01:18:10 -0000 1.13 --- win32consolemodule.cpp 7 Oct 2008 15:21:49 -0000 1.14 *************** *** 1903,1907 **** return NULL; h=(*pfnGetConsoleWindow)(); ! return PyWinObject_FromHANDLE(h); } --- 1903,1907 ---- return NULL; h=(*pfnGetConsoleWindow)(); ! return PyWinLong_FromHANDLE(h); } |