19 lines
500 B
C#
19 lines
500 B
C#
using System;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.FILETIME" /> instead.</summary>
|
|
// Token: 0x02000312 RID: 786
|
|
[Obsolete]
|
|
public struct FILETIME
|
|
{
|
|
/// <summary>Specifies the low 32 bits of the FILETIME.</summary>
|
|
// Token: 0x04000D19 RID: 3353
|
|
public int dwLowDateTime;
|
|
|
|
/// <summary>Specifies the high 32 bits of the FILETIME.</summary>
|
|
// Token: 0x04000D1A RID: 3354
|
|
public int dwHighDateTime;
|
|
}
|
|
}
|