* CurrencyWrapper.cs: Fix file name.
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / DISPPARAMS.cs
1
2 // System.Runtime.InteropServices/DISPPARAMS.cs
3 //
4 // Paolo Molaro (lupus@ximian.com)
5 //
6 // (C) 2002 Ximian, Inc.
7
8 using System;
9
10 namespace System.Runtime.InteropServices
11 {
12
13         [ComVisible(false)]
14         public struct DISPPARAMS {
15                 public int cArgs;
16                 public int cNamedArgs;
17                 public IntPtr rgdispidNamedArgs;
18                 public IntPtr rgvarg;
19         }
20 }
21