ImporterEventKind.cs 322 B

1234567891011121314151617
  1. //
  2. // System.Runtime.InteropServices.ImporterEventKind.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. namespace System.Runtime.InteropServices
  9. {
  10. [Serializable] public enum ImporterEventKind
  11. {
  12. NOTIF_TYPECONVERTED = 0,
  13. NOTIF_CONVERTWARNING = 1,
  14. ERROR_REFTOINVALIDTYPELIB = 2,
  15. }
  16. }