mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-4379 Fix for MSVC 6.
X-SVN-Rev: 17345
This commit is contained in:
parent
48fe17450d
commit
f0096e265f
1 changed files with 2 additions and 2 deletions
|
@ -211,12 +211,12 @@ u_bottomNBytesOfDouble(double* d, int n)
|
|||
|
||||
#if defined(U_WINDOWS)
|
||||
typedef union {
|
||||
uint64_t int64;
|
||||
int64_t int64;
|
||||
FILETIME fileTime;
|
||||
} FileTimeConversion; /* This is like a ULARGE_INTEGER */
|
||||
|
||||
/* Number of 100 nanoseconds from 1/1/1601 to 1/1/1970 */
|
||||
#define EPOCH_BIAS UINT64_C(116444736000000000)
|
||||
#define EPOCH_BIAS INT64_C(116444736000000000)
|
||||
#define HECTONANOSECOND_PER_MILLISECOND 10000
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue