using System;
namespace System.Runtime.InteropServices
{
/// Use instead.
// Token: 0x02000312 RID: 786
[Obsolete]
public struct FILETIME
{
/// Specifies the low 32 bits of the FILETIME.
// Token: 0x04000D19 RID: 3353
public int dwLowDateTime;
/// Specifies the high 32 bits of the FILETIME.
// Token: 0x04000D1A RID: 3354
public int dwHighDateTime;
}
}