diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-10-18 22:38:21 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-10-24 20:17:06 -0500 |
commit | 1b6a4f9b4600079e829d5884f768563ed7dea5e5 (patch) | |
tree | 7db199ee381f31e675e6a28c248f037dc5f9018d /src/mbanative | |
parent | c9d14eb51e4b8458fd5e2738fcc7d1c1129ad22e (diff) | |
download | wix-1b6a4f9b4600079e829d5884f768563ed7dea5e5.tar.gz wix-1b6a4f9b4600079e829d5884f768563ed7dea5e5.tar.bz2 wix-1b6a4f9b4600079e829d5884f768563ed7dea5e5.zip |
Add CompareVersions engine method and expose verutil in Mba.Core.
Diffstat (limited to 'src/mbanative')
-rw-r--r-- | src/mbanative/mbanative.def | 6 | ||||
-rw-r--r-- | src/mbanative/precomp.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/mbanative/mbanative.def b/src/mbanative/mbanative.def index bd366ac7..28e923b6 100644 --- a/src/mbanative/mbanative.def +++ b/src/mbanative/mbanative.def | |||
@@ -4,3 +4,9 @@ | |||
4 | EXPORTS | 4 | EXPORTS |
5 | InitializeFromCreateArgs | 5 | InitializeFromCreateArgs |
6 | StoreBAInCreateResults | 6 | StoreBAInCreateResults |
7 | VerCompareParsedVersions | ||
8 | VerCompareStringVersions | ||
9 | VerCopyVersion | ||
10 | VerFreeVersion | ||
11 | VerParseVersion | ||
12 | VerVersionFromQword | ||
diff --git a/src/mbanative/precomp.h b/src/mbanative/precomp.h index d19b4695..2e2f3ff8 100644 --- a/src/mbanative/precomp.h +++ b/src/mbanative/precomp.h | |||
@@ -6,6 +6,7 @@ | |||
6 | #include <msiquery.h> | 6 | #include <msiquery.h> |
7 | 7 | ||
8 | #include <dutil.h> | 8 | #include <dutil.h> |
9 | #include <verutil.h> | ||
9 | 10 | ||
10 | #include <BootstrapperEngine.h> | 11 | #include <BootstrapperEngine.h> |
11 | #include <BootstrapperApplication.h> | 12 | #include <BootstrapperApplication.h> |