From f87ec715a88a78a6d7788503da2ebec786544e75 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 1 Nov 2017 10:59:13 -0700 Subject: Update to WiX Intermediate Representation --- src/WixToolset.Extensibility/IDecompilerExtension.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Extensibility/IDecompilerExtension.cs') diff --git a/src/WixToolset.Extensibility/IDecompilerExtension.cs b/src/WixToolset.Extensibility/IDecompilerExtension.cs index 6124f348..1574f964 100644 --- a/src/WixToolset.Extensibility/IDecompilerExtension.cs +++ b/src/WixToolset.Extensibility/IDecompilerExtension.cs @@ -19,31 +19,31 @@ namespace WixToolset.Extensibility /// Gets the table definitions this extension decompiles. /// /// Table definitions this extension decompiles. - TableDefinitionCollection TableDefinitions { get; } + //TableDefinitionCollection TableDefinitions { get; } /// /// Gets the library that this decompiler wants removed from the decomipiled output. /// /// The table definitions to use while loading the library. /// The library for this extension or null if there is no library to be removed. - Library GetLibraryToRemove(TableDefinitionCollection tableDefinitions); + //Library GetLibraryToRemove(TableDefinitionCollection tableDefinitions); /// /// Called at the beginning of the decompilation of a database. /// /// The collection of all tables. - void Initialize(TableIndexedCollection tables); + //void Initialize(TableIndexedCollection tables); /// /// Decompiles an extension table. /// /// The table to decompile. - void DecompileTable(Table table); + //void DecompileTable(Table table); /// /// Finalize decompilation. /// /// The collection of all tables. - void Finish(TableIndexedCollection tables); + //void Finish(TableIndexedCollection tables); } } -- cgit v1.2.3-55-g6feb