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

BINDPTR.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7bb93ac67695693ac5dc7075a69566bd188057b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

// System.Runtime.InteropServices/BINDPTR.cs
//
// Paolo Molaro (lupus@ximian.com)
//
// (C) 2002 Ximian, Inc.

using System;

namespace System.Runtime.InteropServices
{

	[ComVisible(false)]
	public struct BINDPTR {
		public IntPtr lpfuncdesc;
		public IntPtr lptcomp;
		public IntPtr lpvardesc;
	}
}