This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,18 @@
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;
}
}