RemoteInfoStruct
RemoteInfoStruct is passed to
FsGetFile and
FsRenMovFile. It contains details about the remote file being copied.
Declaration:
typedef struct {
DWORD SizeLow,SizeHigh;
FILETIME LastWriteTime;
int Attr;
} RemoteInfoStruct;
Description of struct members:
SizeLow,SizeHigh Low and high DWORD (32 bit each) of the remote file size. Useful for a progress indicator.
LastWriteTime Time stamp of the remote file - should be copied with the file.
Attr Attributes of the remote file - should be copied with the file.
Important note:
This struct is passed to FsGetFile and FsRenMovFile to make it easier for the plugin to copy the file. You can of course also ignore this parameter.