using System;
namespace System.Runtime.InteropServices
{
/// Describes the callbacks that the type library importer makes when importing a type library.
// Token: 0x02000328 RID: 808
[ComVisible(true)]
[Serializable]
public enum ImporterEventKind
{
/// Specifies that the event is invoked when a type has been imported.
// Token: 0x04000D5C RID: 3420
NOTIF_TYPECONVERTED,
/// Specifies that the event is invoked when a warning occurs during conversion.
// Token: 0x04000D5D RID: 3421
NOTIF_CONVERTWARNING,
/// This property is not supported in this version of the .NET Framework.
// Token: 0x04000D5E RID: 3422
ERROR_REFTOINVALIDTYPELIB
}
}