How do I use INI files?
You have to use the GetPrivateProfileString and WritePrivateProfileString functions. The structure of an ini file involves a [section name] and lots of keynames under it. Each keyname has a stringvalue related to it. Example:
[This is a Section Name] keyname=string value
To see how the functions should be used, take a look at our demonstration project.