aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-04-28 16:43:23 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-04-29 14:05:34 -0500
commit7099dd38ab902e7fb92706314fa8710a34f165a5 (patch)
tree1f9fb9ee0ed792f683408406f20239428a16d8c3 /src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
parente78138558fe17d8a91929c87b2a6d0c9a482d78a (diff)
downloadwix-7099dd38ab902e7fb92706314fa8710a34f165a5.tar.gz
wix-7099dd38ab902e7fb92706314fa8710a34f165a5.tar.bz2
wix-7099dd38ab902e7fb92706314fa8710a34f165a5.zip
size_t-ify BootstrapperEngine.h and BundleExtensionEngine.h
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h')
-rw-r--r--src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
index 003ff635..b397ec16 100644
--- a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
+++ b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
@@ -54,7 +54,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_RESULTS
54 DWORD cbSize; 54 DWORD cbSize;
55 LPWSTR wzOut; 55 LPWSTR wzOut;
56 // Should be initialized to the size of wzOut. 56 // Should be initialized to the size of wzOut.
57 DWORD cchOut; 57 SIZE_T cchOut;
58} BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_RESULTS; 58} BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_RESULTS;
59 59
60typedef struct _BUNDLE_EXTENSION_ENGINE_EVALUATECONDITION_ARGS 60typedef struct _BUNDLE_EXTENSION_ENGINE_EVALUATECONDITION_ARGS
@@ -80,7 +80,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS
80 DWORD cbSize; 80 DWORD cbSize;
81 LPWSTR wzOut; 81 LPWSTR wzOut;
82 // Should be initialized to the size of wzOut. 82 // Should be initialized to the size of wzOut.
83 DWORD cchOut; 83 SIZE_T cchOut;
84} BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS; 84} BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS;
85 85
86typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_ARGS 86typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_ARGS
@@ -106,7 +106,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS
106 DWORD cbSize; 106 DWORD cbSize;
107 LPWSTR wzValue; 107 LPWSTR wzValue;
108 // Should be initialized to the size of wzValue. 108 // Should be initialized to the size of wzValue.
109 DWORD cchValue; 109 SIZE_T cchValue;
110} BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS; 110} BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS;
111 111
112typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_ARGS 112typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_ARGS
@@ -120,7 +120,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS
120 DWORD cbSize; 120 DWORD cbSize;
121 LPWSTR wzValue; 121 LPWSTR wzValue;
122 // Should be initialized to the size of wzValue. 122 // Should be initialized to the size of wzValue.
123 DWORD cchValue; 123 SIZE_T cchValue;
124} BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS; 124} BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS;
125 125
126typedef struct _BUNDLE_EXTENSION_ENGINE_LOG_ARGS 126typedef struct _BUNDLE_EXTENSION_ENGINE_LOG_ARGS