diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:59 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:59 +0200 |
commit | a1c91f4695e208d5a8f80dc37b1818169b7829ff (patch) | |
tree | 52f5134376d17c99b6c9e53133a2eb5cf171377c /zen/int64.h | |
parent | 5.16 (diff) | |
download | FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.gz FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.bz2 FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.zip |
5.17
Diffstat (limited to 'zen/int64.h')
-rw-r--r-- | zen/int64.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zen/int64.h b/zen/int64.h index 4c63a24f..7d03f35d 100644 --- a/zen/int64.h +++ b/zen/int64.h @@ -15,7 +15,7 @@ #include "assert_static.h" #include "type_tools.h" -#ifdef FFS_WIN +#ifdef ZEN_WIN #include "win.h" #endif @@ -60,7 +60,7 @@ public: Int64& operator=(const Int64& rhs) { value = rhs.value; return *this; } -#ifdef FFS_WIN +#ifdef ZEN_WIN Int64(DWORD low, LONG high) { assert_static(sizeof(low) + sizeof(high) == sizeof(value)); @@ -139,7 +139,7 @@ public: UInt64& operator=(const UInt64& rhs) { value = rhs.value; return *this; } -#ifdef FFS_WIN +#ifdef ZEN_WIN UInt64(DWORD low, DWORD high) { assert_static(sizeof(low) + sizeof(high) == sizeof(value)); @@ -206,7 +206,7 @@ template <> inline UInt64 to(Int64 number) { checkRange<std::uint64_t>(number.va template <> inline Int64 to(UInt64 number) { checkRange<std:: int64_t>(number.value); return Int64(number.value); } -#ifdef FFS_WIN +#ifdef ZEN_WIN //convert FILETIME (number of 100-nanosecond intervals since January 1, 1601 UTC) // to time_t (number of seconds since Jan. 1st 1970 UTC) // |