26 lines
793 B
C#
26 lines
793 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace System.Threading
|
|
{
|
|
// Token: 0x02000617 RID: 1559
|
|
internal sealed class NativeEventCalls
|
|
{
|
|
// Token: 0x060038F2 RID: 14578
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public static extern IntPtr CreateEvent_internal(bool manual, bool initial, string name, out bool created);
|
|
|
|
// Token: 0x060038F3 RID: 14579
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public static extern bool SetEvent_internal(IntPtr handle);
|
|
|
|
// Token: 0x060038F4 RID: 14580
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public static extern bool ResetEvent_internal(IntPtr handle);
|
|
|
|
// Token: 0x060038F5 RID: 14581
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
public static extern void CloseEvent_internal(IntPtr handle);
|
|
}
|
|
}
|