[pywin32-checkins] pywin32/win32/src/win32wnet win32wnet.cpp, 1.17, 1.18
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-01-03 06:42:32
|
Update of /cvsroot/pywin32/pywin32/win32/src/win32wnet In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15682/win32wnet Modified Files: win32wnet.cpp Log Message: fix silly error setting up hwnd in WNetAddConnection3 Index: win32wnet.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32wnet/win32wnet.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** win32wnet.cpp 2 Jan 2009 00:01:16 -0000 1.17 --- win32wnet.cpp 3 Jan 2009 06:42:20 -0000 1.18 *************** *** 219,223 **** HWND hwnd; ! if (!PyWinObject_AsHANDLE(obhwnd, (HANDLE *)hwnd)) return NULL; if (!PyWinObject_AsNETRESOURCE(obnr, &pNetResource, FALSE)) --- 219,223 ---- HWND hwnd; ! if (!PyWinObject_AsHANDLE(obhwnd, (HANDLE *)&hwnd)) return NULL; if (!PyWinObject_AsNETRESOURCE(obnr, &pNetResource, FALSE)) |