GetBuildOption
Previous  Top  Next


Function GetBuildOption(OptionName)

This function returns the value of a setting specified in the [BuildOptions] section of the Package.ini file used for Thinstalling.

Parameters:

OptionName  
[in] Name of the setting  

Returns:
This function returns a string value. If the requested OptionName does not exist an empty string "" is returned.  

Example:
 
Package.ini contains:  
[BuildOptions]  
DemoOption=DemoValue  
 
Value = GetBuildOption("DemoOption")  
' Value = "DemoValue"