This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,43 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>Provides an explicit layout that is visible from unmanaged code and that will have the same layout as the Win32 OVERLAPPED structure with additional reserved fields at the end.</summary>
// Token: 0x0200034A RID: 842
[Token(Token = "0x200034A")]
[ComVisible(true)]
public struct NativeOverlapped
{
/// <summary>Specifies a system-dependent status. Reserved for operating system use.</summary>
// Token: 0x04001122 RID: 4386
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4001122")]
public IntPtr InternalLow;
/// <summary>Specifies the length of the data transferred. Reserved for operating system use.</summary>
// Token: 0x04001123 RID: 4387
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x4001123")]
public IntPtr InternalHigh;
/// <summary>Specifies a file position at which to start the transfer.</summary>
// Token: 0x04001124 RID: 4388
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001124")]
public int OffsetLow;
/// <summary>Specifies the high word of the byte offset at which to start the transfer.</summary>
// Token: 0x04001125 RID: 4389
[global::Cpp2IlInjected.FieldOffset(Offset = "0x14")]
[Token(Token = "0x4001125")]
public int OffsetHigh;
/// <summary>Specifies the handle to an event set to the signaled state when the operation is complete. The calling process must set this member either to zero or to a valid event handle before calling any overlapped functions.</summary>
// Token: 0x04001126 RID: 4390
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4001126")]
public IntPtr EventHandle;
}
}