| 12345678910111213141516171819202122232425262728 |
- //
- // System.Threading.AutoResetEvent.cs
- //
- // Author:
- // Dick Porter ([email protected])
- // Veronica De Santis ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Runtime.CompilerServices;
- namespace System.Threading
- {
- internal sealed class NativeEventCalls
- {
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public static extern IntPtr CreateEvent_internal(bool manual,bool initial,string name);
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public static extern bool SetEvent_internal(IntPtr handle);
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public static extern bool ResetEvent_internal(IntPtr handle);
-
- }
- }
|