aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-10-17 19:12:21 -0500
committerSean Hall <r.sean.hall@gmail.com>2020-10-24 20:07:21 -0500
commit273c69f34311f4f4e5f6b5896e71d0788f12d96a (patch)
tree4cf8f42f3ecfa9341a41686b74aa5e48068ede87 /src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
parent3f8e35223216ebbe7f6683a5031a5a97bbc66d5a (diff)
downloadwix-273c69f34311f4f4e5f6b5896e71d0788f12d96a.tar.gz
wix-273c69f34311f4f4e5f6b5896e71d0788f12d96a.tar.bz2
wix-273c69f34311f4f4e5f6b5896e71d0788f12d96a.zip
WIXFEAT:6210 Change data type of versions to strings.
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h')
-rw-r--r--src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
index 61a55693..adcae1af 100644
--- a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
+++ b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
@@ -107,8 +107,10 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_ARGS
107typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS 107typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS
108{ 108{
109 DWORD cbSize; 109 DWORD cbSize;
110 // The contents of qwValue may be sensitive, if variable is hidden should keep value encrypted and SecureZeroMemory. 110 // The contents of wzValue may be sensitive, if variable is hidden should keep value encrypted and SecureZeroFree.
111 DWORD64 qwValue; 111 LPWSTR wzValue;
112 // Should be initialized to the size of wzValue.
113 DWORD cchValue;
112} BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS; 114} BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS;
113 115
114typedef struct _BUNDLE_EXTENSION_ENGINE_LOG_ARGS 116typedef struct _BUNDLE_EXTENSION_ENGINE_LOG_ARGS
@@ -152,7 +154,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_SETVARIABLEVERSION_ARGS
152{ 154{
153 DWORD cbSize; 155 DWORD cbSize;
154 LPCWSTR wzVariable; 156 LPCWSTR wzVariable;
155 DWORD64 qwValue; 157 LPCWSTR wzValue;
156} BUNDLE_EXTENSION_ENGINE_SETVARIABLEVERSION_ARGS; 158} BUNDLE_EXTENSION_ENGINE_SETVARIABLEVERSION_ARGS;
157 159
158typedef struct _BUNDLE_EXTENSION_ENGINE_SETVARIABLEVERSION_RESULTS 160typedef struct _BUNDLE_EXTENSION_ENGINE_SETVARIABLEVERSION_RESULTS