试图找到与SystemTimeToFileTime函数完全相似的函数,但找不到它。
我拥有所有的SYSTEMTIME和FILETIME结构,在linux上可以正确工作SYSTEMTIME,用于日期差异功能:

int64_t Delta2(const SYSTEMTIME st1, const SYSTEMTIME st2) {

    union timeunion { FILETIME fileTime; ULARGE_INTEGER ul; } ;
    timeunion ft1;
    timeunion ft2;
    SystemTimeToFileTime(&st1, &ft1.fileTime);
    SystemTimeToFileTime(&st2, &ft2.fileTime);

    return ft2.ul.QuadPart - ft1.ul.QuadPart;
}

有人知道SystemTimeToFileTime函数的确切替换吗?

最佳答案

我建议你咨询葡萄酒项目的来源,其中将包含你所需要的确切内容。

09-19 20:26