EXCEPINFO.cs 458 B

12345678910111213141516171819202122232425
  1. // System.Runtime.InteropServices/EXCEPINFO.cs
  2. //
  3. // Paolo Molaro ([email protected])
  4. //
  5. // (C) 2002 Ximian, Inc.
  6. using System;
  7. namespace System.Runtime.InteropServices
  8. {
  9. [ComVisible(false)]
  10. public struct EXCEPINFO {
  11. public string bstrDescription;
  12. public string bstrHelpFile;
  13. public string bstrSource;
  14. public int dwHelpContext;
  15. public IntPtr pfnDeferredFillIn;
  16. public IntPtr pvReserved;
  17. public short wCode;
  18. public short wReserved;
  19. }
  20. }