diff options
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 | } |