IOCompletionCallback.cs 413 B

123456789101112131415161718
  1. //
  2. // System.Threading.IOCompletionCallback.cs
  3. //
  4. // Author:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Threading
  10. {
  11. // 'unsafe' wasn't in the spec, but the compiler insists because of
  12. // the pointer.
  13. [Serializable]
  14. [CLSCompliant(false)]
  15. public unsafe delegate void IOCompletionCallback(uint errorCode, uint numBytes, NativeOverlapped *pOVERLAP);
  16. }