IComManagedImportUtil.cs 503 B

123456789101112131415161718192021
  1. // System.EnterpriseServices.Internal.IComManagedImportUtil.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta ([email protected])
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System;
  9. using System.Runtime.InteropServices;
  10. namespace System.EnterpriseServices.Internal
  11. {
  12. //[Guid("")]
  13. public interface IComManagedImportUtil
  14. {
  15. void GetComponentInfo (string assemblyPath, out string numComponents, out string componentInfo);
  16. void InstallAssembly (string filename, string parname, string appname);
  17. }
  18. }