#undef (FMerge.exe) (Compact 2013)
3/26/2014
Variables can be redefined time by using the keyword #undef
followed by a #define
statement to reset the variable.
Syntax
#undef [variable_name]
Parameters
- variable_name
The variable can include any characters that are not white space.
Example Code
The following code example shows how to use the #undef
keyword.
#undef SISNIC_DISPLAY_NAME
Remarks
The #undef keyword can be used with undefined variables without causing an error.