2003-04-05 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System.Threading / IOCompletionCallback.cs
1 //
2 // System.Threading.IOCompletionCallback.cs
3 //
4 // Author:
5 //   Dick Porter (dick@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10
11 namespace System.Threading
12 {
13         // 'unsafe' wasn't in the spec, but the compiler insists because of
14         // the pointer.
15         [Serializable]
16         [CLSCompliant(false)]
17         public unsafe delegate void IOCompletionCallback(uint errorCode, uint numBytes, NativeOverlapped *pOVERLAP);
18 }