[pywin32-checkins] pywin32/win32/src win32inet.i,1.10,1.11
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-08 13:14:31
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10966/win32/src Modified Files: win32inet.i Log Message: More winhttp fixes Index: win32inet.i =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32inet.i,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** win32inet.i 9 Apr 2008 04:31:07 -0000 1.10 --- win32inet.i 8 Dec 2008 13:14:24 -0000 1.11 *************** *** 66,69 **** --- 66,73 ---- }; + // NOTE: The PyHINTERNET class is only suitable for HINTERNET's returned + // from the win32inet functions. The WinHttp functions should use a + // HWINHTTP. + // @object PyHINTERNET|An object that wraps a HINTERNET handle. When the // handle object is destroyed, it is automatically closed. *************** *** 1924,1927 **** --- 1928,1932 ---- extern void init_win32inetstuff(); extern PyObject *PyWinHttpGetIEProxyConfigForCurrentUser(PyObject *, PyObject *); + extern PyObject *PyWinHttpGetDefaultProxyConfiguration(PyObject *, PyObject *); extern PyObject *PyWinHttpGetProxyForUrl(PyObject *, PyObject *); extern PyObject *PyWinHttpOpen(PyObject *, PyObject *); *************** *** 1929,1932 **** --- 1934,1938 ---- %native(WinHttpGetIEProxyConfigForCurrentUser) PyWinHttpGetIEProxyConfigForCurrentUser; + %native(WinHttpGetDefaultProxyConfiguration) PyWinHttpGetDefaultProxyConfiguration; %native(WinHttpGetProxyForUrl) PyWinHttpGetProxyForUrl; %native(WinHttpOpen) PyWinHttpOpen; |