How do I import an ini configuration file so that it loads and returns a value of one key:
Example:
[version]
code=0.3
The program will load the ini file and I select the section (in case it is 'version'), select the key (in the case it is 'code') and the function / method returns with value 0.3
Method:
var strCode = GetStringFromFile("atualiza.ini", "version", "code");
File Structure (.ini):
[Seção]
Key=Value