CopyProgressRoutine Object

Python function used as a callback for win32file::CopyFileEx and win32file::MoveFileWithProgress
Function will receive 9 parameters:
(TotalFileSize, TotalBytesTransferred, StreamSize, StreamBytesTransferred, StreamNumber, CallbackReason, SourceFile, DestinationFile)
SourceFile and DestinationFile are PyHANDLEs, all others are longs.
CallbackReason will be one of CALLBACK_CHUNK_FINISHED or CALLBACK_STREAM_SWITCH
Your implementation of this function must return one of the PROGRESS_* constants.