2003-04-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / EXCEPINFO.cs
1
2 // System.Runtime.InteropServices/EXCEPINFO.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 EXCEPINFO {
15                 public string bstrDescription;
16                 public string bstrHelpFile;
17                 public string bstrSource;
18                 public int dwHelpContext;
19                 public IntPtr pfnDeferredFillIn;
20                 public IntPtr pvReserved;
21                 public short wCode;
22                 public short wReserved;
23         }
24 }
25