// 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. namespace WixToolset.Extensibility { using WixToolset.Data; using WixToolset.Data.WindowsInstaller; using WixToolset.Extensibility.Data; /// /// Interface all binder extensions implement. /// public interface IWindowsInstallerBackendDecompilerExtension { /// /// Called before decompiling occurs. /// void PreBackendDecompile(IDecompileContext context); // TODO: Redesign this interface to be useful. /// /// Called after all output changes occur and right before the output is bound into its final format. /// void PostBackendDecompile(IDecompileResult result); } }