Update of /cvsroot/pywin32/pywin32/com/win32comext/internet/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19745/com/win32comext/internet/src
Modified Files:
Tag: AMD64
PyIInternetProtocol.cpp PyIInternetProtocol.h
PyIInternetProtocolRoot.cpp PyIInternetProtocolRoot.h
Log Message:
- Initial work on AMD64 support
Index: PyIInternetProtocolRoot.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/internet/src/PyIInternetProtocolRoot.h,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -C2 -d -r1.1 -r1.1.2.1
*** PyIInternetProtocolRoot.h 1 Sep 1999 23:15:28 -0000 1.1
--- PyIInternetProtocolRoot.h 21 Dec 2006 23:17:16 -0000 1.1.2.1
***************
*** 40,44 ****
IInternetBindInfo __RPC_FAR * pOIBindInfo,
DWORD grfPI,
! DWORD dwReserved);
STDMETHOD(Continue)(
--- 40,44 ----
IInternetBindInfo __RPC_FAR * pOIBindInfo,
DWORD grfPI,
! HANDLE_PTR dwReserved);
STDMETHOD(Continue)(
Index: PyIInternetProtocolRoot.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/internet/src/PyIInternetProtocolRoot.cpp,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** PyIInternetProtocolRoot.cpp 26 Nov 1999 14:15:31 -0000 1.2
--- PyIInternetProtocolRoot.cpp 21 Dec 2006 23:17:16 -0000 1.2.2.1
***************
*** 206,210 ****
/* [in] */ IInternetBindInfo __RPC_FAR * pOIBindInfo,
/* [in] */ DWORD grfPI,
! /* [in] */ DWORD dwReserved)
{
PY_GATEWAY_METHOD;
--- 206,210 ----
/* [in] */ IInternetBindInfo __RPC_FAR * pOIBindInfo,
/* [in] */ DWORD grfPI,
! /* [in] */ HANDLE_PTR dwReserved)
{
PY_GATEWAY_METHOD;
Index: PyIInternetProtocol.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/internet/src/PyIInternetProtocol.h,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -C2 -d -r1.1 -r1.1.2.1
*** PyIInternetProtocol.h 1 Sep 1999 23:15:28 -0000 1.1
--- PyIInternetProtocol.h 21 Dec 2006 23:17:16 -0000 1.1.2.1
***************
*** 38,42 ****
IInternetBindInfo __RPC_FAR * pOIBindInfo,
DWORD grfPI,
! DWORD dwReserved);
STDMETHOD(Continue)(
--- 38,42 ----
IInternetBindInfo __RPC_FAR * pOIBindInfo,
DWORD grfPI,
! HANDLE_PTR dwReserved);
STDMETHOD(Continue)(
Index: PyIInternetProtocol.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/internet/src/PyIInternetProtocol.cpp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -C2 -d -r1.1 -r1.1.2.1
*** PyIInternetProtocol.cpp 1 Sep 1999 23:15:28 -0000 1.1
--- PyIInternetProtocol.cpp 21 Dec 2006 23:17:16 -0000 1.1.2.1
***************
*** 147,151 ****
// Std delegation
! STDMETHODIMP PyGInternetProtocol::Start(LPCWSTR szUrl, IInternetProtocolSink __RPC_FAR * pOIProtSink, IInternetBindInfo __RPC_FAR * pOIBindInfo, DWORD grfPI, DWORD dwReserved)
{ return PyGInternetProtocolRoot::Start(szUrl, pOIProtSink, pOIBindInfo, grfPI, dwReserved);}
--- 147,151 ----
// Std delegation
! STDMETHODIMP PyGInternetProtocol::Start(LPCWSTR szUrl, IInternetProtocolSink __RPC_FAR * pOIProtSink, IInternetBindInfo __RPC_FAR * pOIBindInfo, DWORD grfPI, HANDLE_PTR dwReserved)
{ return PyGInternetProtocolRoot::Start(szUrl, pOIProtSink, pOIBindInfo, grfPI, dwReserved);}
|