IOCompletionCallback.cs 374 B

12345678910111213141516
  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. public unsafe delegate void IOCompletionCallback(uint errorCode, uint numBytes, NativeOverlapped *pOVERLAP);
  14. }