| 123456789101112131415161718192021 |
- // System.EnterpriseServices.Internal.IComManagedImportUtil.cs
- //
- // Author:
- // Alejandro Sánchez Acosta ([email protected])
- //
- // (C) Alejandro Sánchez Acosta
- //
- using System;
- using System.Runtime.InteropServices;
- namespace System.EnterpriseServices.Internal
- {
- //[Guid("")]
- public interface IComManagedImportUtil
- {
- void GetComponentInfo (string assemblyPath, out string numComponents, out string componentInfo);
- void InstallAssembly (string filename, string parname, string appname);
- }
- }
|