Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IOCompletionCallback.cs « System.Threading « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d384f8a29b7b62e6e6df9869b16bb2bd76641c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Threading.IOCompletionCallback.cs
//
// Author:
//   Dick Porter (dick@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//


namespace System.Threading
{
	// 'unsafe' wasn't in the spec, but the compiler insists because of
	// the pointer.
	[Serializable]
	[CLSCompliant(false)]
	public unsafe delegate void IOCompletionCallback(uint errorCode, uint numBytes, NativeOverlapped *pOVERLAP);
}