The DateTimeArray_r structure encodes an array of FILETIME structures.
typedef struct _DateTimeArray_r {
[range(0,100000)] DWORD cValues;
[size_is(cValues)] FILETIME* lpft;
} DateTimeArray_r;
cValues: The number of FILETIME data structures represented in the DateTimeArray_r structure. This value MUST NOT exceed 100,000.
lpft: The FILETIME data structures.