Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3887
Modified Files:
CHANGES.txt setup.py
Log Message:
- Merge sidnei-bits branch, adds support for BITS (Background Intelligent Transfer Service)
Index: setup.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/setup.py,v
retrieving revision 1.67
retrieving revision 1.68
diff -C2 -d -r1.67 -r1.68
*** setup.py 10 Feb 2008 23:56:33 -0000 1.67
--- setup.py 12 Feb 2008 00:10:57 -0000 1.68
***************
*** 1427,1430 ****
--- 1427,1431 ----
'authorization' : 'com/win32comext/authorization/src',
'taskscheduler' : 'com/win32comext/taskscheduler/src',
+ 'bits' : 'com/win32comext/bits/src',
}
***************
*** 1574,1577 ****
--- 1575,1593 ----
""" % dirs).split()),
+ WinExt_win32com('bits', libraries='Bits', pch_header="bits_pch.h",
+ sources=("""
+ %(bits)s/bits.cpp
+ %(bits)s/PyIBackgroundCopyManager.cpp
+ %(bits)s/PyIBackgroundCopyCallback.cpp
+ %(bits)s/PyIBackgroundCopyError.cpp
+ %(bits)s/PyIBackgroundCopyJob.cpp
+ %(bits)s/PyIBackgroundCopyJob2.cpp
+ %(bits)s/PyIBackgroundCopyJob3.cpp
+ %(bits)s/PyIBackgroundCopyFile.cpp
+ %(bits)s/PyIBackgroundCopyFile2.cpp
+ %(bits)s/PyIEnumBackgroundCopyJobs.cpp
+ %(bits)s/PyIEnumBackgroundCopyFiles.cpp
+
+ """ % dirs).split()),
WinExt_win32com('ifilter', libraries='ntquery'),
WinExt_win32com('directsound', pch_header='directsound_pch.h',
***************
*** 1761,1765 ****
'win32comext.directsound',
'win32comext.authorization',
!
'pythonwin.pywin',
'pythonwin.pywin.debugger',
--- 1777,1782 ----
'win32comext.directsound',
'win32comext.authorization',
! 'win32comext.bits',
!
'pythonwin.pywin',
'pythonwin.pywin.debugger',
***************
*** 1869,1872 ****
--- 1886,1890 ----
'com/win32comext/ifilter/demo/*.py',
'com/win32comext/authorization/demos/*.py',
+ 'com/win32comext/bits/test/*.py',
'isapi/*.txt',
'isapi/samples/*.py',
Index: CHANGES.txt
===================================================================
RCS file: /cvsroot/pywin32/pywin32/CHANGES.txt,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** CHANGES.txt 7 Feb 2008 06:19:51 -0000 1.17
--- CHANGES.txt 12 Feb 2008 00:10:57 -0000 1.18
***************
*** 21,24 ****
--- 21,30 ----
* com related changes:
+ - win32com.bits: Sidnei da Silva from Enfold Systems added support for
+ BITS (Background Intelligent Transfer Service). Not fully complete
+ (missing Ranges-related APIs and a couple others) but the basic
+ functionality is in place. See the demos in
+ win32comext/bits/test/*.py
+
- makepy accepts a program id to process its typelib and generates long
integer literals for constants > sys.maxint. The way typelibs are generated
***************
*** 54,58 ****
* PyIExtractImage by Steven James.
* PyIEmptyVolumecache, IEmptyVolumeCache2, IEmptyVolumeCacheCallBack by
! Sidnei da Silva from Enfold.
* IsUserAnAdmin
* More coverage of the shell interfaces and demos, including many Vista
--- 60,64 ----
* PyIExtractImage by Steven James.
* PyIEmptyVolumecache, IEmptyVolumeCache2, IEmptyVolumeCacheCallBack by
! Sidnei da Silva from Enfold Systems.
* IsUserAnAdmin
* More coverage of the shell interfaces and demos, including many Vista
|