C++ Gurus,

I Would like to create (this i would do it manually) an INI file, and read the properties from this file

Ex: if system.ini is the file name.

It would contain the properties like

System_Name=mysystem
Visible=true

From a CPP program i should be able to read the file and get the property i need,

char *a = getvalue("System_Name");

How do i do this ?

Any help on this would be appreiciated

Thanks!