diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IDecompilerExtension.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/IDecompilerExtension.cs | 10 |
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 | } |
