2003-08-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / PARAMDESC.cs
1 //
2 // System.Runtime.InteropServices.PARAMDESC.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7
8 namespace System.Runtime.InteropServices
9 {
10         [ComVisible (false)]
11         public struct PARAMDESC
12         {
13                 public IntPtr lpVarValue;
14                 public PARAMFLAG wParamFlags;
15         }
16 }