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/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h | |
| parent | bafc4f682a798eb375d32c1f4777664aceb1e15f (diff) | |
| download | wix-e879388d96157db6a6e7b2ee79871ef7ebbd3015.tar.gz wix-e879388d96157db6a6e7b2ee79871ef7ebbd3015.tar.bz2 wix-e879388d96157db6a6e7b2ee79871ef7ebbd3015.zip | |
Add CompareVersions engine method.
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h')
| -rw-r--r-- | src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h index adcae1af..becb5be3 100644 --- a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h +++ b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h | |||
| @@ -27,8 +27,22 @@ enum BUNDLE_EXTENSION_ENGINE_MESSAGE | |||
| 27 | BUNDLE_EXTENSION_ENGINE_MESSAGE_SETVARIABLENUMERIC, | 27 | BUNDLE_EXTENSION_ENGINE_MESSAGE_SETVARIABLENUMERIC, |
| 28 | BUNDLE_EXTENSION_ENGINE_MESSAGE_SETVARIABLESTRING, | 28 | BUNDLE_EXTENSION_ENGINE_MESSAGE_SETVARIABLESTRING, |
| 29 | BUNDLE_EXTENSION_ENGINE_MESSAGE_SETVARIABLEVERSION, | 29 | BUNDLE_EXTENSION_ENGINE_MESSAGE_SETVARIABLEVERSION, |
| 30 | BUNDLE_EXTENSION_ENGINE_MESSAGE_COMPAREVERSIONS, | ||
| 30 | }; | 31 | }; |
| 31 | 32 | ||
| 33 | typedef struct _BUNDLE_EXTENSION_ENGINE_COMPAREVERSIONS_ARGS | ||
| 34 | { | ||
| 35 | DWORD cbSize; | ||
| 36 | LPCWSTR wzVersion1; | ||
| 37 | LPCWSTR wzVersion2; | ||
| 38 | } BUNDLE_EXTENSION_ENGINE_COMPAREVERSIONS_ARGS; | ||
| 39 | |||
| 40 | typedef struct _BUNDLE_EXTENSION_ENGINE_COMPAREVERSIONS_RESULTS | ||
| 41 | { | ||
| 42 | DWORD cbSize; | ||
| 43 | int nResult; | ||
| 44 | } BUNDLE_EXTENSION_ENGINE_COMPAREVERSIONS_RESULTS; | ||
| 45 | |||
| 32 | typedef struct _BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_ARGS | 46 | typedef struct _BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_ARGS |
| 33 | { | 47 | { |
| 34 | DWORD cbSize; | 48 | DWORD cbSize; |
