aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IDecompilerExtension.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-11-01 10:59:13 -0700
committerRob Mensching <rob@firegiant.com>2017-11-01 10:59:13 -0700
commitf87ec715a88a78a6d7788503da2ebec786544e75 (patch)
tree561573bdd0647c5beec0adb09c2b780ddad2c4c0 /src/WixToolset.Extensibility/IDecompilerExtension.cs
parent7efd412cda00b369bc331c9bedd8db971d98fee7 (diff)
downloadwix-f87ec715a88a78a6d7788503da2ebec786544e75.tar.gz
wix-f87ec715a88a78a6d7788503da2ebec786544e75.tar.bz2
wix-f87ec715a88a78a6d7788503da2ebec786544e75.zip
Update to WiX Intermediate Representation
Diffstat (limited to 'src/WixToolset.Extensibility/IDecompilerExtension.cs')
-rw-r--r--src/WixToolset.Extensibility/IDecompilerExtension.cs10
1 files changed, 5 insertions, 5 deletions
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
19 /// Gets the table definitions this extension decompiles. 19 /// Gets the table definitions this extension decompiles.
20 /// </summary> 20 /// </summary>
21 /// <value>Table definitions this extension decompiles.</value> 21 /// <value>Table definitions this extension decompiles.</value>
22 TableDefinitionCollection TableDefinitions { get; } 22 //TableDefinitionCollection TableDefinitions { get; }
23 23
24 /// <summary> 24 /// <summary>
25 /// Gets the library that this decompiler wants removed from the decomipiled output. 25 /// Gets the library that this decompiler wants removed from the decomipiled output.
26 /// </summary> 26 /// </summary>
27 /// <param name="tableDefinitions">The table definitions to use while loading the library.</param> 27 /// <param name="tableDefinitions">The table definitions to use while loading the library.</param>
28 /// <returns>The library for this extension or null if there is no library to be removed.</returns> 28 /// <returns>The library for this extension or null if there is no library to be removed.</returns>
29 Library GetLibraryToRemove(TableDefinitionCollection tableDefinitions); 29 //Library GetLibraryToRemove(TableDefinitionCollection tableDefinitions);
30 30
31 /// <summary> 31 /// <summary>
32 /// Called at the beginning of the decompilation of a database. 32 /// Called at the beginning of the decompilation of a database.
33 /// </summary> 33 /// </summary>
34 /// <param name="tables">The collection of all tables.</param> 34 /// <param name="tables">The collection of all tables.</param>
35 void Initialize(TableIndexedCollection tables); 35 //void Initialize(TableIndexedCollection tables);
36 36
37 /// <summary> 37 /// <summary>
38 /// Decompiles an extension table. 38 /// Decompiles an extension table.
39 /// </summary> 39 /// </summary>
40 /// <param name="table">The table to decompile.</param> 40 /// <param name="table">The table to decompile.</param>
41 void DecompileTable(Table table); 41 //void DecompileTable(Table table);
42 42
43 /// <summary> 43 /// <summary>
44 /// Finalize decompilation. 44 /// Finalize decompilation.
45 /// </summary> 45 /// </summary>
46 /// <param name="tables">The collection of all tables.</param> 46 /// <param name="tables">The collection of all tables.</param>
47 void Finish(TableIndexedCollection tables); 47 //void Finish(TableIndexedCollection tables);
48 } 48 }
49} 49}