FileDetailsStruct
FileDetailsStruct is passed to ContentCompareFiles to inform the plugin about the file details of the left and right file.
Declaration:
typedef struct {
__int64 filesize1;
__int64 filesize2;
FILETIME filetime1;
FILETIME filetime2;
DWORD attr1;
DWORD attr2;
} FileDetailsStruct;
Description of struct members:
filesize1,filesize2 The size of the first/second file. If your compiler doesn't support 64-bit numbers, you can split these into 4 DWORD numbers: filesize1lo,filesize1hi,filesize2lo,filesize2hi;
filetime1,filetime2 The last modification time stamp of the files, in standard Windows format
attr1,attr2 File attributes of the two files. Besides the standard attributes archive, read only, hidden and system, only NTFS-compressed and NTFS-encrypted may be set.