| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
| 2 | |
| 3 | namespace WixToolset.Core |
| 4 | { |
| 5 | using WixToolset.Extensibility.Data; |
| 6 | |
| 7 | /// <summary> |
| 8 | /// Supports converting Windows Installer databases to source code. |
| 9 | /// </summary> |
| 10 | public interface IWindowsInstallerDecompiler |
| 11 | { |
| 12 | /// <summary> |
| 13 | /// Converts Windows Installer database back to source code. |
| 14 | /// </summary> |
| 15 | /// <param name="context">Context for decompiling.</param> |
| 16 | /// <returns>Result of decompilation.</returns> |
| 17 | IWindowsInstallerDecompileResult Decompile(IWindowsInstallerDecompileContext context); |
| 18 | } |
| 19 | } |