2

FILETIMEを受け入れる Win32 関数に QDateTime を渡す必要があります。

これは、MSDN の FILETIME の定義です。

1601 年 1 月 1 日 (UTC) からの 100 ナノ秒間隔の数を表す 64 ビット値が含まれます。

4

1 に答える 1

5

私はそれを行うための関数を作成しましたが、これはテスト済みで動作します:

// Convert a QDateTime to a FILETIME.
FILETIME toWinFileTime(const QDateTime &dateTime)
{
    // Definition of FILETIME from MSDN:
    // Contains a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC).
    QDateTime origin(QDate(1601, 1, 1), QTime(0, 0, 0, 0), Qt::UTC);
    // Get offset - note we need 100-nanosecond intervals, hence we multiply by
    // 10000.
    qint64 _100nanosecs = 10000 * origin.msecsTo(dateTime);
    // Pack _100nanosecs into the structure.
    FILETIME fileTime;
    fileTime.dwLowDateTime = _100nanosecs;
    fileTime.dwHighDateTime = (_100nanosecs >> 32);
    return fileTime;
}
于 2013-10-31T11:06:50.477 に答える