diff options
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/inc')
| -rw-r--r-- | src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h | 4 | ||||
| -rw-r--r-- | src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h b/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h index 13229c29..98a9d77d 100644 --- a/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h +++ b/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h | |||
| @@ -218,7 +218,6 @@ typedef struct _BAENGINE_FORMATSTRING_ARGS | |||
| 218 | typedef struct _BAENGINE_FORMATSTRING_RESULTS | 218 | typedef struct _BAENGINE_FORMATSTRING_RESULTS |
| 219 | { | 219 | { |
| 220 | DWORD cbSize; | 220 | DWORD cbSize; |
| 221 | // The contents of wzOut may be sensitive, should keep encrypted and SecureZeroFree. | ||
| 222 | LPWSTR wzOut; | 221 | LPWSTR wzOut; |
| 223 | // Should be initialized to the size of wzOut. | 222 | // Should be initialized to the size of wzOut. |
| 224 | DWORD cchOut; | 223 | DWORD cchOut; |
| @@ -244,7 +243,6 @@ typedef struct _BAENGINE_GETVARIABLENUMERIC_ARGS | |||
| 244 | typedef struct _BAENGINE_GETVARIABLENUMERIC_RESULTS | 243 | typedef struct _BAENGINE_GETVARIABLENUMERIC_RESULTS |
| 245 | { | 244 | { |
| 246 | DWORD cbSize; | 245 | DWORD cbSize; |
| 247 | // The contents of llValue may be sensitive, if variable is hidden should keep value encrypted and SecureZeroMemory. | ||
| 248 | LONGLONG llValue; | 246 | LONGLONG llValue; |
| 249 | } BAENGINE_GETVARIABLENUMERIC_RESULTS; | 247 | } BAENGINE_GETVARIABLENUMERIC_RESULTS; |
| 250 | 248 | ||
| @@ -257,7 +255,6 @@ typedef struct _BAENGINE_GETVARIABLESTRING_ARGS | |||
| 257 | typedef struct _BAENGINE_GETVARIABLESTRING_RESULTS | 255 | typedef struct _BAENGINE_GETVARIABLESTRING_RESULTS |
| 258 | { | 256 | { |
| 259 | DWORD cbSize; | 257 | DWORD cbSize; |
| 260 | // The contents of wzValue may be sensitive, if variable is hidden should keep value encrypted and SecureZeroFree. | ||
| 261 | LPWSTR wzValue; | 258 | LPWSTR wzValue; |
| 262 | // Should be initialized to the size of wzValue. | 259 | // Should be initialized to the size of wzValue. |
| 263 | DWORD cchValue; | 260 | DWORD cchValue; |
| @@ -272,7 +269,6 @@ typedef struct _BAENGINE_GETVARIABLEVERSION_ARGS | |||
| 272 | typedef struct _BAENGINE_GETVARIABLEVERSION_RESULTS | 269 | typedef struct _BAENGINE_GETVARIABLEVERSION_RESULTS |
| 273 | { | 270 | { |
| 274 | DWORD cbSize; | 271 | DWORD cbSize; |
| 275 | // The contents of wzValue may be sensitive, if variable is hidden should keep value encrypted and SecureZeroFree. | ||
| 276 | LPWSTR wzValue; | 272 | LPWSTR wzValue; |
| 277 | // Should be initialized to the size of wzValue. | 273 | // Should be initialized to the size of wzValue. |
| 278 | DWORD cchValue; | 274 | DWORD cchValue; |
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h index becb5be3..003ff635 100644 --- a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h +++ b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h | |||
| @@ -78,7 +78,6 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_FORMATSTRING_ARGS | |||
| 78 | typedef struct _BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS | 78 | typedef struct _BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS |
| 79 | { | 79 | { |
| 80 | DWORD cbSize; | 80 | DWORD cbSize; |
| 81 | // The contents of wzOut may be sensitive, should keep encrypted and SecureZeroFree. | ||
| 82 | LPWSTR wzOut; | 81 | LPWSTR wzOut; |
| 83 | // Should be initialized to the size of wzOut. | 82 | // Should be initialized to the size of wzOut. |
| 84 | DWORD cchOut; | 83 | DWORD cchOut; |
| @@ -93,7 +92,6 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_ARGS | |||
| 93 | typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_RESULTS | 92 | typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_RESULTS |
| 94 | { | 93 | { |
| 95 | DWORD cbSize; | 94 | DWORD cbSize; |
| 96 | // The contents of llValue may be sensitive, if variable is hidden should keep value encrypted and SecureZeroMemory. | ||
| 97 | LONGLONG llValue; | 95 | LONGLONG llValue; |
| 98 | } BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_RESULTS; | 96 | } BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_RESULTS; |
| 99 | 97 | ||
| @@ -106,7 +104,6 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_ARGS | |||
| 106 | typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS | 104 | typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS |
| 107 | { | 105 | { |
| 108 | DWORD cbSize; | 106 | DWORD cbSize; |
| 109 | // The contents of wzValue may be sensitive, if variable is hidden should keep value encrypted and SecureZeroFree. | ||
| 110 | LPWSTR wzValue; | 107 | LPWSTR wzValue; |
| 111 | // Should be initialized to the size of wzValue. | 108 | // Should be initialized to the size of wzValue. |
| 112 | DWORD cchValue; | 109 | DWORD cchValue; |
| @@ -121,7 +118,6 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_ARGS | |||
| 121 | typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS | 118 | typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS |
| 122 | { | 119 | { |
| 123 | DWORD cbSize; | 120 | DWORD cbSize; |
| 124 | // The contents of wzValue may be sensitive, if variable is hidden should keep value encrypted and SecureZeroFree. | ||
| 125 | LPWSTR wzValue; | 121 | LPWSTR wzValue; |
| 126 | // Should be initialized to the size of wzValue. | 122 | // Should be initialized to the size of wzValue. |
| 127 | DWORD cchValue; | 123 | DWORD cchValue; |
