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

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

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

using System;

namespace System.Runtime.InteropServices
{

	[ComVisible(false)]
	public struct DISPPARAMS {
		public int cArgs;
		public int cNamedArgs;
		public IntPtr rgdispidNamedArgs;
		public IntPtr rgvarg;
	}
}