diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-07-01 09:30:10 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-07-02 12:50:09 -0500 |
commit | 9bdf3730cd43e1af8a4ea9be6cf2fba77fcff2d2 (patch) | |
tree | ea2a05de5a8a1dfcb2af8e9e3805fe015729f66a /src/burn/engine/variable.h | |
parent | 8cbfc326cccf8d9b3b63cb6f752fc770f7dee0fc (diff) | |
download | wix-9bdf3730cd43e1af8a4ea9be6cf2fba77fcff2d2.tar.gz wix-9bdf3730cd43e1af8a4ea9be6cf2fba77fcff2d2.tar.bz2 wix-9bdf3730cd43e1af8a4ea9be6cf2fba77fcff2d2.zip |
Add bundle option for command line variables to always be uppercase.
Fixes #3777
Diffstat (limited to 'src/burn/engine/variable.h')
-rw-r--r-- | src/burn/engine/variable.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/burn/engine/variable.h b/src/burn/engine/variable.h index a38c9daa..9ed86ca7 100644 --- a/src/burn/engine/variable.h +++ b/src/burn/engine/variable.h | |||
@@ -25,6 +25,12 @@ typedef HRESULT (*PFN_INITIALIZEVARIABLE)( | |||
25 | 25 | ||
26 | // constants | 26 | // constants |
27 | 27 | ||
28 | enum BURN_VARIABLE_COMMAND_LINE_TYPE | ||
29 | { | ||
30 | BURN_VARIABLE_COMMAND_LINE_TYPE_UPPER_CASE, | ||
31 | BURN_VARIABLE_COMMAND_LINE_TYPE_CASE_SENSITIVE, | ||
32 | }; | ||
33 | |||
28 | enum BURN_VARIABLE_INTERNAL_TYPE | 34 | enum BURN_VARIABLE_INTERNAL_TYPE |
29 | { | 35 | { |
30 | BURN_VARIABLE_INTERNAL_TYPE_NORMAL, // the BA can set this variable. | 36 | BURN_VARIABLE_INTERNAL_TYPE_NORMAL, // the BA can set this variable. |
@@ -54,6 +60,7 @@ typedef struct _BURN_VARIABLES | |||
54 | DWORD dwMaxVariables; | 60 | DWORD dwMaxVariables; |
55 | DWORD cVariables; | 61 | DWORD cVariables; |
56 | BURN_VARIABLE* rgVariables; | 62 | BURN_VARIABLE* rgVariables; |
63 | BURN_VARIABLE_COMMAND_LINE_TYPE commandLineType; | ||
57 | } BURN_VARIABLES; | 64 | } BURN_VARIABLES; |
58 | 65 | ||
59 | 66 | ||