diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2022-09-09 16:03:29 -0500 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2022-09-09 21:14:27 -0500 |
| commit | a1307cd4e76a89598c53cb68309358a7012db553 (patch) | |
| tree | f79cf181b49f0b754afcd4ec25487bf2b284d45e /src/burn/engine/variable.h | |
| parent | f61479585d865372645cb18c982aa708dd975da3 (diff) | |
| download | wix-a1307cd4e76a89598c53cb68309358a7012db553.tar.gz wix-a1307cd4e76a89598c53cb68309358a7012db553.tar.bz2 wix-a1307cd4e76a89598c53cb68309358a7012db553.zip | |
Move `Bundle/@CommandLineVariables` into Bal.wixext.
Implements 6858
Diffstat (limited to 'src/burn/engine/variable.h')
| -rw-r--r-- | src/burn/engine/variable.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/burn/engine/variable.h b/src/burn/engine/variable.h index f8d3e1e2..309d7ab9 100644 --- a/src/burn/engine/variable.h +++ b/src/burn/engine/variable.h | |||
| @@ -26,12 +26,6 @@ typedef HRESULT (*PFN_INITIALIZEVARIABLE)( | |||
| 26 | 26 | ||
| 27 | // constants | 27 | // constants |
| 28 | 28 | ||
| 29 | enum BURN_VARIABLE_COMMAND_LINE_TYPE | ||
| 30 | { | ||
| 31 | BURN_VARIABLE_COMMAND_LINE_TYPE_UPPER_CASE, | ||
| 32 | BURN_VARIABLE_COMMAND_LINE_TYPE_CASE_SENSITIVE, | ||
| 33 | }; | ||
| 34 | |||
| 35 | enum BURN_VARIABLE_INTERNAL_TYPE | 29 | enum BURN_VARIABLE_INTERNAL_TYPE |
| 36 | { | 30 | { |
| 37 | BURN_VARIABLE_INTERNAL_TYPE_NORMAL, // the BA can set this variable. | 31 | BURN_VARIABLE_INTERNAL_TYPE_NORMAL, // the BA can set this variable. |
| @@ -61,7 +55,6 @@ typedef struct _BURN_VARIABLES | |||
| 61 | DWORD dwMaxVariables; | 55 | DWORD dwMaxVariables; |
| 62 | DWORD cVariables; | 56 | DWORD cVariables; |
| 63 | BURN_VARIABLE* rgVariables; | 57 | BURN_VARIABLE* rgVariables; |
| 64 | BURN_VARIABLE_COMMAND_LINE_TYPE commandLineType; | ||
| 65 | } BURN_VARIABLES; | 58 | } BURN_VARIABLES; |
| 66 | 59 | ||
| 67 | 60 | ||
| @@ -187,6 +180,10 @@ HRESULT VariableIsHidden( | |||
| 187 | __in_z LPCWSTR wzVariable, | 180 | __in_z LPCWSTR wzVariable, |
| 188 | __out BOOL* pfHidden | 181 | __out BOOL* pfHidden |
| 189 | ); | 182 | ); |
| 183 | BOOL VariableIsHiddenCommandLine( | ||
| 184 | __in BURN_VARIABLES* pVariables, | ||
| 185 | __in_z LPCWSTR wzVariable | ||
| 186 | ); | ||
| 190 | 187 | ||
| 191 | #if defined(__cplusplus) | 188 | #if defined(__cplusplus) |
| 192 | } | 189 | } |
