| 12345678910111213141516 |
- //
- // System.Threading.IOCompletionCallback.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Threading
- {
- // 'unsafe' wasn't in the spec, but the compiler insists because of
- // the pointer.
- public unsafe delegate void IOCompletionCallback(uint errorCode, uint numBytes, NativeOverlapped *pOVERLAP);
- }
|