diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-10-18 14:10:20 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-10-24 20:07:21 -0500 |
commit | e879388d96157db6a6e7b2ee79871ef7ebbd3015 (patch) | |
tree | 4f3cbf260afa7806e077d75840ec97f276228262 /src/engine/burnextension.cpp | |
parent | bafc4f682a798eb375d32c1f4777664aceb1e15f (diff) | |
download | wix-e879388d96157db6a6e7b2ee79871ef7ebbd3015.tar.gz wix-e879388d96157db6a6e7b2ee79871ef7ebbd3015.tar.bz2 wix-e879388d96157db6a6e7b2ee79871ef7ebbd3015.zip |
Add CompareVersions engine method.
Diffstat (limited to 'src/engine/burnextension.cpp')
-rw-r--r-- | src/engine/burnextension.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/burnextension.cpp b/src/engine/burnextension.cpp index 59f84eca..157b082f 100644 --- a/src/engine/burnextension.cpp +++ b/src/engine/burnextension.cpp | |||
@@ -126,9 +126,10 @@ EXTERN_C HRESULT BurnExtensionLoad( | |||
126 | args.cbSize = sizeof(BUNDLE_EXTENSION_CREATE_ARGS); | 126 | args.cbSize = sizeof(BUNDLE_EXTENSION_CREATE_ARGS); |
127 | args.pfnBundleExtensionEngineProc = EngineForExtensionProc; | 127 | args.pfnBundleExtensionEngineProc = EngineForExtensionProc; |
128 | args.pvBundleExtensionEngineProcContext = pEngineContext; | 128 | args.pvBundleExtensionEngineProcContext = pEngineContext; |
129 | args.qwEngineAPIVersion = MAKEQWORDVERSION(0, 0, 0, 1); // TODO: need to decide whether to keep this, and if so when to update it. | 129 | args.qwEngineAPIVersion = MAKEQWORDVERSION(2020, 8, 31, 0); |
130 | args.wzBootstrapperWorkingFolder = pEngineContext->pEngineState->userExperience.sczTempDirectory; | 130 | args.wzBootstrapperWorkingFolder = pEngineContext->pEngineState->userExperience.sczTempDirectory; |
131 | args.wzBundleExtensionDataPath = sczBundleExtensionDataPath; | 131 | args.wzBundleExtensionDataPath = sczBundleExtensionDataPath; |
132 | args.wzExtensionId = pExtension->sczId; | ||
132 | 133 | ||
133 | results.cbSize = sizeof(BUNDLE_EXTENSION_CREATE_RESULTS); | 134 | results.cbSize = sizeof(BUNDLE_EXTENSION_CREATE_RESULTS); |
134 | 135 | ||