Fri Jun 14 16:18:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / BINDPTR.cs
1
2 // System.Runtime.InteropServices/BINDPTR.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 BINDPTR {
15                 public IntPtr lpfuncdesc;
16                 public IntPtr lptcomp;
17                 public IntPtr lpvardesc;
18         }
19 }
20