Constants.cs 382 B

1234567891011
  1. using System.Runtime.InteropServices;
  2. namespace WinSCP
  3. {
  4. internal static class Constants
  5. {
  6. public const ClassInterfaceType ClassInterface = ClassInterfaceType.AutoDispatch;
  7. // Avoids warning from regasm and is probably the right choice anyway
  8. public const ClassInterfaceType CollectionClassInterface = ClassInterfaceType.None;
  9. }
  10. }