diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2019-12-21 11:23:03 +1100 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2019-12-22 13:19:29 +1000 |
| commit | f3c383c2412e376353d64a8b744184fa1cee1c6e (patch) | |
| tree | 4e092e2ce0e968e84df0e9c2ce41c13d4715bf4f /src/WixToolset.Mba.Core/BootstrapperApplication.cs | |
| parent | 46d46435592ba779d6c8d017859c27d90b092aa6 (diff) | |
| download | wix-f3c383c2412e376353d64a8b744184fa1cee1c6e.tar.gz wix-f3c383c2412e376353d64a8b744184fa1cee1c6e.tar.bz2 wix-f3c383c2412e376353d64a8b744184fa1cee1c6e.zip | |
Move IBootstrapperApplication and IBootstrapperEngine into balutil.
Diffstat (limited to 'src/WixToolset.Mba.Core/BootstrapperApplication.cs')
| -rw-r--r-- | src/WixToolset.Mba.Core/BootstrapperApplication.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/WixToolset.Mba.Core/BootstrapperApplication.cs b/src/WixToolset.Mba.Core/BootstrapperApplication.cs index 52667923..f8ac2a1e 100644 --- a/src/WixToolset.Mba.Core/BootstrapperApplication.cs +++ b/src/WixToolset.Mba.Core/BootstrapperApplication.cs | |||
| @@ -5,7 +5,6 @@ namespace WixToolset.Mba.Core | |||
| 5 | using System; | 5 | using System; |
| 6 | using System.Runtime.InteropServices; | 6 | using System.Runtime.InteropServices; |
| 7 | using System.Threading; | 7 | using System.Threading; |
| 8 | using WixToolset.BootstrapperCore; | ||
| 9 | 8 | ||
| 10 | /// <summary> | 9 | /// <summary> |
| 11 | /// The default bootstrapper application. | 10 | /// The default bootstrapper application. |
| @@ -1574,7 +1573,7 @@ namespace WixToolset.Mba.Core | |||
| 1574 | return args.HResult; | 1573 | return args.HResult; |
| 1575 | } | 1574 | } |
| 1576 | 1575 | ||
| 1577 | int IBootstrapperApplication.BAProc(BOOTSTRAPPER_APPLICATION_MESSAGE message, IntPtr pvArgs, IntPtr pvResults, IntPtr pvContext) | 1576 | int IBootstrapperApplication.BAProc(int message, IntPtr pvArgs, IntPtr pvResults, IntPtr pvContext) |
| 1578 | { | 1577 | { |
| 1579 | switch (message) | 1578 | switch (message) |
| 1580 | { | 1579 | { |
| @@ -1583,7 +1582,7 @@ namespace WixToolset.Mba.Core | |||
| 1583 | } | 1582 | } |
| 1584 | } | 1583 | } |
| 1585 | 1584 | ||
| 1586 | void IBootstrapperApplication.BAProcFallback(BOOTSTRAPPER_APPLICATION_MESSAGE message, IntPtr pvArgs, IntPtr pvResults, ref int phr, IntPtr pvContext) | 1585 | void IBootstrapperApplication.BAProcFallback(int message, IntPtr pvArgs, IntPtr pvResults, ref int phr, IntPtr pvContext) |
| 1587 | { | 1586 | { |
| 1588 | } | 1587 | } |
| 1589 | 1588 | ||
